/* Import Bebas Neue font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

body {
    font-family: 'Bebas Neue', 'Arial Black', Arial, sans-serif;
    background: #000;
    overflow-x: hidden;
    margin: 0; /* Make sure this is here */
    padding: 0; /* Make sure this is here */
}

/* Top Bar - FIXED */
.top-bar {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    height: 60px;
}

/* Order Button (Desktop & Mobile) */
.order-button {
    background: #000;
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
}

.order-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Hamburger Icon (Mobile Only) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
}

.hamburger span {
    width: 35px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}


/* Main Content Area */
.main-container {
    display: flex;
    min-height: calc(100vh - 80px); /* Only subtract header, not footer */
    background: #000;
    margin-top: 80px;
    overflow-y: auto;
}

/* Video/Body Section */
.video-section {
    flex: 1;
    position: relative;
    overflow: visible; /* Changed from hidden */
    background: #000;
    min-height: 800px; /* Force minimum height */
}

.video-section video {
    width: 100%;
    min-height: 800px; /* Force video to be taller */
    object-fit: cover;
}


/* Sidebar Navigation (Desktop) */
.sidebar {
    width: 250px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 40px 20px 120px 20px;
    overflow-y: auto;
    position: fixed; /* Fixed position */
    right: 0; /* Pin to right side */
    top: 80px; /* Below header */
    bottom: 0; /* Stretch to bottom */
    height: auto; /* Let it fill space */
}

.nav-button {
    width: 200px;
    padding: 15px 20px;
    background: #FF1245;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s;
    display: block;
    letter-spacing: 1.5px;
}

.nav-button:hover {
    background: #d10f38;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 18, 69, 0.4);
}

/* Footer - NOT FIXED, scrolls with content */
.footer {
    background: #F6DC68;
    padding: 25px 30px 0; /* Remove bottom padding */
    position: relative;
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Base footer link style */
.footer-link {
    color: #FF1245;
    text-decoration: none;
    font-size: 32px;
    font-weight: 400;
    font-family: 'Bebas Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #d10f38;
}

.footer-link img {
    height: 29px;
    width: 29px;
    object-fit: contain;
    margin-bottom: 4px;
}

/* Email link - black, smaller, underline on hover */
.footer-link.email {
    color: #000;
    font-size: 21px;
    text-transform: none;
}

.footer-link.email:hover {
    color: #333;
    text-decoration: underline;
}

.footer-link img {
    height: 29px;
    width: 29px;
    object-fit: contain;
    margin-bottom: 4px;
}

/* Keep Instagram and Careers in Bebas Neue */
.footer-link.bebas {
    font-size: 32px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-link.bebas:hover {
    text-decoration: none;
}

/* Email Signup Form */
.footer-signup {
    flex-shrink: 0;
}

.signup-form {
    display: flex;
    gap: 10px;
}

.signup-input {
    padding: 12px 20px;
    border: 2px solid #FF1245;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    width: 280px;
    outline: none;
}

.signup-input::placeholder {
    color: #999;
    text-transform: uppercase;
}

.signup-input:focus {
    border-color: #d10f38;
}

.signup-button {
    padding: 8px 20px; /* Reduced from 12px 30px */
    background: #FF1245;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 22px; /* Increased from 16px */
    font-weight: 900;
    font-family: 'Bebas Neue', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.signup-button:hover {
    background: #d10f38;
    transform: translateY(-2px);
}

/* Copyright Bar - Black background, yellow text */
.footer-copyright {
    background: #000;
    color: #F6DC68;
    font-size: 12px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    padding: 15px 0;
    text-align: center;
    margin: 0 -30px; /* Extend to full width */
}


/* Store Selector (Desktop) */
.store-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s;
}

.store-selector:hover {
    background: #e0e0e0;
}

.geo-pin {
    font-size: 18px;
    color: #FF1245;
}

.store-name {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 18px;
    color: #000;
    letter-spacing: 1px;
}

.desktop-only {
    display: flex;
}

.mobile-store-selector {
    display: none;
}

/* Logo clickable */
.top-bar a {
    text-decoration: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    /* Hide desktop store selector */
    .desktop-only {
        display: none !important;
    }
    
    /* Show mobile store selector in sidebar */
    .mobile-store-selector {
        display: flex !important;
        justify-content: center;
        align-items: center;
        background: #333;
    }
}



/* MOBILE STYLES */
@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }
    
    /* Top bar adjustments */
    .top-bar {
        padding: 0 20px;
        height: 70px;
    }


    .top-bar > div {
        gap: 1px !important; /* Override inline style */
    }

    .logo {
        height: 50px;
    }
    
    .order-button {
        font-size: 22px; /* 85% of 28px */
        padding: 8px 16px; /* 85% of 14px/28px */
    }
    
    /* Main container - full width on mobile */
    .main-container {
        flex-direction: column;
        height: calc(100vh - 70px); /* Change to height, not min-height */
        margin-top: 70px;
    }

    
    /* Video takes full width */
    .video-section {
        width: 100%;
        height: 100%; /* Change back to height instead of min-height */
    }
    
    .video-section video {
        height: 100%; /* Change back to height instead of min-height */
    }


    
    /* Sidebar becomes overlay menu */
    .sidebar {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px); /* Full height minus header only */
        background: #000;
        z-index: 999;
        transition: right 0.3s ease;
        padding: 30px 20px;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        gap: 15px;
        overflow-y: auto; /* Allow scrolling if buttons overflow */
    }

    
    /* Show sidebar when menu is open */
    .sidebar.active {
        right: 0;
        display: flex;
    }
    
    /* Mobile nav buttons */
    .nav-button {
        width: 100%;
        font-size: 28px;
        padding: 14px 15px;
        display: block;
    }
    
/* Footer adjustments */
    .footer {
        padding: 20px 20px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        gap: 3px;
    }
    
    .footer-link {
        font-size: 16px; /* Smaller on mobile */
    }
    
    .footer-link.bebas {
        font-size: 28px;
    }
    
    /* Email signup stacked on mobile */
    .footer-signup {
        width: 100%;
    }
    
    .signup-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .signup-input {
        width: 100%;
        max-width: none;
        font-size: 16px;
        padding: 14px 20px;
        box-sizing: border-box;
    }

    .signup-button {
        width: auto;
        align-self: flex-start; /* Left align */
        font-size: 22px;
        padding: 10px 40px;
    }
    
    .footer-copyright {
        font-size: 11px;
        margin: 0 -20px; /* Extend to full width on mobile */
    }
}

/* Very small phones */
@media (max-width: 400px) {
    .logo {
        height: 45px;
    }
    
    .order-button {
        font-size: 22px;
        padding: 8px 16px;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
    }
    
    .nav-button {
        font-size: 28px;
        padding: 12px 10px;
    }
    
    .footer-link {
        font-size: 32px;
    }
    
    .footer-link img {
        height: 22px;
        width: 22px;
    }
}