/* ==========================================================================
   Ban Berry Premium Landing Page Stylesheet
   Theme: Deep Dark Charcoal & Vibrant Mustard Yellow Accent
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* --- Custom Variables & Design Tokens --- */
:root {
    /* Colors */
    --bg-primary: #0A0A0A;
    --bg-secondary: #121212;
    --bg-tertiary: #1A1A1A;
    --accent: #F2C41D;
    --accent-rgb: 242, 196, 29;
    --accent-glow: rgba(242, 196, 29, 0.35);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --text-muted: #666666;
    --whatsapp-color: #25D366;
    --whatsapp-glow: rgba(37, 211, 102, 0.4);

    /* Fonts (Dynamic swap based on dir/lang in html) */
    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Poppins', sans-serif;
    --font-family: var(--font-ar);

    /* Layout & Spacing */
    --max-width: 1200px;
    --nav-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    /* Shadows & Borders */
    --glass-bg: rgba(18, 18, 18, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.06);
    --accent-border: 1px solid rgba(242, 196, 29, 0.15);
    --accent-border-hover: 1px solid rgba(242, 196, 29, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    
    /* Animation Speeds */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* Adjust variables for English (LTR) mode */
html[lang="en"] {
    --font-family: var(--font-en);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 1px solid rgba(242, 196, 29, 0.1);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* --- Common Layout & Containers --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Button Styling --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent);
    color: #000000;
    box-shadow: 0 4px 15px rgba(242, 196, 29, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(242, 196, 29, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(242, 196, 29, 0.15);
    transform: translateY(-2px);
}

/* --- Sticky Glassmorphic Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(242, 196, 29, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(242, 196, 29, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(242, 196, 29, 0.3);
}

.footer-logo-img {
    height: 54px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FFFFFF 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
    box-shadow: 0 0 8px var(--accent);
}

/* Switch underline start side based on direction */
html[dir="rtl"] .nav-link::after {
    left: auto;
    right: 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Switcher */
.lang-switcher {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-switcher:hover {
    background: rgba(242, 196, 29, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 10px rgba(242, 196, 29, 0.2);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 50px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(20, 20, 20, 0.6) 0%, rgba(10, 10, 10, 0.95) 80%);
    position: relative;
    overflow: hidden;
}

/* Background Gradients/Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242, 196, 29, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content: strictly static sizing to prevent layout shifts */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-tagline::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-headline span {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(242, 196, 29, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Right Content: Slider container */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow), 0 0 30px rgba(0, 0, 0, 0.8);
    border: var(--accent-border);
    transition: var(--transition-smooth);
}

.hero-slider-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 5;
}

.hero-slider-wrapper:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow), 0 0 25px rgba(242, 196, 29, 0.15);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease;
}

.slide.active img {
    transform: scale(1);
}

/* Slider Overlays & Navigation */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 6;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 5px;
    box-shadow: 0 0 8px var(--accent);
}

/* --- Section Titles --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
}

/* --- About & Concept Section --- */
.about {
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.7;
    position: relative;
    padding-inline-start: 24px;
}

.about-intro-text::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

html[dir="rtl"] .about-intro-text::before {
    left: auto;
    right: 0;
}
html[dir="ltr"] .about-intro-text::before {
    right: auto;
    left: 0;
}

.about-intro-desc {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(26, 26, 26, 0.4);
    border: var(--glass-border);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

/* Overlay effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 100%, rgba(242, 196, 29, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 196, 29, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 196, 29, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    background: rgba(242, 196, 29, 0.08);
    border: 1px solid rgba(242, 196, 29, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: rotate(5deg);
}

.feature-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quality banner styling */
.quality-banner {
    margin-top: 60px;
    padding: 30px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--glass-shadow);
}

.quality-banner-text {
    font-size: 1.2rem;
    font-weight: 600;
    max-width: 800px;
    color: #FFFFFF;
}

.quality-banner-text span {
    color: var(--accent);
    font-weight: 700;
}

/* --- Video Showcase Section --- */
.video-showcase {
    background-color: var(--bg-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--accent-border);
    box-shadow: var(--card-shadow), 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    aspect-ratio: 9/16;
    transition: var(--transition-smooth);
    background: #000;
}

.video-card:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow), 0 0 30px rgba(242, 196, 29, 0.2);
    transform: translateY(-8px);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Image Gallery Section --- */
.image-gallery {
    background-color: var(--bg-secondary);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.image-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: var(--accent-border);
    box-shadow: var(--card-shadow);
    position: relative;
    aspect-ratio: 1/1; /* Square for photos usually looks neat, or 4/5 */
    transition: var(--transition-smooth);
}

.image-card:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow), 0 0 25px rgba(242, 196, 29, 0.2);
    transform: scale(1.03);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.1);
}

/* --- Menu PDF Section --- */
.menu-pdf {
    background-color: var(--bg-secondary);
}

.menu-pdf-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(12, 12, 12, 0.9) 100%);
    border: var(--accent-border);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.menu-pdf-card::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 196, 29, 0.04) 0%, rgba(0,0,0,0) 70%);
    bottom: -150px;
    right: -50px;
    pointer-events: none;
}

.menu-pdf-info {
    display: flex;
    flex-direction: column;
}

.menu-pdf-tagline {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.menu-pdf-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

.menu-pdf-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 24px;
}

.pdf-icon-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.pdf-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 196, 29, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(242, 196, 29, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 196, 29, 0);
    }
}

/* --- Contact Section & Info Card --- */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--accent-border);
    box-shadow: var(--card-shadow), 0 0 25px rgba(242, 196, 29, 0.05);
    transition: var(--transition-smooth);
}

.contact-map:hover {
    border-color: var(--accent);
    box-shadow: var(--card-shadow), 0 0 30px rgba(242, 196, 29, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-info-card {
    background: rgba(26, 26, 26, 0.4);
    border: var(--glass-border);
    border-inline-start: 4px solid var(--accent);
    padding: 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(242, 196, 29, 0.3);
    border-inline-start-color: var(--accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(242, 196, 29, 0.1);
}

.info-card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.info-card-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: scale(1.05);
}

/* Green icon and hover for WhatsApp */
.whatsapp-item .info-icon {
    color: var(--whatsapp-color);
    border-color: rgba(37, 211, 102, 0.2);
    background: rgba(37, 211, 102, 0.05);
    filter: drop-shadow(0 0 2px var(--whatsapp-glow));
}

.whatsapp-item:hover .info-icon {
    background: var(--whatsapp-color);
    color: #000;
    box-shadow: 0 0 15px var(--whatsapp-glow);
    border-color: var(--whatsapp-color);
}

.whatsapp-item a {
    font-weight: 700;
}

.whatsapp-item a:hover {
    color: var(--whatsapp-color);
    text-shadow: 0 0 8px var(--whatsapp-glow);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.info-text a, .info-text p {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-text a:hover {
    color: var(--accent);
}

.info-socials {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-socials span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
    transform: translateY(-3px) rotate(-3deg);
}

/* --- Simplified Footer Styles --- */
.footer {
    background-color: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px 0;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
}

.footer-brand span {
    color: var(--accent);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 480px;
    line-height: 1.6;
}

.footer-socials .social-links {
    margin-top: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Scroll-driven animations (Intersection Observer) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Left/Right directions on reveal */
.reveal-left {
    transform: translateX(-40px);
}
.reveal-right {
    transform: translateX(40px);
}
.reveal-left.reveal-visible, .reveal-right.reveal-visible {
    transform: translateX(0);
}


/* ==========================================================================
   Responsive & Adaptive Media Queries
   ========================================================================== */

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-description {
        margin: 0 auto 30px auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-slider-wrapper {
        height: 380px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-pdf-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .menu-pdf-info {
        align-items: center;
    }

    .pdf-icon-wrapper {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-map {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu styles */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.4s ease;
        pointer-events: none;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Flip transition on mobile translation load if active */
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    /* Mobile toggle states */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-top-row {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    .footer-brand-container {
        align-items: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-slider-wrapper {
        height: 280px;
    }

    .hero-ctas {
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-banner {
        padding: 20px;
    }
    
    .quality-banner-text {
        font-size: 1.05rem;
    }
}

/* --- Interactive Digital Menu Styles --- */
.menu-section {
    background-color: var(--bg-primary);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item-card {
    background: rgba(22, 22, 22, 0.4);
    border: var(--glass-border);
    border-inline-start: 4px solid var(--accent);
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 196, 29, 0.4);
    border-inline-start-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 10px rgba(242, 196, 29, 0.15);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.menu-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.menu-item-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    background: rgba(242, 196, 29, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(242, 196, 29, 0.2);
    white-space: nowrap;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

@media (max-width: 480px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-filters {
        gap: 8px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
