/* CSS Variables & Theme Setup */
:root {
    --primary: #FF9933;
    /* Deep Saffron/Orange */
    --primary-dark: #cc7a29;
    --secondary: #E2725B;
    /* Terracotta/Clay */
    --accent: #FFD700;
    /* Gold */
    --dark-bg: #121212;
    --dark-card: #1E1E1E;
    --text-light: #F4F4F4;
    --text-gray: #A0A0A0;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.75)), url('./assets/menu_background.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility Classes */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--primary);
}

.text-gradient {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.btn-text {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.btn-text:hover {
    color: var(--accent);
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: #333;
    position: relative;
    overflow: hidden;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--primary);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    pointer-events: none;
    /* Prevents clicks */
    user-select: none;
    /* Prevents text selection */
    -webkit-user-drag: none;
    /* Prevents dragging */
}

@keyframes logo-pulse {
    0% {
        filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    }

    100% {
        filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
    }
}

.logo-img {
    height: 65px;
    width: 65px;
    /* Square dimensions for circle */
    object-fit: cover;
    /* Ensures image fills the circle */
    border-radius: 50%;
    /* Makes it round */
    border: 2px solid var(--accent);
    /* Adds the frame */
    padding: 2px;
    /* Optional: space between frame and logo */
    animation: logo-pulse 3s infinite ease-in-out;
    pointer-events: none;
    /* Prevents dragging/right-click on image */
    user-select: none;
    /* Prevents selection */
    -webkit-user-drag: none;
    /* Prevents dragging in WebKit */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ... existing code ... */

.footer-info p a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info p a:hover {
    color: var(--primary);
}

.nav-links a:not(.btn-primary) {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--dark-bg);
    /* Fallback */
    background: url('./assets/hero_background.png') no-repeat center center/cover;
    margin-top: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1), rgba(18, 18, 18, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.sub-headline {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.headline {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-style: italic;
    max-width: 600px;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

.section-desc {
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

/* Signature Section */
.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary);
}

/* About Mission */
.dark-bg {
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(5px);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.mission-card {
    background: rgba(30, 30, 30, 0.6);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.about-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--white);
    border-left: 3px solid var(--primary);
    padding-left: 20px;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.menu-info h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.menu-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px var(--accent);
    }

    50% {
        box-shadow: 0 0 15px var(--accent), 0 0 5px var(--primary);
    }

    100% {
        box-shadow: 0 0 5px var(--accent);
    }
}

.price {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    min-width: 120px;
    /* Uniform width for professional look */
    background: var(--dark-bg);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 15px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: pulse-glow 2s infinite ease-in-out;
}

/* Comic Speech Bubble Tail */
.price::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--accent);
}

/* Professional adjustments to keep it readable */
.price:hover {
    transform: scale(1.05);
}

.center-btn-wrapper {
    text-align: center;
    margin-top: 20px;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--text-gray);
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-info p.address {
    align-items: flex-start;
}

.footer-info p.address i {
    margin-top: 5px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a:hover .fa-instagram {
    color: #E1306C;
}

.social-links a:hover .fa-facebook {
    color: #1877F2;
}

.social-links a:hover .fa-youtube {
    color: #FF0000;
}

.social-links a:hover .fa-whatsapp {
    color: #25D366;
}

.social-links a:hover .fa-utensils {
    color: #CB202D;
}

/* Zomato Red */
.social-links a:hover .fa-motorcycle {
    color: #FC8019;
}

/* Swiggy Orange */

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #555;
    font-size: 0.9rem;
}

/* Mobile Menu & Responsive */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: 0.5s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
}

.mobile-link:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .headline {
        font-size: 2.5rem;
    }

    .signature-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .image-frame {
        order: -1;
    }
}