/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #252531;
    --primary-light: #FDFCF6;
    --accent-gold: #D4AF37;
    --accent-silver: #C0C0C0;
    --text-muted: #8B8B8B;
    --border-light: #E5E5E5;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--primary-light);
    line-height: 1.4;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: left;
    align-items: left;
}

.logo img {
    height: 18px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-light);
    font-weight: 300;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    margin: 0 0 6rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 37, 49, 0.7);
    z-index: 1;
}

.hero-content, .cta-content, .footer-content {
    max-width: 660px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--primary-light);
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.italic {
    font-style: italic;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-silver);
    margin: 3rem auto 4rem;
    line-height: 1.6;
    max-width: 600px;
    width: 85vw;
    font-weight: 300;
    text-align: center;
}

.cta-button {
    color: var(--primary-light);
    background: rgba(253, 252, 246, 0.1);
    border: 2px solid var(--primary-light);
    text-transform: uppercase;
    border-radius: 4px;
    padding: 1rem 2.5rem;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: background 1s ease;
}

.cta-button:hover {
    background: rgba(253, 252, 246, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 4rem 0 8rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-light);
    position: relative;
}

/* Amenities Section */
.amenities {
    background: var(--primary-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.card-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.card-item:hover::before {
    transform: scaleY(1);
}

.card-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.card-item p {
    color: var(--accent-silver);
    font-size: 0.95rem;
}

.card-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.card-item {
    text-align: left;
    padding: 2rem 2rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease
}

/* Brands Section */
.brands {
    background: var(--primary-dark);
    color: var(--primary-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands .section-title {
    color: var(--primary-light);
}

.brands-stream {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}

.brands-stream::before,
.brands-stream::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.brands-stream::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-dark), transparent);
}

.brands-stream::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark), transparent);
}

.brands-row {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    white-space: nowrap;
    width: 200%;
    position: relative;
}

.brand-row-image {
    height: 50px;
    margin-left: 40px;
    object-fit: contain;
    opacity: 0.8;
}
/* Brand scrolling is now handled by JavaScript */

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #3A3A4A 100%);
    height: 80vh;
    text-align: center;
    justify-content: center;
    margin: 6rem 0 0;
}



/* Footer */
.footer {
    background: #3A3A4A 100%;
    color: var(--primary-light);
    padding: 3rem 0 2rem;
}


/* Brands Page Specific Styles */
.brands-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #3A3A4A 100%);
    color: var(--primary-light);
    margin: 0 0 6rem;
}

.brands-hero .hero-title {
    color: var(--primary-light);
}

section {
    min-height: 85vh;
    margin: 6rem 0;
}

.benefits {
    background: var(--primary-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Results & Success Stories Carousel */
.results-success {
    color: var(--primary-light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-item {
    flex-shrink: 0;
    max-width: 400px;
    width: 90vw;
    padding: 2rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Result Card Styling */
.result-card {
    text-align: left;
}

.result-card .metric-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    line-height: 1;
}

.metric-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.result-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Story Card Styling */
.story-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.story-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 400;
    color: var(--primary-light);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.author-title {
    font-size: 0.85rem;
    color: var(--accent-silver);
    font-weight: 300;
}


.metric-caption {
    font-size: 0.85rem !important;
    color: var(--accent-silver) !important;
    font-weight: 300;
}


/* Pause animation on hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* Brands We Serve Section */
.brands-we-serve {
    background: var(--primary-dark);
    color: var(--primary-light);
    margin-top: 12rem;
    padding: 0;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--accent-silver);
    border-bottom: 1px solid var(--accent-silver);
}

.brands-we-serve .section-title {
    text-align: left;
}

.brands-we-serve-content {
    display: flex;
    width: 100%;
    height: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
}

.brands-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    text-align: left;
}

.brands-text-content {
    max-width: 560px;
}

.brands-divider {
    width: 1px;
    background: var(--accent-silver);
    height: 100%;
}

.brands-images-column {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0;
    padding: 0;
    margin: 0;
}



.image-tile {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.image-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-dark);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-tile:hover .tile-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.image-tile:hover::after {
    opacity: 0;
}

.criteria-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--accent-silver);
    line-height: 1.6;
    text-align: left;
}


.mobile-only {
    display: none;
}



/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Small desktop/Large Tablet: Drop to 2 columns on smaller screens */
@media (max-width: 1200px) {
    .brands-images-column {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }
        
    /* Hide images 7, 8, 9 when in 2-column layout */
    .image-tile:nth-child(n+7) {
        display: none;
    }
}

/* Mobile/Tablet: General mobile styles */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    /* Brands We Serve - Mobile layout */
    .brands-we-serve {
        height: auto;
        min-height: 85vh;
        border: none;
    }
    
    .brands-we-serve-content {
        flex-direction: column;
        height: auto;
    }
    
    .brands-images-column {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr;
        height: 200px;
        gap: 1rem;
        padding: 1rem;
        order: 1;
    }
    
    .brands-images-column .image-tile {
        aspect-ratio: 1;
        height: auto;
    }
    
    /* Hide images 4-9 when in 1-column layout */
    .image-tile:nth-child(n+4) {
        display: none;
    }
    
    .brands-divider {
        display: none;
    }
    
    .brands-text-column {
        padding: 2rem;
        order: 3;
    }
    
    /* Double the size of brand images on mobile */
    .brands-stream .brand-row-image {
        height: 100px;
    }
}

/* Small Mobile: Extra small screens */
@media (max-width: 500px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-item {
        padding: 2rem 1.5rem;
    }

    .brands-row {
        margin-bottom: 0;
    }
    
    .brand-row-image {
        width: 250%;
        margin-bottom: none;
    }
}

