/* Cuisine of Nepal - Modern Responsive Design */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-red: #8B0000;
    --primary-gold: #D4AF37;
    --dark-red: #6C0320;
    --light-gold: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --bg-light: #f9f9f9;
    --border-light: #eee;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.3; color: var(--dark-red); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-gold); }
address { font-style: normal; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
    color: white;
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-top {
    background: rgba(0,0,0,0.2);
    padding: 0.75rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }

.header-content { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.logo { flex-shrink: 0; transition: var(--transition); }
.logo:hover { transform: scale(1.05); }
.logo-img { height: 50px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.main-nav ul { display: flex; gap: 0.5rem; align-items: center; }
.main-nav a { color: white; font-weight: 500; font-size: 0.95rem; padding: 0.75rem 1.25rem; border-radius: 8px; position: relative; }
.main-nav a::after {
    content: ''; position: absolute; bottom: 8px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%; height: 2px; background: var(--primary-gold);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary-gold); background: rgba(255,255,255,0.1); }
.main-nav a:hover::after, .main-nav a.active::after { transform: translateX(-50%) scaleX(1); }

.header-actions { display: none; z-index: 1002; }
.mobile-menu-toggle {
    background: none; border: 2px solid white; color: white;
    font-size: 1.5rem; cursor: pointer; transition: var(--transition);
    border-radius: 8px; width: 44px; height: 44px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
}
.mobile-menu-toggle:hover { color: var(--primary-gold); border-color: var(--primary-gold); }

/* ============================================
   BUTTONS
   ============================================ */
.cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    padding: 0.875rem 2rem; border-radius: 50px; font-weight: 600;
    font-size: 0.9rem; transition: var(--transition); display: inline-flex;
    align-items: center; justify-content: center; gap: 0.5rem;
    text-align: center; border: 2px solid transparent; cursor: pointer;
    letter-spacing: 0.05em; text-transform: uppercase; min-width: 150px;
}
.btn-large { font-size: 1.1rem; padding: 1rem 2.5rem; }
.btn-full { width: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%); color: var(--dark-red); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); }
.btn-secondary { background: transparent; color: white; border: 2px solid white; }
.btn-secondary:hover { background: white; color: var(--dark-red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(255,255,255,0.3); }
.btn-tertiary { background: transparent; color: white; border-color: rgba(255, 255, 255, 0.7); }
.btn-tertiary:hover { background: rgba(255, 255, 255, 0.1); border-color: white; transform: translateY(-3px); }
.btn-order::before { content: '🛒'; }
.btn-reserve::before { content: '📅'; }
.btn-call::before { content: '📞'; }

/* ============================================
   HERO & PAGE HEADERS
   ============================================ */
.hero, .page-hero {
    background: linear-gradient(135deg, rgba(108, 3, 32, 0.85) 0%, rgba(139, 0, 0, 0.85) 100%),
                url('https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?auto=format&fit=crop&w=1600&q=80') center/cover;
    background-attachment: fixed; color: white;
    padding: clamp(4rem, 8vw, 8rem) 0; text-align: center;
}
.large-hero { min-height: 600px; display: flex; align-items: center; }
.page-hero { padding: clamp(4rem, 6vw, 6rem) 0; background-attachment: scroll; }
.hero h1, .page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; color: var(--primary-gold); text-shadow: 3px 3px 6px rgba(0,0,0,0.3); animation: fadeInUp 1s ease-out; }
.hero p, .page-hero p { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; animation: fadeInUp 1s ease-out 0.2s both; }
.hero .cta-buttons, .page-hero .cta-buttons { animation: fadeInUp 1s ease-out 0.4s both; }
.centered-cta { justify-content: center; }
.hero-content-centered { max-width: 900px; margin: 0 auto; }
.hero-tags { display: flex; gap: 1.5rem; justify-content: center; align-items: center; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-tags span { color: var(--primary-gold); font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; text-shadow: 2px 2px 6px rgba(0,0,0,0.5); }
.hero-tags span:nth-child(2n) { color: white; font-size: 1.5rem; }
.info-pill { display: inline-flex; flex-wrap: wrap; gap: 1rem; background: rgba(0,0,0,0.3); padding: 0.75rem 1.5rem; border-radius: 50px; margin-bottom: 1.5rem; backdrop-filter: blur(5px); }
.info-pill span { font-weight: 500; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   SECTIONS & GENERAL LAYOUT
   ============================================ */
section { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }
.bg-dark { background: linear-gradient(135deg, var(--dark-red) 0%, #4a0112 100%); }
.bg-gold { background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%); }
.text-light { color: white; }
.text-dark { color: var(--text-dark); }
.text-gold { color: var(--primary-gold); }
.text-center { text-align: center; }
.section-title { text-align: center; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; font-weight: 800; position: relative; }
.section-title.large-title { font-size: clamp(2rem, 5vw, 3.5rem); }
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 50%;
    transform: translateX(-50%); width: 80px; height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    border-radius: 2px;
}
.section-subtitle { text-align: center; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-light); margin-bottom: 3.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.content-block { max-width: 900px; margin: 0 auto; text-align: center; }
.content-block p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; text-align: left; }
.content-block .info-box { background: var(--bg-light); padding: 2rem; border-radius: 10px; margin: 2rem 0; text-align: left; }
.content-block .info-box h3 { color: var(--dark-red); margin-bottom: 1rem; }
.checklist { font-size: 1.1rem; line-height: 2; list-style-position: inside; }
.checklist li::before { content: '✓ '; color: var(--primary-gold); }

/* ============================================
   COMPONENT STYLES
   ============================================ */
/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; text-align: center; }
.feature-item { padding: 2rem 1rem; }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-item h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
.feature-item p { color: var(--text-light); }

/* Offers */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2rem; }
.offer-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: var(--shadow-md); }
.offer-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.offer-card h3 { color: var(--dark-red); margin-bottom: 0.5rem; }
.offer-card p { color: var(--text-light); margin-bottom: 1rem; }
.offer-price { font-size: 2rem; font-weight: 800; color: var(--dark-red); }
.offer-note { font-size: 0.9rem; color: var(--text-light); }

/* Menu */
.menu-category { margin-bottom: 4rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
.menu-item { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid var(--border-light); }
.menu-item:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-lg); }
.menu-item img { width: 100%; height: 240px; object-fit: cover; }
.menu-item-content { padding: 1.75rem; }
.menu-item h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.menu-item p { color: var(--text-light); margin-bottom: 0.75rem; font-size: 0.95rem; }
.menu-item .price { color: var(--primary-gold); font-size: 1.75rem; font-weight: 800; font-family: 'Playfair Display', serif; display: block; margin-top: 0.5rem; }
.menu-item-options { font-size: 0.9rem; color: #666; margin: 0.5rem 0; }

/* Hours */
.pattern-bg { position: relative; overflow: hidden; }
.hours-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 20px; padding: 3rem; border: 1px solid rgba(255,255,255,0.2); max-width: 700px; margin: 0 auto; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: left; font-size: 1.15rem; }
.hours-day { color: var(--primary-gold); font-weight: 700; margin-bottom: 0.5rem; font-size: 1.25rem; }
.hours-time { color: rgba(255,255,255,0.9); line-height: 1.8; }
.hours-footer { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); text-align: center; }
.hours-footer p { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.hours-phone { color: var(--primary-gold); text-decoration: none; font-weight: 600; font-size: 1.3rem; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.review-card { background: white; padding: 2rem; border-radius: 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.review-rating { color: var(--primary-gold); font-size: 1.25rem; margin-bottom: 1rem; }
.review-card p { margin-bottom: 1rem; }
.review-author { font-weight: 600; color: var(--text-dark); }

/* Stats */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; text-align: center; }
.stat-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: var(--shadow-sm); }
.stat-card h3 { font-size: 2.5rem; margin-bottom: 0.5rem; color: var(--primary-gold); }

/* Contact & Forms */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.contact-card { background: var(--bg-light); padding: 2rem; border-radius: 15px; }
.contact-card h3 { margin-bottom: 1rem; }
.contact-card ul { margin-top: 0.5rem; }
.contact-card a:hover { text-decoration: underline; }
.card-note { margin-top: 1rem; color: var(--text-light); font-size: 0.9rem; }
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; align-items: start; }
.contact-form h3, .info-list h3 { margin-bottom: 1.5rem; font-size: 1.5rem; }
.info-list ul li { margin-bottom: 1.5rem; line-height: 1.6; }
.info-highlight { margin-top: 2rem; padding: 1.5rem; background: var(--bg-light); border-radius: 10px; border-left: 4px solid var(--primary-gold); }
.info-highlight h4 { color: var(--dark-red); margin-bottom: 0.5rem; }
.form-container { max-width: 800px; margin: 0 auto; background: white; padding: 3rem; border-radius: 20px; box-shadow: var(--shadow-lg); }
.form-container h3 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem; border: 2px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: 'Poppins', sans-serif; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-gold); outline: none; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: red; }
.form-row { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
.form-note { font-size: 0.85rem; color: var(--text-light); margin-top: 1rem; text-align: center; }
.form-footer { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-light); text-align: center; }
.map-wrapper { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 16/9; }
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item { position: relative; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-md); cursor: pointer; }
.gallery-item img { transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 3rem 1.5rem 1.5rem; color: white; transition: var(--transition); opacity: 0; transform: translateY(20px); }
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-caption h4 { color: var(--primary-gold); margin-bottom: 0.25rem; }
.gallery-caption p { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: linear-gradient(135deg, var(--dark-red) 0%, #4a0112 100%); color: white; padding: 4rem 0 1.5rem; }
.site-footer::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, var(--primary-gold) 0%, var(--light-gold) 50%, var(--primary-gold) 100%); }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3 { color: var(--primary-gold); margin-bottom: 1.5rem; font-size: 1.35rem; }
.footer-section p, .footer-section a { color: rgba(255,255,255,0.8); line-height: 1.8; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section a:hover { color: var(--primary-gold); transform: translateX(5px); }
.footer-link-gold { color: var(--primary-gold); text-decoration: underline; }
.social-links { margin-top: 1.5rem; }
.social-title { color: var(--primary-gold); font-size: 1.1rem; margin-bottom: 1rem; }
.social-icons { display: flex; gap: 1rem; }
.social-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.social-icon:hover { background: var(--primary-gold); transform: translateY(-3px); }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-legal { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.footer-sub-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-sub-links a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.made-by { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.made-by a { color: rgba(255,255,255,0.8); }

/* ============================================
   UTILITIES & HELPERS
   ============================================ */
.notification {
    position: fixed; top: 20px; right: 20px; padding: 1rem 2rem;
    color: white; border-radius: 5px; box-shadow: var(--shadow-md);
    z-index: 10001; transform: translateX(120%); transition: transform 0.3s ease-out;
}
.notification.success { background: #4CAF50; }
.notification.error { background: #f44336; }
.notification.show { transform: translateX(0); }

.lightbox {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9); display: flex; align-items: center;
    justify-content: center; z-index: 10000; cursor: pointer;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox.show { opacity: 1; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 10px; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .main-nav ul, .main-nav .cta-buttons { display: none; }
    .header-actions { display: block; }
    .contact-layout { grid-template-columns: 1fr; }
    section { padding: 4rem 0; }
    .main-nav.active {
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
        background: var(--dark-red); z-index: 1001;
        animation: fadeIn 0.3s ease; padding: 6rem 1rem; overflow-y: auto;
    }
    .main-nav.active ul { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 2rem; }
    .main-nav.active a { font-size: 1.5rem; font-weight: 600; padding: 1rem; color: white; }
    .main-nav.active a:hover, .main-nav.active a.active { color: var(--primary-gold); background: none; }
    .main-nav.active a::after { display: none; }
    .main-nav.active .cta-buttons {
        display: flex; flex-direction: column; gap: 1rem; align-items: center;
        width: 90%; max-width: 320px; padding-top: 2rem; margin-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }
    .main-nav.active .cta-buttons .btn { width: 100%; }
}

@media (max-width: 768px) {
    .header-top { display: none; }
    .header-content { padding: 0.75rem 0; }
    .logo-img { height: 40px; }
    .hero, .page-hero { background-attachment: scroll; }
    .hero h1, .page-hero h1 { font-size: 2.2rem; }
    .hero p, .page-hero p { font-size: 1.1rem; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    .cta-buttons .btn { width: 90%; max-width: 300px; }
    .centered-cta { align-items: center; }
    section { padding: 3rem 0; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 1rem; }
    .menu-grid, .footer-content, .gallery-grid, .contact-grid, .reviews-grid, .stat-cards, .offers-grid, .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hours-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-content { text-align: center; }
    .footer-section a:hover { transform: none; }
    .social-icons { justify-content: center; }
    .footer-legal { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
    .menu-item-content { padding: 1.25rem; }
    .hours-card, .form-container { padding: 2rem; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   DESKTOP-SPECIFIC OVERRIDES
   ============================================ */
@media (min-width: 1025px) {
    /* Per request, only show "Call Us" button in the desktop header */
    .main-nav .cta-buttons .btn-order,
    .main-nav .cta-buttons .btn-reserve {
        display: none;
    }
}
