/* REVIEWS PAGE ONLY */
/* Main Content */
.contentReviews {
    background: var(--lightFade);
    color: var(--black);
    width: 100vw;
    padding: 2vw; /* Added padding for better spacing */
    margin-top: var(--navbar-height, 15vh); /* Use dynamic navbar height */
}

.contentReviews h1 {
    font-size: var(--textHeader);
    margin-bottom: 2vw;
    text-align: center;
}

/* Reviews Section */
.sectionReviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: var(--lineHeight);
    margin: 4vw 0 1vw 0;
}

/* Individual Review Card */
.sectionReviewsContent {
    position: relative;
    background: var(--bg-image) center / cover no-repeat, var(--black);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    width: 43vw;
    margin: 0 1vw 2vw;
    padding: 2vw 1vw;
    color: var(--black);
    font-size: var(--textContentSmall);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Card Hover Effects */
.sectionReviewsContent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(69, 65, 65, 0.9);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.sectionReviewsContent:hover::before {
    background-color: rgba(255, 255, 255, 0.1);
}

.sectionReviewsContent:hover {
    transform: scale(1.05);
}

/* Card Text */
.sectionReviewsContent h2, 
.sectionReviewsContent h3, 
.sectionReviewsContentText {
    color: var(--white);
    position: relative;
    z-index: 2;
    text-align: center;
}

.sectionReviewsContent h2 {
    font-size: var(--textHeader);
    margin: 20px;
}

.sectionReviewsContentText {
    font-size: var(--textContentSmall);
    font-weight: 400;
    text-shadow: 1px 1px 12px rgba(0, 0, 0, 1);
    padding-left: 0.5vw;
    padding-right: 0.5vw;
}

/* Star Ratings */
.star-rating .star {
    margin-right: 0.4vw;
    color: #f5b301;
    text-shadow: 1px 1px 12px rgba(0, 0, 0, 1);
    font-size: var(--textHeader);
}
