/* --- Variables & Reset --- */
:root {
    --gold: #D4AF37;
    --gold-light: #F3D382;
    --black: #121212;
    --dark-gray: #1a1a1a; 
    --text-main: #FFFFFF;
    --text-muted: #d0d0d0;

    /* --- CULTURAL COLORS --- */
    --saffron: #FF9933; /* India */
    --nepal-red: #DC143C; /* Nepal */
    --gradient-accent: linear-gradient(135deg, var(--nepal-red), var(--saffron));
    
    /* Fonts */
    --font-heading: 'Rozha One', 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', 'DM Sans', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    position: relative;
    overflow-x: hidden;
}

/* --- Pattern Overlay --- */
.pattern-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: 0.04;
    background-image: radial-gradient(circle at center, var(--gold) 0%, transparent 1%), radial-gradient(circle at center, transparent 0%, var(--gold) 1%, transparent 2%);
    background-size: 40px 40px;
}

/* --- Typography --- */
h1, h2, h3 { font-family: var(--font-heading); color: var(--gold); font-weight: 500; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }
.section-padding { padding: 80px 0; }
.bg-darker { background-color: #0d0d0d; }
.text-left { text-align: left; }

.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 10px; letter-spacing: 0.05em; color: var(--gold-light); }
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 50px; font-size: 1rem; }
.title-decoration { width: 100px; height: 4px; background: var(--gradient-accent); margin: 0 auto 30px auto; border-radius: 2px; }

/* --- Navbar --- */
.navbar {
    position: fixed; top: 0; width: 100%; background: rgba(18, 18, 18, 0.95); backdrop-filter: blur(10px); z-index: 1000;
    border-bottom: 2px solid var(--gold); border-image: linear-gradient(to right, var(--nepal-red), var(--gold), var(--saffron)) 1;
}
.navbar-content { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo img { height: 60px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--saffron); }
.mobile-menu-btn { display: none; font-size: 1.8rem; cursor: pointer; color: var(--gold); z-index: 1001; }

/* --- Hero --- */
.hero-section { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.hero-text { position: relative; z-index: 2; padding: 20px; border: 1px solid rgba(212, 175, 55, 0.3); background: rgba(0,0,0,0.6); padding: 40px; border-radius: 8px; }
.namaste-icon { font-size: 3rem; margin-bottom: 10px; animation: float 3s ease-in-out infinite; }
.hero-text h2 { font-family: var(--font-cursive); font-size: 3.5rem; color: var(--gold-light); margin-bottom: 5px; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
.brand-name { color: var(--saffron); text-shadow: 2px 2px 0px var(--nepal-red); }
.hero-text p { font-size: 1.1rem; color: var(--text-main); letter-spacing: 1px; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* --- Divider --- */
.cultural-divider { height: 60px; background-color: var(--black); display: flex; align-items: center; justify-content: center; position: relative; z-index: 5; }
.cultural-divider::before, .cultural-divider::after { content: ""; height: 1px; width: 100px; background: var(--gold); margin: 0 15px; }
.cultural-divider .symbol { color: var(--gold); font-size: 2rem; }
.cultural-divider-small { height: 2px; background: linear-gradient(to right, transparent, var(--nepal-red), var(--gold), var(--saffron), transparent); margin: 40px auto; width: 80%; opacity: 0.8; }

/* --- About --- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-desc p { font-size: 1rem; line-height: 2; color: #e0e0e0; text-align: justify; }

.about-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gallery-item { height: 220px; overflow: hidden; position: relative; border: 1px solid #444; }
.ornament::before { content: ""; position: absolute; top: 5px; left: 5px; width: 20px; height: 20px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); z-index: 10; }
.ornament::after { content: ""; position: absolute; bottom: 5px; right: 5px; width: 20px; height: 20px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); z-index: 10; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }

/* --- Features / Facilities Info Box --- */
.features-info-box {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--saffron);
    padding: 20px;
    border-radius: 4px;
}
.features-title {
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}
.features-list {
    list-style: none;
    padding: 0;
}
.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-size: 0.95rem;
}
.features-list i {
    color: var(--saffron);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

/* --- Menu (UPDATED FOR MODERATE SIZE IMAGES) --- */
.menu-subsection { margin-bottom: 60px; }
.menu-legend { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; font-size: 0.95rem; color: #e0e0e0; }
.menu-legend span { display: flex; align-items: center; gap: 8px; background: #1a1a1a; padding: 5px 15px; border: 1px solid #333; border-radius: 20px; }

/* Highlight Badge for Group Party */
.highlight-badge {
    border: 1px solid var(--saffron) !important;
    color: var(--saffron);
    font-weight: bold;
    box-shadow: 0 0 10px rgba(255, 153, 51, 0.2);
}

.subsection-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.subsection-header h3 { font-size: 1.8rem; color: var(--saffron); margin-bottom: 8px; }
.time-tag { display: inline-block; padding: 5px 15px; border: 1px solid var(--gold); color: var(--gold); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.subsection-desc { text-align: center; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.menu-grid { display: grid; gap: 30px; }
.col-1 { grid-template-columns: 1fr; max-width: 800px; margin: 0 auto; } /* Single Column for Party Menu */
.col-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
.col-4 { grid-template-columns: repeat(4, 1fr); }

/* --- Menu Item Styling --- */
.menu-item { 
    position: relative; 
    overflow: hidden; 
    border: 3px double #333; 
    transition: transform 0.3s; 
    cursor: zoom-in; 
    background: #000;
    display: flex;
    flex-direction: column; 
}
.menu-item:hover { transform: translateY(-5px); border-color: var(--saffron); }

/* THIS IS THE FIX: Set uniform height and cover */
.menu-item img { 
    width: 100%; 
    height: 220px;     /* Moderate fixed height */
    display: block; 
    object-fit: cover; /* Ensures image fills the box without stretching */
    opacity: 0.8; 
    transition: 0.3s; 
}
.menu-item:hover img { opacity: 1; transform: scale(1.05); }

.caption { 
    text-align: center; 
    padding: 10px; 
    background: #1a1a1a; 
    color: var(--gold); 
    font-family: var(--font-heading); 
    font-size: 0.9rem; 
    border-top: 1px solid #333; 
}

/* Specific Adjustment for Party Menu (allow it to be taller if needed) */
.col-1 .menu-item img {
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* --- Point Card --- */
.point-card-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-list { list-style: none; margin: 30px 0; }
.benefits-list li { margin-bottom: 15px; font-size: 1.1rem; color: var(--text-muted); }
.benefits-list span { color: var(--saffron); margin-right: 10px; font-size: 1.2rem; }
.pc-note { font-size: 0.9rem; color: #888; font-style: italic; }
.pc-visual { width: 100%; }
.pc-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pc-img-wrapper { text-align: center; }
.pc-img-wrapper img { width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--gold); box-shadow: 0 5px 15px rgba(0,0,0,0.5); transition: transform 0.3s ease; }
.pc-img-wrapper img:hover { transform: scale(1.05); }
.img-caption { margin-top: 10px; color: var(--gold); font-size: 0.9rem; font-family: var(--font-heading); }

/* --- Hours Display Box --- */
.hours-display-box {
    background: #111;
    border: 1px solid #333;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 6px;
    padding: 30px;
}
.hours-block-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #333;
    padding-bottom: 25px;
}
.hb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hb-day {
    color: var(--saffron);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}
.hb-time {
    text-align: right;
}
.hb-time span {
    display: block;
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
}
.hb-time i {
    color: var(--gold);
    width: 25px;
    text-align: center;
}
.hb-closed {
    text-align: center;
}
.closed-day {
    color: var(--nepal-red);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.closed-note {
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

/* --- PAYMENT METHODS SECTION --- */
.payment-section {
    background-color: #151515;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}
.payment-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.payment-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.pay-card {
    background: #222;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.pay-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}
.pay-card i { font-size: 1.4rem; }

/* Brand Specific Stylings */
.brand-paypay .pay-icon { font-family: sans-serif; font-weight: 900; color: #FF0033; font-size: 1.4rem; }
.brand-line i { color: #00B900; }
.brand-dbarai .pay-icon { font-family: sans-serif; font-weight: bold; color: #db2626; font-size: 1.4rem; font-style: italic; }
.brand-wechat i { color: #09B83E; }
.brand-alipay i { color: #1677FF; }
.brand-merpay { transition: all 0.3s ease; padding-left: 15px; padding-right: 15px; }
.brand-merpay:hover { border-color: #3258d1; background: rgba(50, 88, 209, 0.1); }
.merpay-svg { display: block; width: 100px; height: 24px; }
.payment-note { font-size: 0.85rem; color: #777; margin-top: 15px; }

/* --- Reservation --- */
.reservation-box { background: var(--dark-gray); padding: 50px; text-align: center; max-width: 800px; margin: 0 auto; border: 8px solid transparent; border-image: linear-gradient(45deg, var(--gold), var(--nepal-red)) 1; }
.party-banner {
    background: linear-gradient(to right, #333, #000, #333);
    border: 1px solid var(--saffron);
    padding: 10px;
    margin-bottom: 30px;
    color: var(--saffron);
    font-weight: bold;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}
.party-banner i { font-size: 1.3rem; }
.res-info h3 { font-size: 1.6rem; margin-bottom: 30px; color: var(--text-main); }
.res-scenarios { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; text-align: left; }
.scenario h4 { color: var(--saffron); margin-bottom: 10px; font-family: var(--font-heading); }
.scenario p { font-size: 0.95rem; color: var(--text-muted); }
.phone-btn { display: inline-block; margin-top: 10px; padding: 15px 40px; background: transparent; border: 2px solid var(--gold); color: var(--gold); font-size: 1.5rem; font-family: var(--font-heading); letter-spacing: 2px; }
.phone-btn:hover { background: var(--gold); color: var(--black); box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }

/* --- Feedback --- */
.feedback-container { max-width: 700px; margin: 0 auto; background: var(--dark-gray); border: 1px solid rgba(212, 175, 55, 0.3); padding: 40px; border-radius: 4px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.feedback-form .form-group { margin-bottom: 20px; text-align: left; }
.feedback-form label { display: block; color: var(--gold); margin-bottom: 8px; font-family: var(--font-heading); font-size: 0.95rem; }
.feedback-form .required { color: #ff4d4d; }
.feedback-form input, .feedback-form select, .feedback-form textarea { width: 100%; padding: 12px; background-color: #000; border: 1px solid #333; color: var(--text-main); font-family: var(--font-body); font-size: 1rem; border-radius: 2px; outline: none; transition: border-color 0.3s; }
.feedback-form input:focus, .feedback-form select:focus, .feedback-form textarea:focus { border-color: var(--saffron); }
.submit-btn { width: 100%; padding: 15px; margin-top: 10px; background-color: transparent; border: 1px solid var(--gold); color: var(--gold); font-family: var(--font-heading); font-size: 1.1rem; cursor: pointer; transition: 0.3s; letter-spacing: 1px; }
.submit-btn:hover { background-color: var(--gold); color: var(--black); }
.form-status { margin-top: 20px; text-align: center; font-size: 0.95rem; }
.success-msg { color: #4CAF50; border: 1px solid #4CAF50; padding: 10px; background: rgba(76, 175, 80, 0.1); }
.error-msg { color: #ff4d4d; border: 1px solid #ff4d4d; padding: 10px; background: rgba(255, 77, 77, 0.1); }

/* --- Footer --- */
.main-footer { background-color: #080808; border-top: 3px solid var(--gold); padding-top: 80px; background-image: linear-gradient(to bottom, #111, #000); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-col h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold); margin-bottom: 25px; letter-spacing: 0.5px; }
.footer-col h3 a { color: var(--gold); transition: color 0.3s; }
.footer-col h3 a:hover { color: #fff; text-decoration: underline; }
.footer-logo { width: 80px; margin-bottom: 20px; }
.footer-desc { font-size: 0.9rem; color: #888; line-height: 1.8; }
.links-col ul { list-style: none; }
.links-col li { margin-bottom: 15px; }
.links-col a { color: #ccc; font-size: 0.95rem; transition: 0.3s; }
.links-col a:hover { color: var(--saffron); padding-left: 5px; }
.contact-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; color: #ccc; font-size: 0.95rem; }

.icon-link-large, .social-icon-btn { font-size: 2.5rem; color: var(--gold); display: inline-block; transition: all 0.3s ease; margin-top: 5px; }
.icon-link-large:hover, .social-icon-btn:hover { color: var(--saffron); transform: scale(1.1); }
.map-embed-container { margin: 20px 0; border: 2px solid var(--gold); border-radius: 4px; overflow: hidden; }

.footer-bottom { background-color: #000; padding: 20px 0; border-top: 1px solid #1a1a1a; text-align: center; }
.footer-bottom p { color: #555; font-size: 0.85rem; }

/* --- Lightbox --- */
.lightbox-modal { display: none; position: fixed; z-index: 2000; padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.95); }
.lightbox-content { margin: auto; display: block; width: 80%; max-width: 900px; max-height: 80vh; object-fit: contain; border: 2px solid var(--gold); animation: zoom 0.4s; }
#caption { margin: auto; display: block; width: 80%; max-width: 700px; text-align: center; color: var(--gold); padding: 10px 0; height: 150px; font-size: 1.2rem; font-family: var(--font-heading); }
@keyframes zoom { from {transform:scale(0)} to {transform:scale(1)} }
.close-btn { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.close-btn:hover { color: var(--gold); }

/* --- Responsive --- */
@media (max-width: 992px) {
    .menu-grid.col-4 { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; }
    .point-card-layout { grid-template-columns: 1fr; text-align: center; }
    .section-title.text-left { text-align: center; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .hb-row { flex-direction: column; text-align: center; gap: 10px; margin-bottom: 20px; }
    .hb-day { border-left: none; padding-left: 0; border-bottom: 2px solid var(--gold); padding-bottom: 5px; }
    .hb-time { text-align: center; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; right: 0px; top: 80px; height: calc(100vh - 80px);
        background: rgba(18, 18, 18, 0.98); backdrop-filter: blur(10px);
        display: flex; flex-direction: column; align-items: center; width: 60%;
        transform: translateX(100%); transition: transform 0.4s ease-in-out;
        border-left: 2px solid var(--gold); padding-top: 40px;
    }
    .nav-links.nav-active { transform: translateX(0%); }
    .nav-links li { margin: 20px 0; opacity: 1; }
    .mobile-menu-btn { display: block; }
    .hero-text h1 { font-size: 2.5rem; }
    .menu-grid.col-2, .menu-grid.col-4 { grid-template-columns: 1fr; }
    .res-scenarios { flex-direction: column; gap: 20px; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .contact-row { justify-content: center; }
    .lightbox-content { width: 100%; }
    .feedback-container { padding: 20px; }
    .payment-grid { gap: 10px; }
    .pay-card { padding: 8px 15px; font-size: 0.85rem; flex: 1 1 40%; }
}

/* --- Back To Top Button --- */
#backToTop {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1002; 
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: var(--saffron);
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: background-color 0.3s, transform 0.3s, opacity 0.3s;
    opacity: 0;
}

#backToTop.show-btn {
    display: block;
    opacity: 1;
}

#backToTop:hover {
    background-color: var(--gold);
    transform: translateY(-5px);
}