/* HOME PAGE (index.html) SPECIFIC STYLES */

/* Slider */
.slider {
	margin-top:20px;
    position: relative;
	left: 50%;
	transform: translateX(-50%);
    max-width: 1000px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
	height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: block;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Review Section */
#review-container {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stars {
    font-size: 1.5em; 
}

.review-text {
    font-size: 1.0em;
    text-align: center;
    padding: 0 10px;
    word-wrap: break-word;
}

/* Arrow Navigation */
.arrow {
    text-shadow: 0 0 2px #000;
    font-size: 50px;
    position: absolute;
    top: 50%;
	padding: 0 20px;
    transform: translateY(-50%);
    color: white;
    cursor: pointer;
    user-select: none;
    border-radius: 10px;
}

.arrow:hover {
	color: #F29FA4;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* Widgets */
.widgets {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.widget {
    width: 30%;
    margin-bottom: 20px;
}

.widget img {
    width: 100%;
    border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 990px) {
    .widget {
        width: 45%;
    }
    .arrow {
        padding: 5px;
    }
}

@media (max-width: 635px) {
    .widget {
        width: 100%;
    }
    .arrow {
        padding: 5px;
    }
}

