/* =========================================
   CSS Variables & Theme Setup
========================================= */
:root {
    /* Colors - Neon + Warm Tones */
    --clr-bg: #0a0a0a;
    --clr-surface: #141414;
    --clr-surface-glass: rgba(20, 20, 20, 0.75);

    --clr-primary: #ff4500;
    --clr-primary-glow: rgba(255, 69, 0, 0.6);
    --clr-secondary: #ffb703;
    --clr-accent: #e63946;
    --clr-neon-cyan: #00f5d4;
    --clr-success: #28a745;

    --clr-text-main: #ffffff;
    --clr-text-muted: #a0a0a0;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =========================================
   Reset & Base Styles (Mobile-First Approach)
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--clr-bg);
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--clr-bg);
    /* Improve touch experience */
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

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

.w-100 {
    width: 100%;
}

.mb-2 {
    margin-bottom: 1rem;
}

/* =========================================
   Typography & Utilities
========================================= */
.section-title {
    font-size: clamp(2rem, 8vw, 4rem);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--clr-primary);
    text-shadow: 0 0 15px var(--clr-primary-glow);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    /* Larger touch targets for mobile */
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition-slow);
    text-transform: uppercase;
    letter-spacing: 1px;
    gap: 10px;
    min-height: 50px;
    /* Minimum height for touch */
}

@media (min-width: 768px) {
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
    }
}

.btn-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Glowing Button variants */
.btn-glowing {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-glowing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-glowing:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--clr-primary);
    color: white;
    box-shadow: 0 0 20px var(--clr-primary-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.8);
    transform: translateY(-3px);
}

.btn-direct {
    background: var(--clr-success);
    color: white;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.4);
}

.btn-direct:hover {
    box-shadow: 0 0 30px rgba(40, 167, 69, 0.8);
    transform: translateY(-3px);
}

.btn-swiggy {
    background: #fc8019;
    color: white;
    box-shadow: 0 0 20px rgba(252, 128, 25, 0.4);
}

.btn-swiggy:hover {
    box-shadow: 0 0 30px rgba(252, 128, 25, 0.8);
    transform: translateY(-3px);
}

.btn-zomato {
    background: #e23744;
    color: white;
    box-shadow: 0 0 20px rgba(226, 55, 68, 0.4);
}

.btn-zomato:hover {
    box-shadow: 0 0 30px rgba(226, 55, 68, 0.8);
    transform: translateY(-3px);
}

/* =========================================
   Navbar (Glassmorphism)
========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--clr-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 2rem;
    }
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.8rem;
    }
}

.logo span {
    color: var(--clr-primary);
}

/* Hide desktop links on mobile */
.nav-links,
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {

    .nav-links,
    .hide-mobile {
        display: flex;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

.nav-links {
    gap: 2rem;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    /* Enhance tap target lightly */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--clr-primary);
}

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

.order-dropdown {
    position: relative;
}

.order-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.order-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--clr-primary);
}

.dropdown-content {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--clr-surface);
    min-width: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.order-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.8rem;
}

.direct-link {
    color: var(--clr-success);
}

.swiggy-link {
    color: #fc8019;
}

.zomato-link {
    color: #e23744;
}

/* Mobile Menu Configuration */
.mobile-menu-btn {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    /* Larger touch target */
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    background: var(--clr-surface);
    position: fixed;
    top: 70px;
    /* Below navbar */
    left: 0;
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-links.active {
    max-height: 500px;
    border-bottom: 2px solid var(--clr-primary);
}

.mobile-nav-links a {
    padding: 1.2rem var(--spacing-lg);
    /* Very large tap target */
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-order {
    background: rgba(255, 255, 255, 0.03);
}

.direct-link-mobile {
    color: var(--clr-success);
    font-weight: 800;
    background: rgba(40, 167, 69, 0.1);
}

.swiggy-link-mobile {
    color: #fc8019;
}

.zomato-link-mobile {
    color: #e23744;
    border-bottom: none !important;
}


/* =========================================
   Hero Section & Parallax
========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('https://images.unsplash.com/photo-1517244683847-7456b63c5969?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    z-index: 1;
    filter: brightness(0.35) contrast(1.1);
    transition: transform 0.1s ease-out;
}

.hero-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 var(--spacing-md);
    perspective: 1000px;
    width: 100%;
}

.kinetic-text {
    font-size: clamp(2.5rem, 10vw, 6rem);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.kinetic-text .line-1 {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    transform: translateZ(20px);
}

.kinetic-text .line-2 {
    color: var(--clr-primary);
    text-shadow: 0 0 20px var(--clr-primary-glow), 0 0 40px var(--clr-primary-glow);
    transform: translateZ(40px);
}

@media (min-width: 768px) {
    .kinetic-text .line-1 {
        transform: translateZ(50px);
    }

    .kinetic-text .line-2 {
        transform: translateZ(80px);
    }
}

.hero .subtitle {
    font-size: clamp(1rem, 4vw, 1.8rem);
    margin: 1rem 0 2rem;
    color: var(--clr-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}

.hero-actions .btn {
    width: 100%;
    max-width: 350px;
}

.secondary-actions {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.secondary-actions .btn {
    flex: 1;
    padding: 1rem;
    font-size: 0.9rem;
}

/* Desktop sizing for buttons */
@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions .btn,
    .secondary-actions {
        width: auto;
        min-width: 200px;
    }
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* =========================================
   About Section
========================================= */
.about {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.float-item {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 69, 0, 0.08);
    left: var(--x);
    top: var(--y);
    animation: float 8s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-40px) rotate(20deg);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-image {
        order: 2;
    }
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--clr-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: brightness(0.8);
    transition: var(--transition-slow);
}

.mask-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-primary);
    border-radius: 20px;
    z-index: -1;
}

/* =========================================
   Achievements Section
========================================= */
.achievements {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(30, 30, 30, 1) 100%);
}

.award-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 183, 3, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-secondary);
}

.award-icon {
    font-size: 4rem;
    color: var(--clr-secondary);
    filter: drop-shadow(0 0 10px rgba(255, 183, 3, 0.5));
}

.award-info h3 {
    font-size: 1.8rem;
    color: var(--clr-secondary);
    margin-bottom: 0.5rem;
}

/* =========================================
   Table Booking & Offers (Glass Forms)
========================================= */
.table-booking,
.offers {
    padding: var(--spacing-xl) 0;
}

.glass-form {
    background: var(--clr-surface-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--clr-secondary);
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    /* Large touch target */
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

/* Fix for select options color in some browsers */
.form-group select option {
    background: #111;
    color: white;
}

.msg-box {
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    padding: 0.5rem;
}

.msg-success {
    background: rgba(40, 167, 69, 0.2);
    color: #4dc26a;
}

.msg-error {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b7a;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.offer-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(5, 5, 5, 0.9));
    border: 1px dashed var(--clr-primary);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.offer-card h3 {
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.offer-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.offer-card .expiry {
    font-size: 0.8rem;
    color: var(--clr-secondary);
    margin-top: 1rem;
    display: block;
}

/* =========================================
   Our Menu Section - Simple Solid Cards
========================================= */
.menu {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--clr-bg), var(--clr-surface), var(--clr-bg));
}

.menu-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .menu-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .menu-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

.menu-simple-card {
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 69, 0, 0.12);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.menu-card-header i {
    font-size: 1.6rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.menu-card-header h3 {
    font-size: 1.3rem;
    color: var(--clr-text-main);
    margin: 0;
    font-family: var(--font-heading);
}

.menu-item-list {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.menu-item-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
}

.menu-item-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-name {
    color: #e0e0e0;
    flex: 1;
    margin-right: 1rem;
}

.item-price {
    color: var(--clr-secondary);
    font-weight: 700;
    white-space: nowrap;
    font-size: 0.95rem;
}

/* =========================================
   Cart Modal Styles
========================================= */
.cart-layout {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cart-layout {
        flex-direction: row;
        gap: 2rem;
    }
}

.loading-text {
    text-align: center;
    color: var(--clr-primary);
    font-size: 1.2rem;
    width: 100%;
}

/* =========================================
   Admin Dashboard
========================================= */
.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--clr-bg);
    z-index: 9999;
    overflow-y: auto;
}

.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 1rem;
}

.admin-login-box {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-box h2 {
    margin-bottom: 1.5rem;
}

.admin-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.1rem;
    text-align: center;
}

.admin-dashboard-layout {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

@media (min-width: 992px) {
    .admin-dashboard-layout {
        flex-direction: row;
    }
}

.admin-sidebar {
    background: var(--clr-surface);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .admin-sidebar {
        width: 250px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        height: 100vh;
    }
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 2rem;
}

.admin-nav-btn {
    background: transparent;
    color: white;
    border: none;
    padding: 1rem;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.admin-nav-btn:hover,
.admin-nav-btn.active {
    background: rgba(255, 69, 0, 0.2);
    color: var(--clr-primary);
}

.logout-btn {
    margin-top: auto;
    color: #ff6b7a;
}

.admin-main {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.admin-tab {
    display: none;
}

.admin-tab.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.admin-tab h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.admin-table th {
    color: var(--clr-secondary);
    font-family: var(--font-heading);
}

.admin-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.admin-form input {
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.menu-checklist {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .menu-checklist {
        grid-template-columns: 1fr 1fr;
    }
}

.menu-checkbox-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.menu-checkbox-item label {
    flex: 1;
    cursor: pointer;
    user-select: none;
    margin-left: 10px;
}

.menu-checkbox-item input[type="checkbox"] {
    transform: scale(1.5);
    cursor: pointer;
}


/* =========================================
   Modals
========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-box {
    background: var(--clr-surface);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--clr-primary);
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.modal-box h3 {
    color: var(--clr-primary);
    margin-bottom: 1rem;
}


/* =========================================
   Footer / Contact Section
========================================= */
.footer {
    background-color: #050505;
    padding: var(--spacing-xl) 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

.footer-info .logo {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--clr-text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--clr-primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.contact-item a:hover {
    color: var(--clr-primary);
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a i {
    font-size: 1.6rem;
    color: var(--clr-primary);
}

.social-links a:hover {
    background: rgba(255, 69, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 69, 0, 0.2);
    border-color: var(--clr-primary);
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 20px;
    overflow: hidden;
    filter: invert(90%) hue-rotate(180deg) contrast(1.1) opacity(0.85);
    transition: filter 0.5s ease;
}

@media (min-width: 768px) {
    .map-container {
        min-height: 350px;
    }
}

.map-container iframe {
    pointer-events: none;
}

.full-map-link {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: block;
}

.map-container:hover {
    filter: invert(90%) hue-rotate(180deg) contrast(1.1) opacity(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Scroll Animations (Intersection Observer)
========================================= */
.fade-up-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-pop-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.map-pop-in.visible {
    opacity: 1;
    transform: scale(1);
}
