@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #0A1628;
    --navy-light: #152238;
    --gold: #C5A572;
    --gold-light: #E8D5B5;
    --cream: #FAF7F0;
    --white: #FFFFFF;
    --gray: #6B7280;
    --text: #374151;
    color-scheme: light;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

.content-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 18px;
}

.ornament {
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.6;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 15px;
}

.gold-text {
    color: var(--gold);
}

.section-description {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}

/* Infinite Scroll Reviews with Manual Drag */
.reviews-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
    user-select: none;
}

.reviews-scroll-container:active {
    cursor: grabbing;
}

.reviews-scroll-container.dragging {
    cursor: grabbing;
}

.reviews-track {
    display: flex;
    gap: 32px;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.reviews-track.animating {
    transition: transform 0.5s ease-out;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 2px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    pointer-events: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.quote-mark {
    font-size: 3rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.author-name {
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.author-title {
    color: var(--gray);
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-container {
        padding: 0 24px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
        padding: 35px 28px;
    }
}

@media (max-width: 500px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 30px 24px;
    }
}
