/* style.css */
:root {
    --bg-dark: #050505;
    --nav-bg: #09090b;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #eab308; /* Premium Gold/Yellow */
    --accent-dark: #ca8a04;
    --card-bg: #121214;
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Outfit', sans-serif; 
}

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    overflow-x: hidden; 
}

/* Navbar - Transparent */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px; /* Increased from 70px */
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 1000;
    transition: var(--transition);
}

.logo img { 
    height: 60px; /* Optimal size after transparent crop */
    width: auto;
    object-fit: contain; 
}

.nav-center { 
    display: flex; 
    gap: 2.5rem; 
}

.nav-center a {
    color: var(--text-main); /* Changed from text-muted to text-main (white) */
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-center a:hover { 
    color: var(--accent); /* Hover effect to Gold/Yellow */
}

.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 1.5rem; 
}

.sign-in {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.get-started {
    background: #ffffff;
    color: #000000;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.get-started:hover { 
    background: #e4e4e7; 
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
}

.hero-video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.video-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 5%;
    text-align: center;
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
}

.subtitle { 
    color: var(--accent); 
    font-size: 1.2rem; 
    font-weight: 600; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    margin-bottom: 1rem; 
}

.title { 
    font-size: clamp(3rem, 8vw, 7rem); 
    font-weight: 900; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    letter-spacing: -2px; 
}

.description { 
    font-size: 1.15rem; 
    max-width: 600px; 
    color: var(--text-muted); 
    line-height: 1.6; 
    margin-bottom: 2.5rem; 
}

.btn-hero-primary {
    background: var(--accent); 
    color: #000; 
    padding: 1rem 2.5rem; 
    border-radius: 30px; 
    font-weight: 700; 
    border: none; 
    cursor: pointer; 
    font-size: 1.1rem; 
    transition: var(--transition);
}

.btn-hero-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2); 
    background: var(--accent-dark); 
}

/* Stats Bar */
.stats-bar {
    width: 100%;
    background: var(--nav-bg); 
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; 
    justify-content: space-around; 
    padding: 3rem 5%; 
    z-index: 10;
}

.stat-item { text-align: center; }

.stat-item h3 { 
    font-size: 2.5rem; 
    font-weight: 800; 
    color: var(--accent); 
    line-height: 1; 
    margin-bottom: 0.3rem; 
}

.stat-item p { 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* Sections Common */
.section { padding: 8rem 5%; position: relative; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }

.section-tag { 
    color: var(--accent); 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 0.5rem; 
}

.section-title { 
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 2rem; 
}

/* Two Column Layout */
.two-col { display: flex; align-items: center; gap: 4rem; }
.two-col.reverse { flex-direction: row-reverse; }
.col-left, .col-right { flex: 1; }

.col-left p, .col-right p { 
    color: var(--text-muted); 
    font-size: 1.1rem; 
    line-height: 1.7; 
    margin-bottom: 1.5rem; 
}

.highlight-text { 
    font-size: 1.3rem !important; 
    color: var(--text-main) !important; 
    font-weight: 500; 
    border-left: 3px solid var(--accent); 
    padding-left: 1.5rem; 
    margin-top: 2rem; 
}

.highlight-text.centered { 
    border-left: none; 
    text-align: center; 
    font-size: 1.5rem !important; 
    margin-top: 3rem; 
    padding: 0; 
}

/* Content Images */
.content-img { 
    width: 100%; 
    height: 450px; 
    border-radius: 30px; 
    object-fit: cover; 
    border: 1px solid rgba(255,255,255,0.05); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Flavors Section Loop */
.flavors-section { 
    background: #070707; 
    overflow: hidden; 
    padding: 100px 0;
}

.flavors-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.flavors-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.flavor-card { 
    background: var(--card-bg); 
    width: 320px; /* Fixed width for loop items */
    height: 450px; 
    border-radius: 20px; 
    position: relative; 
    overflow: hidden; 
    cursor: pointer; 
    transition: transform 0.5s; 
    border: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.flavor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.flavor-card:hover .flavor-img {
    transform: scale(1.08);
}

.flavor-card::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.9) 100%); 
    z-index: 1; 
}

.flavor-card:hover { transform: translateY(-15px); }

.flavor-content { position: absolute; bottom: 30px; left: 30px; z-index: 2; }
.flavor-content h3 { font-size: 2rem; font-weight: 800; margin-bottom: 0.2rem; transition: transform 0.3s; }
.flavor-card:hover .flavor-content h3 { transform: translateY(-5px); }
.flavor-content p { font-size: 1rem; opacity: 0.8; }

/* Craft Section */
.craft-content { max-width: 800px; margin: 0 auto; color: var(--text-muted); font-size: 1.15rem; line-height: 1.7; }
.ingredients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 3rem 0; }
.ingredient-item { background: var(--card-bg); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); font-weight: 500; color: var(--text-main); }

/* Team Section */
.team-section { 
    background: #020202; /* Slightly darker to make cards pop */
    padding: 100px 0;
}

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

.team-card { 
    background: #0f0f12; /* Distinct card background */
    padding: 3rem 2.5rem; 
    border-radius: 24px; 
    border: 1px solid rgba(255,255,255,0.08); 
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); 
    position: relative;
    overflow: hidden;
}

.team-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(234, 179, 8, 0.1);
}

.team-avatar { 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
    background: var(--accent); 
    color: #000; 
    font-size: 1.8rem; 
    font-weight: 800; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 2rem; 
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
}

.av-2 { background: #ff4d94; color: #fff; }
.av-3 { background: #4ade80; color: #000; }

.team-info h3 { 
    font-size: 1.8rem; 
    margin-bottom: 0.5rem; 
    color: #fff;
    font-weight: 700;
}

.team-info .role { 
    display: inline-block; 
    color: var(--accent); 
    font-size: 1rem; 
    margin-bottom: 1.5rem; 
    font-weight: 600; 
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-info p { 
    color: #e4e4e7; /* Brighter muted text */
    font-size: 1.05rem; 
    line-height: 1.7; 
}

/* Footer */
.footer { background: var(--nav-bg); padding: 5rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-logo { height: 40px; margin-bottom: 1.5rem; object-fit: contain; }
.brand-col p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); color: #666; font-size: 0.9rem; }

/* Scroll Animations handled by GSAP */

/* ========== MOBILE HAMBURGER MENU ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== RESPONSIVE: TABLET (max-width: 1024px) ========== */
@media (max-width: 1024px) {
    .section { padding: 5rem 5%; }
    .section-title { font-size: 2.5rem; }
    .two-col { gap: 2.5rem; }
    .content-img { height: 350px; }
    .team-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ========== RESPONSIVE: MOBILE (max-width: 768px) ========== */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        height: 70px;
        padding: 0 5%;
    }

    .menu-toggle { display: flex; }

    .nav-center {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        border-left: 1px solid rgba(255,255,255,0.05);
    }

    .nav-center.open {
        right: 0;
    }

    .nav-center a {
        font-size: 1.3rem;
        font-weight: 600;
    }

    .nav-right {
        display: none;
    }

    /* Hero */
    .hero {
        height: 100vh;
        min-height: -webkit-fill-available; /* Fixed for mobile browsers */
    }

    .video-container {
        position: absolute;
        width: 100%;
        height: 100%;
        background: #000;
        top: 0;
        left: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content { 
        padding: 2rem 8%; 
        position: relative;
    }

    .title { font-size: clamp(2.2rem, 10vw, 4rem); letter-spacing: -1px; }
    .subtitle { font-size: 0.9rem; letter-spacing: 2px; }
    .description { font-size: 1rem; margin-bottom: 2rem; }
    .btn-hero-primary { padding: 0.85rem 2rem; font-size: 1rem; }

    /* Stats */
    .stats-bar {
        flex-wrap: wrap;
        padding: 2rem 5%;
        gap: 1rem;
    }

    .stat-item {
        flex: 1 1 45%;
    }

    .stat-item h3 { font-size: 2rem; }
    .stat-item p { font-size: 0.75rem; }

    /* Sections */
    .section { padding: 4rem 5%; }
    .section-title { font-size: 2rem; margin-bottom: 1.5rem; }

    /* Two Column → Stacked */
    .two-col, .two-col.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .content-img {
        height: 280px;
        border-radius: 20px;
    }

    .highlight-text {
        font-size: 1.1rem !important;
        padding-left: 1rem;
    }

    .highlight-text.centered {
        font-size: 1.2rem !important;
    }

    /* Flavors */
    .flavors-section { padding: 60px 0; }

    .flavor-card {
        width: 260px;
        height: 380px;
    }

    .flavor-content { bottom: 20px; left: 20px; }
    .flavor-content h3 { font-size: 1.5rem; }
    .flavor-card:hover { transform: translateY(-8px); }

    /* Craft Section */
    .craft-content { font-size: 1rem; }
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .ingredient-item { padding: 1.2rem; font-size: 0.95rem; }

    /* Team Section */
    .team-section { padding: 60px 5%; }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .team-card { padding: 2rem 1.5rem; }
    .team-avatar { width: 60px; height: 60px; font-size: 1.4rem; }
    .team-info h3 { font-size: 1.4rem; }
    .team-info .role { font-size: 0.85rem; }
    .team-info p { font-size: 0.95rem; }

    /* Footer */
    .footer { padding: 3rem 5% 1.5rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .brand-col p { max-width: 100%; }
}

/* ========== RESPONSIVE: SMALL MOBILE (max-width: 480px) ========== */
@media (max-width: 480px) {
    .navbar { padding: 0 4%; }
    .title { font-size: clamp(1.8rem, 10vw, 3rem); }
    .subtitle { font-size: 0.8rem; }
    .description { font-size: 0.9rem; }

    .stat-item { flex: 1 1 100%; }
    .stat-item h3 { font-size: 1.8rem; }

    .section { padding: 3rem 5%; }
    .section-title { font-size: 1.7rem; }

    .content-img { height: 220px; border-radius: 16px; }

    .flavor-card {
        width: 220px;
        height: 320px;
    }

    .flavor-content h3 { font-size: 1.3rem; }

    .team-card { padding: 1.5rem; border-radius: 16px; }
    .team-avatar { width: 50px; height: 50px; font-size: 1.2rem; margin-bottom: 1.2rem; }
    .team-info h3 { font-size: 1.2rem; }

    .footer-bottom { font-size: 0.8rem; }
}
