/* Core Structural Layout Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #12161a;
    --bg-card: #1c2127;
    --bg-input: #262c34;
    --accent-gold: #e59842;
    --text-light: #f4f5f6;
    --text-muted: #a0a7b1;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

/* Custom Navigation Header & Logo Alignment styling */
header {
    background-color: rgba(18, 22, 26, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand-identity {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover { color: var(--accent-gold); }

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-call-action {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(229, 152, 66, 0.3);
    padding: 7px 14px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-call-action:hover {
    background-color: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

/* Global Functional Buttons styling */
.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
    cursor: pointer;
    border: none;
}

.btn-primary { background-color: var(--accent-gold); color: #000; }
.btn-primary:hover { background-color: #f7b262; transform: translateY(-2px); }

.btn-primary-mini {
    background-color: var(--accent-gold);
    color: #000;
    padding: 8px 18px;
    font-size: 0.75rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-secondary {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
    margin-left: 10px;
}
.btn-secondary:hover { background-color: var(--text-light); color: #000; }

.btn-secondary-mini {
    background-color: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-secondary-mini:hover { background: var(--text-light); color: #000; }

/* Hero Banner Layout */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(18, 22, 26, 0.7), rgba(18, 22, 26, 0.7)), url('image_6e3cfd.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 { font-family: var(--font-serif); font-size: 3.5rem; margin: 15px 0 25px 0; font-weight: 500; line-height: 1.2; }
.hero p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 40px; }
.hero-subtitle { font-family: var(--font-serif); color: var(--accent-gold); font-size: 1.5rem; font-style: italic; }

/* Content Grid Sections */
.about-section { background-color: var(--bg-card); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-family: var(--font-serif); font-size: 3rem; margin-bottom: 20px; }
.lead { color: var(--accent-gold); font-size: 1.2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 30px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { background: rgba(229,152,66,0.1); border: 1px solid rgba(229,152,66,0.3); color: var(--accent-gold); padding: 5px 12px; font-size: 0.8rem; border-radius: 20px; }
.about-image img { width: 100%; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }

/* Reservation Panel */
.reserve-section { background: linear-gradient(rgba(18,22,26,0.95), rgba(18,22,26,0.95)), url('image_6e47fe.jpg') no-repeat center center/cover; }
.reserve-card-layout { display: grid; grid-template-columns: 1fr 1.2fr; background: var(--bg-card); border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.reserve-info-side { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.reserve-info-side h2 { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 20px; }
.booking-notice { font-size: 0.85rem; color: var(--accent-gold); border-left: 2px solid var(--accent-gold); padding-left: 15px; }
.reserve-form-side { padding: 50px; background-color: #20262e; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 8px; color: var(--text-muted); letter-spacing: 0.5px; }
input, select, textarea { width: 100%; padding: 12px; background: var(--bg-input); border: 1px solid rgba(255,255,255,0.05); color: #fff; font-family: var(--font-sans); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent-gold); }
.form-submit-btn { width: 100%; }

/* Image Showcase Gallery */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-serif); font-size: 2.8rem; margin-bottom: 10px; }
.section-title p { color: var(--text-muted); font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { height: 260px; overflow: hidden; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* Menu Section */
.menu-section { background-color: var(--bg-card); }
.menu-tabs { display: flex; justify-content: center; margin-bottom: 40px; gap: 10px; flex-wrap: wrap; }
.tab-btn { background: none; border: none; color: var(--text-muted); font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; padding: 10px 18px; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.3s; }
.tab-btn.active, .tab-btn:hover { color: var(--accent-gold); border-bottom: 2px solid var(--accent-gold); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.menu-item-card { background: var(--bg-dark); padding: 25px; border-left: 3px solid var(--accent-gold); }
.menu-item-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.menu-item-header h3 { font-family: var(--font-serif); font-size: 1.4rem; letter-spacing: 0.5px; }
.price { color: var(--accent-gold); font-weight: 600; }
.hidden { display: none !important; }

/* FAQ Accordion Layout */
.faq-section { background-color: var(--bg-dark); }
.faq-accordion-wrapper { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.faq-trigger { width: 100%; background: none; border: none; padding: 22px; text-align: left; color: #fff; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.3s; }
.faq-trigger:hover { background: rgba(255,255,255,0.02); }
.faq-trigger .arrow { font-size: 0.75rem; color: var(--accent-gold); transition: transform 0.3s ease; }
.faq-item.active .faq-trigger .arrow { transform: rotate(180deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(0,0,0,0.1); }
.faq-panel p { padding: 0 22px 22px 22px; color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; }

/* Reviews Dashboard Panels */
.reviews-section { background-color: var(--bg-card); }
.reviews-dashboard { display: flex; justify-content: center; gap: 20px; max-width: 600px; margin: 0 auto 50px auto; text-align: center; }
.stat-box { background: var(--bg-dark); padding: 30px; border: 1px solid rgba(255,255,255,0.05); border-radius: 4px; flex: 1; }
.stat-number { display: block; font-size: 3.2rem; font-family: var(--font-serif); color: var(--accent-gold); font-weight: 700; }
.stat-label { display: block; color: var(--accent-gold); letter-spacing: 2px; margin-bottom: 5px; }
.stat-box p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; }

.reviews-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.submit-review-panel { background: var(--bg-dark); padding: 40px; border: 1px solid rgba(255,255,255,0.05); height: fit-content; border-radius: 4px; }
.submit-review-panel h3 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 20px; color: var(--accent-gold); }
.reviews-feed { display: flex; flex-direction: column; gap: 20px; max-height: 520px; overflow-y: auto; padding-right: 10px; }

.review-bubble { background: rgba(255,255,255,0.02); padding: 25px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.05); }
.bubble-header { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; }
.stars { color: var(--accent-gold); }
.review-bubble p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; font-style: italic; }

.success-message h3 { font-family: var(--font-serif); color: var(--accent-gold); font-size: 1.8rem; margin-bottom: 10px; }
.success-message p { color: var(--text-muted); }

.animate-in { animation: slideUpFade 0.5s ease forwards; }
@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Grid Layout */
.contact-section { background-color: var(--bg-dark); }
.contact-grid-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.contact-card { background: var(--bg-card); padding: 40px; border-radius: 2px; }
.border-gold { border-top: 3px solid var(--accent-gold); }
.contact-card h3, .contact-details-card h3 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 15px; color: var(--accent-gold); }
.contact-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 25px; }

/* Embedded Map Container styling */
.map-embed-container {
    width: 100%;
    margin: 15px 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.detail-row { display: flex; align-items: center; margin-bottom: 20px; }
.detail-row .icon { font-size: 1.3rem; margin-right: 15px; }
.action-hyperlinks { margin-top: 35px; display: flex; flex-direction: column; gap: 15px; }
.action-hyperlinks a { text-decoration: none; font-size: 0.9rem; font-weight: 600; padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.1); transition: color 0.3s; }
.instagram-brand { color: #e1306c; }
.ubereats-brand { color: #06c167; }
.action-hyperlinks a:hover { color: #fff; }
.success-alert { color: var(--accent-gold); font-size: 0.9rem; margin-top: 15px; }

footer { background: var(--bg-dark); text-align: center; padding: 30px 0; border-top: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.2); font-size: 0.8rem; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    nav { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .reserve-card-layout, .reviews-layout, .contact-grid-wrapper, .about-grid, .menu-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .hero h1 { font-size: 2.3rem; }
    .reserve-info-side, .reserve-form-side, .contact-card { padding: 30px; }
    .reviews-dashboard { flex-direction: column; }
}