/* ================================
   Reviews Page — reviews.css
   Isla Rivière Guest Reviews & Vlogger Features
================================ */

/* ---- Reviews Hero Section ---- */
.reviews-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(
        135deg,
        rgba(44, 85, 48, 0.92) 0%,
        rgba(30, 58, 32, 0.95) 50%,
        rgba(20, 42, 22, 0.97) 100%
    ), url('images/misc/glamperspov.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.reviews-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(249, 120, 3, 0.08) 0%,
        transparent 50%
    ), radial-gradient(
        ellipse at 70% 80%,
        rgba(249, 120, 3, 0.05) 0%,
        transparent 40%
    );
    animation: heroGlow 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 3%) scale(1.05); }
}

.reviews-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.reviews-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.reviews-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.reviews-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.reviews-hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}



/* ---- Section Tag ---- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f97803;
    margin-bottom: 1rem;
    padding: 6px 16px;
    border: 1px solid rgba(249, 120, 3, 0.3);
    border-radius: 50px;
    background: rgba(249, 120, 3, 0.05);
}

.section-tag i {
    font-size: 0.9rem;
}

/* ---- Feature Video Card (enhanced wrapper) ---- */
.feature-video-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(44, 85, 48, 0.18);
}

.feature-video-card .feature-video {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.vlogger-info {
    padding: 1.25rem 1.5rem 1.5rem;
    background: white;
}

.vlogger-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #2c5530;
    font-size: 1rem;
    margin-bottom: 8px;
}

.vlogger-name i {
    color: #1877F2;
    font-size: 1.1rem;
}

.vlogger-caption {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* ---- Isla Reels Section ---- */
.isla-reels {
    padding: 100px 0;
    background: #2c5530;
    position: relative;
    overflow: hidden;
}

.isla-reels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #f8f4e9, transparent);
    pointer-events: none;
    z-index: 1;
}

.isla-reels::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #f8f4e9, transparent);
    pointer-events: none;
    z-index: 1;
}

.isla-reels .section-header {
    position: relative;
    z-index: 2;
}

.isla-reels .section-header h2 {
    color: white;
}

.isla-reels .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.isla-reels .section-tag {
    color: #f97803;
    border-color: rgba(249, 120, 3, 0.4);
    background: rgba(249, 120, 3, 0.1);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
    position: relative;
    z-index: 2;
}

.isla-reels .feature-video-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.isla-reels .feature-video-card:hover {
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(249, 120, 3, 0.2);
}

.isla-reels .vlogger-info {
    background: transparent;
}

.isla-reels .vlogger-name {
    color: white;
}

.isla-reels .vlogger-name i {
    color: #f97803;
}

.isla-reels .vlogger-caption {
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Guest Reviews Section ---- */
.guest-reviews {
    padding: 100px 0;
    background: #f8f4e9;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-card::after {
    content: '\201D';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: rgba(249, 120, 3, 0.06);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(44, 85, 48, 0.12);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #f97803;
    font-size: 0.95rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    order: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
    order: -1;
}

.review-avatar i {
    font-size: 2.4rem;
    color: #2c5530;
    opacity: 0.6;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    font-weight: 700;
    color: #2c5530;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.3px;
}

/* ---- Reviews CTA Section ---- */
.reviews-cta {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #2c5530 0%,
        #1e3a20 50%,
        #2c5530 100%
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(249, 120, 3, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-book-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 16px 36px !important;
    font-size: 1.1rem !important;
    border-radius: 50px !important;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ================================
   Responsive Design
================================ */

@media (max-width: 768px) {
    .reviews-hero {
        min-height: 50vh;
        padding: 100px 20px 50px;
    }

    .reviews-hero-content h1 {
        font-size: 2.8rem;
    }


    /* Vlogger grid: horizontal scroll on mobile */
    .testimonials-grid-vlog {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 8px 20px 24px;
        margin: 0 -20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-grid-vlog::-webkit-scrollbar {
        display: none;
    }

    .testimonials-grid-vlog .feature-video-card {
        flex: 0 0 85%;
        max-width: 340px;
        scroll-snap-align: center;
    }

    /* Isla Reels: horizontal scroll on mobile */
    .reels-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 8px 20px 24px;
        margin: 0 -20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reels-grid::-webkit-scrollbar {
        display: none;
    }

    .reels-grid .feature-video-card {
        flex: 0 0 85%;
        max-width: 340px;
        scroll-snap-align: center;
    }

    .isla-reels {
        padding: 80px 0;
    }

    .isla-reels::before,
    .isla-reels::after {
        height: 60px;
    }

    /* Reviews grid: single column on mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .review-card::after {
        font-size: 4rem;
    }

    .guest-reviews {
        padding: 60px 0;
    }

    .testimonials {
        padding: 60px 0;
    }

    /* CTA */
    .reviews-cta {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-book-btn,
    .btn-outline-light {
        width: 85%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reviews-hero-content h1 {
        font-size: 2.3rem;
    }

    .reviews-hero-subtitle {
        font-size: 1rem;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .vlogger-info {
        padding: 1rem 1.25rem 1.25rem;
    }

    .vlogger-name {
        font-size: 0.9rem;
    }

    .vlogger-caption {
        font-size: 0.85rem;
    }
}

/* ---- Scroll reveal animation placeholders ---- */
.review-card,
.feature-video-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.review-card.visible,
.feature-video-card.visible {
    opacity: 1;
    transform: translateY(0);
}
