/* ========================================
   MOBILE-FIRST • FIXED ELEMENTS • BRAND COLORS
   ======================================== */

/* Custom Brand Colors */
:root {
    --pickup-green: #08ffb6;
    --delivery-magenta: #f94bd6;
    --catering-lime: #d6f94b;
    --audio-teal: #12664f;
    --image-blue: #307473;
    --dark-text: #252525;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1c1c1c;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--pickup-green);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION - CENTERED VERTICALLY & HORIZONTALLY
   ======================================== */
.hero-header {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    text-align: center;
    padding: 20px;
}

.hero-logo {
    max-width: 200px;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content .lead {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* ========================================
   FIXED NAVIGATION - ALWAYS ON TOP
   ======================================== */
#main-nav {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#main-nav .navbar-brand {
    font-weight: 700;
    color: #333 !important;
    font-size: 1.2rem;
}

#main-nav .navbar-brand img {
    margin-right: 0.5rem;
}

#main-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

#main-nav .nav-link:hover {
    color: var(--delivery-magenta) !important;
    transform: translateY(-2px);
}

#main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pickup-green);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

#main-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

/* Spacer for fixed nav */
body {
    padding-top: 80px;
}

/* ========================================
   CUSTOM ORDERING BUTTONS - EXACT SPECIFICATIONS
   ======================================== */
.btn-pickup {
    background: var(--pickup-green);
    color: var(--dark-text);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-pickup:hover {
    background: #00e6a3;
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 255, 182, 0.3);
    text-decoration: none;
}

.btn-delivery {
    background: var(--delivery-magenta);
    color: var(--dark-text);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-delivery:hover {
    background: #e633c2;
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 75, 214, 0.3);
    text-decoration: none;
}

.btn-catering {
    background: var(--catering-lime);
    color: var(--dark-text);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-catering:hover {
    background: #c2e63a;
    color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 249, 75, 0.3);
    text-decoration: none;
}

/* Small buttons */
.btn-pickup.btn-sm, .btn-delivery.btn-sm, .btn-catering.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 36px;
}

/* ========================================
   MINI ICON BUTTONS - AUDIO & IMAGE
   ======================================== */
.btn-audio {
    background: var(--audio-teal);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-audio:hover {
    background: #0d4d3a;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(18, 102, 79, 0.3);
}

.btn-image {
    background: var(--image-blue);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-left: 0.25rem;
}

.btn-image:hover {
    background: #255b5a;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(48, 116, 115, 0.3);
}

/* ========================================
   FIXED ACCESSIBILITY BUTTON
   ======================================== */
.btn-accessibility {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 1050 !important;
    background: var(--image-blue) !important;
    color: var(--white) !important;
    border: none !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    font-size: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-accessibility:hover {
    background: var(--delivery-magenta) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4) !important;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-thumb {
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    height: 200px;
    border: 3px solid transparent;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: var(--pickup-green);
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-category-header {
    background: var(--image-blue) !important;
    color: var(--white) !important;
}

.menu-category-header .btn-link {
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 1.1rem;
}

.menu-category-header .btn-link:hover {
    color: var(--pickup-green) !important;
    text-decoration: none !important;
}

.menu-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--pickup-green);
}

.menu-item-hover {
    transition: background 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-item-hover:hover {
    background: rgba(248, 249, 250, 0.5) !important;
    border-left-color: var(--pickup-green);
}

.text-price {
    color: var(--delivery-magenta);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--delivery-magenta);
    text-decoration: underline;
}

/* ========================================
   MODALS
   ======================================== */
#imageModal .modal-content {
    border: none;
    border-radius: 12px;
}

#modal-full-image {
    max-height: 80vh;
    object-fit: contain;
}

/* ========================================
   FOOTER
   ======================================== */
footer .social-links a {
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    color: var(--pickup-green) !important;
    transform: translateY(-2px);
}

/* ========================================
   ACCESSIBILITY MODES
   ======================================== */
.high-contrast {
    background: #000 !important;
    color: #fff !important;
}

.high-contrast * {
    color: #fff !important;
    background: #000 !important;
}

.high-contrast .btn {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

.large-text {
    font-size: 1.25rem !important;
}

.dyslexic-font {
    font-family: 'OpenDyslexic', sans-serif !important;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-content {
        padding: 15px;
    }
    
    .hero-logo {
        max-width: 150px;
        margin-bottom: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-height: 32px;
    }
    
    .btn-audio, .btn-image {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .menu-img {
        width: 60px;
        height: 60px;
    }
    
    #accessibility-toggle {
        bottom: 15px !important;
        left: 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .d-flex.flex-wrap.gap-2 > .btn {
        flex: 1 1 100%;
        margin-bottom: 0.5rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.gallery-thumb-yellow {
    border: 2px solid #FFFF00 !important;  /* Bright yellow */
    padding: 2px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-thumb-yellow:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 0, 0.4);
    cursor: pointer;
}