/* =========================================
   VARIABLES & RESET
========================================= */
:root {
    --primary: #ff5e00; /* Vibrant Orange/Saffron */
    --primary-hover: #e05300;
    --secondary: #d11a2a; /* Deep Red */
    --bg-dark: #121212;
    --bg-surface: #1e1e1e;
    --bg-surface-light: #2c2c2c;
    --text-main: #f5f5f5;
    --text-muted: #cccccc;
    --border-color: #333333;
    --header-bg: rgba(18, 18, 18, 0.8);
    --header-bg-scrolled: rgba(18, 18, 18, 0.95);
    --footer-bg: #0a0a0a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

[data-theme="light"] {
    --bg-dark: #f8f9fa;
    --bg-surface: #ffffff;
    --bg-surface-light: #e9ecef;
    --text-main: #212529;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-bg-scrolled: rgba(255, 255, 255, 0.95);
    --footer-bg: #f8f9fa;
}
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.section-padding {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.mx-auto {
    margin: 0 auto;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
}

/* =========================================
   HEADER & NAV
========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    background: var(--header-bg-scrolled);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    border-radius: 5px;
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    transition: var(--transition);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--primary);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../images/hero_bg.png') no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(18,18,18,0.4) 0%, rgba(18,18,18,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    font-weight: 500;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

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

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-surface);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-image-placeholder .img-box {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* =========================================
   MENU SECTION
========================================= */
.menu {
    background: var(--bg-surface);
}

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

.tab-btn {
    background: var(--bg-surface-light);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.3);
}

.menu-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-pane.active {
    display: block;
}

.category-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.menu-grid.single-col {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.veg-icon {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid #28a745;
    position: relative;
}
.veg-icon::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: #28a745;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.nonveg-icon {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid #dc3545;
    position: relative;
}
.nonveg-icon::after {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: #dc3545;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.menu-list li {
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.item-header h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

/* =========================================
   CATERING SECTION
========================================= */
.catering {
    background: linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.8)), url('../images/catering_img.png') no-repeat center center;
    background-size: cover;
}

.catering-box {
    background: var(--bg-surface);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.catering-box p {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   BLOG SECTION
========================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-surface);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--primary);
}

.blog-img {
    height: 200px;
    background: var(--bg-surface-light);
}

.placeholder-1 { background: linear-gradient(45deg, #1e1e1e, #ff5e00 300%); }
.placeholder-2 { background: linear-gradient(45deg, #1e1e1e, #d11a2a 300%); }
.placeholder-3 { background: linear-gradient(45deg, #1e1e1e, #ffb703 300%); }

.blog-info {
    padding: 25px;
}

.blog-info .date {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--text-main);
    font-weight: 600;
    font-family: var(--font-heading);
}
.read-more:hover {
    color: var(--primary);
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-item strong {
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 94, 0, 0.2);
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: var(--footer-bg);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 500;
}

.socials a:hover {
    color: var(--primary);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
    .about-content, .menu-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-bg-scrolled);
        backdrop-filter: blur(10px);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li a {
        display: block;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu ul li:last-child a {
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}
