/* ==========================================================================
   ✨ GOURMET CRAFT - MASTER STYLESHEET (COMPLETE COMPREHENSIVE UPDATE)
   ========================================================================== */

:root {
    --bg-deep: #f8fafc;        
    --bg-panel: #120e25;       /* Rich Dark Matte Purple for Header & Footer */
    --accent-purple: #9b5de5;  
    --purple-glow: rgba(155, 93, 229, 0.25);
    --text-dark: #1e1b4b;      
    --text-light: #f8fafc;     
    --text-muted: #64748b;     
    --glass-card: #ffffff;     
    --glass-border: #e2e8f0;   
    --sidebar-w: 290px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
}

/* ==========================================================================
   ✒️ PREMIUM HEADLINE STYLING & TYPOGRAPHY ARCHITECTURE
   ========================================================================== */

.hero-content h1, 
.menu-header h2, 
.reservation-header h2, 
.gallery-header h2,
.gallery-premium-header h1,
.reviews-premium-header h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    position: relative;
}

.hero-content h1 span,
.menu-header h2 span,
.reservation-header h2 span,
.gallery-header h2 span,
.gallery-premium-header h1 span,
.reviews-premium-header h1 span {
    background: linear-gradient(135deg, #9b5de5 0%, #6225a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.menu-header h2::after,
.reservation-header h2::after,
.gallery-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #9b5de5, #7b2cbf);
    border-radius: 50px;
    margin: 15px auto 0 auto;
}

.hero-content h1 {
    font-size: 58px;
    letter-spacing: -2px;
    text-align: left;
}
.hero-content h1::after { display: none; }

.menu-section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 70px 0 35px 0;
    padding-left: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
}

.menu-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #9b5de5, #7b2cbf);
    border-radius: 10px;
}

.menu-row-content h3, .venue-title-bar h3, .img-overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

/* ==========================================================================
   🌙 DARK THEME NAVIGATION (Header)
   ========================================================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 8%;               
    background: var(--bg-panel);   
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.logo-link {
    text-decoration: none;
    font-size: 32px;               
    font-weight: 800;
    color: var(--text-light);      
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-link span {
    color: var(--accent-purple);
    text-shadow: 0 0 15px var(--purple-glow);
}

.nav-links a {
    color: #94a3b8;                
    text-decoration: none;
    margin-left: 45px;
    font-weight: 700;
    font-size: 19px;               
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-purple);
    transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text-light); }
.nav-links a:hover::after { width: 100%; }

/* ==========================================================================
   🏠 HOME PAGE 
   ========================================================================== */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background: radial-gradient(circle at 90% 10%, rgba(155, 93, 229, 0.04) 0%, transparent 60%), #ffffff;
    gap: 60px;
}

.hero-content { flex: 1; max-width: 620px; }

.luxury-glow-badge {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.12) 0%, rgba(123, 44, 191, 0.04) 100%);
    color: var(--accent-purple);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 100px;
    margin-bottom: 28px;
    border: 1px solid rgba(155, 93, 229, 0.3);
    box-shadow: 0 8px 20px rgba(155, 93, 229, 0.08);
    animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(155, 93, 229, 0.08); }
    100% { transform: scale(1.02); box-shadow: 0 12px 25px rgba(155, 93, 229, 0.18); border-color: rgba(155, 93, 229, 0.5); }
}

.hero-content p { font-size: 19px; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.cta-group { display: flex; gap: 20px; align-items: center; }

.btn-primary-accent {
    display: inline-block;
    padding: 20px 42px;
    background: linear-gradient(135deg, #9b5de5 0%, #7b2bfb 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 12px 30px rgba(155, 93, 229, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-accent:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(155, 93, 229, 0.5);
}

.hero-image-container { flex: 1; max-width: 580px; height: 480px; border-radius: 28px; overflow: hidden; box-shadow: 0 25px 60px rgba(18, 14, 37, 0.12); }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   🍽️ ALTERNATING ROW MENU ARCHITECTURE (menu.php)
   ========================================================================== */
.menu-container { padding: 80px 8%; background: #ffffff; }
.menu-header { text-align: center; max-width: 700px; margin: 0 auto 60px auto; }
.menu-header p { font-size: 17px; color: var(--text-muted); }
.menu-list-container { display: flex; flex-direction: column; gap: 40px; }

.menu-row-card {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 280px;
}
.menu-row-card:nth-child(even) { flex-direction: row-reverse; }
.menu-row-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(155, 93, 229, 0.08); border-color: rgba(155, 93, 229, 0.25); }
.menu-row-img { flex: 0 0 40%; position: relative; overflow: hidden; background: #f1f5f9; }
.menu-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-row-card:hover .menu-row-img img { transform: scale(1.05); }

.category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(18, 14, 37, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.menu-row-content { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.menu-row-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; gap: 15px; }
.menu-row-price { font-size: 20px; font-weight: 800; color: var(--accent-purple); background: rgba(155, 93, 229, 0.06); padding: 6px 18px; border-radius: 50px; }
.menu-row-content p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 25px; }

.btn-row-order {
    align-self: flex-start;
    padding: 12px 28px;
    background: #f8fafc;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    border-radius: 10px;
    text-transform: uppercase;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}
.btn-row-order:hover { background: linear-gradient(135deg, #9b5de5 0%, #7b2cbf 100%); color: #ffffff; border-color: transparent; }

/* ==========================================================================
   💎 BOOK A TABLE (reservation.php)
   ========================================================================== */
.reservation-container { padding: 80px 8%; background: radial-gradient(circle at 10% 90%, rgba(155, 93, 229, 0.03) 0%, transparent 50%), #ffffff; }
.reservation-header { text-align: center; max-width: 650px; margin: 0 auto 60px auto; }
.reservation-header p { font-size: 17px; color: var(--text-muted); }
.reservation-wrapper { display: flex; gap: 50px; align-items: stretch; }

.reservation-info-box {
    flex: 0 0 35%;
    background: var(--bg-panel);
    border-radius: 24px;
    padding: 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(18, 14, 37, 0.15);
}
.reservation-info-box h3 { font-size: 26px; font-weight: 800; margin-bottom: 20px; color: var(--text-light); }
.reservation-info-box p { font-size: 15px; color: #94a3b8; line-height: 1.8; margin-bottom: 35px; }
.zone-highlights { display: flex; flex-direction: column; gap: 25px; }
.zone-item strong { display: block; font-size: 16px; color: var(--accent-purple); margin-bottom: 4px; }
.zone-item span { font-size: 14px; color: #cbd5e1; }

.reservation-form-card { flex: 1; background: #ffffff; border: 1px solid var(--glass-border); border-radius: 24px; padding: 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.02); }
.form-row-twin { display: flex; gap: 25px; margin-bottom: 25px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 25px; }
.form-row-twin .form-group { margin-bottom: 0; }
.form-group label { font-size: 14px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; }

.form-group input, .form-group select, .form-group textarea {
    padding: 16px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 16px;
    color: var(--text-dark);
    background: #f8fafc;
    transition: all 0.3s ease;
    width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.1);
}

.btn-submit-reservation {
    width: 100%; padding: 20px;
    background: linear-gradient(135deg, #1e1b4b 0%, #120e25 100%);
    color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
    border-radius: 14px; cursor: pointer; transition: all 0.3s ease; margin-top: 10px;
}
.btn-submit-reservation:hover { background: linear-gradient(135deg, #9b5de5 0%, #7b2cbf 100%); box-shadow: 0 15px 35px rgba(155, 93, 229, 0.35); transform: translateY(-2px); }

/* ==========================================================================
   🖼   HIGH-END IMAGE GRID (gallery.php)
   ========================================================================== */
.gallery-wrapper-center { padding: 100px 8% 120px 8%; background: #fafafa; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
.gallery-premium-header { text-align: center; max-width: 800px; margin-bottom: 75px; display: flex; flex-direction: column; align-items: center; }
.gallery-premium-header h1 { font-size: 64px; font-weight: 800; line-height: 1.1; color: #120e25; letter-spacing: -2.5px; margin-top: 15px; margin-bottom: 20px; }
.gallery-premium-header h1 span { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; background: linear-gradient(135deg, #9b5de5 0%, #52188c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gallery-premium-header p { font-size: 19px; color: #64748b; line-height: 1.8; max-width: 620px; margin: 0 auto; }
.gallery-premium-header::after { content: ''; display: block; width: 80px; height: 5px; background: linear-gradient(to right, #9b5de5, #7b2cbf); border-radius: 50px; margin-top: 25px; }

.centered-photo-matrix { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); grid-auto-rows: 300px; grid-auto-flow: dense; gap: 30px; width: 100%; max-width: 1400px; margin: 0 auto; }
.gallery-img-card { position: relative; border-radius: 20px; overflow: hidden; background: #f1f5f9; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer; }
.gallery-img-card.tall { grid-row: span 2; }
.gallery-img-card.wide { grid-column: span 2; }
.gallery-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-img-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18, 14, 37, 0.85) 0%, rgba(18, 14, 37, 0.2) 60%, transparent 100%); opacity: 0; transition: opacity 0.4s ease; z-index: 1; }

.img-overlay-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; z-index: 2; transform: translateY(20px); opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.img-overlay-content h3 { color: #ffffff; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
.img-location { color: var(--accent-purple); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; }
.gallery-img-card:hover img { transform: scale(1.05); }
.gallery-img-card:hover::after { opacity: 1; }
.gallery-img-card:hover .img-overlay-content { transform: translateY(0); opacity: 1; }

/* ==========================================================================
   ✒️ REVIEWS ARCHITECTURE (reviews.php)
   ========================================================================== */
.reviews-page-wrapper { padding: 100px 8% 120px 8%; background: #fafafa; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
.reviews-premium-header { text-align: center; max-width: 800px; margin-bottom: 75px; display: flex; flex-direction: column; align-items: center; }
.reviews-premium-header h1 { font-size: 64px; font-weight: 800; line-height: 1.1; color: #120e25; letter-spacing: -2.5px; margin-top: 15px; margin-bottom: 20px; }
.reviews-premium-header h1 span { font-family: 'Playfair Display', serif; font-weight: 700; font-style: italic; background: linear-gradient(135deg, #9b5de5 0%, #52188c 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.reviews-premium-header p { font-size: 19px; color: #64748b; line-height: 1.8; max-width: 620px; margin: 0 auto; }
.reviews-premium-header::after { content: ''; display: block; width: 80px; height: 5px; background: linear-gradient(to right, #9b5de5, #7b2cbf); border-radius: 50px; margin-top: 25px; }

.reviews-master-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; width: 100%; max-width: 1400px; margin: 0 auto; }
.executive-review-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 20px; padding: 35px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.executive-review-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(155, 93, 229, 0.06); border-color: rgba(155, 93, 229, 0.3); }
.executive-review-card::before { content: '“'; position: absolute; top: 15px; right: 25px; font-size: 80px; font-family: 'Playfair Display', serif; color: rgba(155, 93, 229, 0.08); line-height: 1; }
.star-rating-system { color: #ffb703; font-size: 16px; margin-bottom: 20px; letter-spacing: 2px; }
.critique-text { font-size: 15.5px; color: #475569; line-height: 1.7; margin-bottom: 25px; font-style: italic; }
.reviewer-profile-zone { display: flex; align-items: center; gap: 15px; border-top: 1px solid #f1f5f9; padding-top: 20px; }
.reviewer-dynamic-avatar { width: 50px; height: 50px; background: linear-gradient(135deg, #9b5de5 0%, #7b2cbf 100%); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; box-shadow: 0 4px 10px rgba(155, 93, 229, 0.2); }
.reviewer-meta-data h4 { font-size: 16px; font-weight: 700; color: #120e25; margin-bottom: 2px; }
.reviewer-meta-data span { font-size: 12px; color: #94a3b8; font-weight: 600; text-transform: uppercase; }

/* ==========================================================================
   🔑 NEW MODULE: AUTHENTICATION MODULE ARCHITECTURE (login.php)
   ========================================================================== */
.auth-page-body {
    background: radial-gradient(circle at 15% 15%, rgba(155, 93, 229, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 85% 85%, rgba(123, 44, 191, 0.04) 0%, transparent 50%), #090615;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-master-wrapper {
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
}

.auth-glass-container {
    background: rgba(18, 14, 37, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 32px;
    padding: 55px 45px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-glass-container:hover {
    border-color: rgba(155, 93, 229, 0.3);
    box-shadow: 0 40px 90px rgba(155, 93, 229, 0.12), 0 30px 70px rgba(0, 0, 0, 0.4);
}

/* Auth Header Configuration */
.auth-brand-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo {
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
}

.auth-logo span {
    color: var(--accent-purple);
    text-shadow: 0 0 15px var(--purple-glow);
}

.auth-brand-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.auth-brand-header h2 span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #b77eff 0%, #9b5de5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-brand-header p {
    font-size: 14.5px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Form Structural Engine */
.auth-secure-form {
    display: flex;
    flex-direction: column;
}

.auth-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.auth-input-group label {
    font-size: 13px;
    font-weight: 700;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.auth-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-forgot-link {
    font-size: 13px;
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-forgot-link:hover {
    color: #b77eff;
    text-decoration: underline;
}

.auth-input-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 22px;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.auth-input-group input::placeholder {
    color: #475569;
}

.auth-input-group input:focus {
    outline: none;
    background: rgba(18, 14, 37, 0.8);
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px rgba(155, 93, 229, 0.2);
}

/* Premium Checkbox Customizer */
.auth-utility-row {
    margin-bottom: 35px;
}

.auth-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 14px;
    color: #94a3b8;
    user-select: none;
    font-weight: 500;
}

.auth-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.auth-checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.auth-checkbox-container:hover input ~ .auth-checkmark {
    border-color: var(--accent-purple);
}

.auth-checkbox-container input:checked ~ .auth-checkmark {
    background-color: var(--accent-purple);
    border-color: transparent;
}

.auth-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.auth-checkbox-container input:checked ~ .auth-checkmark::after {
    display: block;
}

/* Submission Trigger Button */
.btn-auth-execute {
    background: linear-gradient(135deg, #9b5de5 0%, #7b2cbf 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 20px;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(155, 93, 229, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-auth-execute:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(155, 93, 229, 0.5);
    background: linear-gradient(135deg, #a86ffa 0%, #8c43d9 100%);
}

.auth-footer-gate {
    text-align: center;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

.auth-footer-gate p {
    font-size: 13.5px;
    color: #64748b;
}

.auth-footer-gate a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
    transition: color 0.2s ease;
}

.auth-footer-gate a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

/* ==========================================================================
   🌙 DARK THEME FOOTER
   ========================================================================== */
footer { background: var(--bg-panel); border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 80px 8% 30px 8%; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 50px; margin-bottom: 50px; }
.footer-col h3 { color: var(--text-light); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; position: relative; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--accent-purple); }
.footer-col p, .footer-col ul { color: #94a3b8; font-size: 14px; line-height: 1.9; list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #94a3b8; text-decoration: none; transition: all 0.3s; }
.footer-col ul li a:hover { color: var(--accent-purple); padding-left: 6px; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: #64748b; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* ==========================================================================
   📱 ULTRA RESPONSIVE MATRIX (Mobile Optimization)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-section, .reservation-wrapper { flex-direction: column; gap: 40px; }
    .hero-content h1 { font-size: 44px; text-align: center; letter-spacing: -1px; }
    .menu-header h2, .reservation-header h2, .gallery-header h2, .reviews-premium-header h1 { font-size: 36px; }
    .centered-photo-matrix, .reviews-master-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
    .gallery-img-card.wide { grid-column: span 1; }
    .reservation-info-box { width: 100%; }
    .hero-content { max-width: 100%; text-align: center; }
    .cta-group { justify-content: center; }
    .hero-image-container { width: 100%; height: 380px; }
}

@media (max-width: 768px) {
    nav { flex-direction: column; gap: 20px; padding: 20px; }
    .nav-links a { margin: 0 15px; font-size: 16px; }
    .menu-row-card, .menu-row-card:nth-child(even) { flex-direction: column; }
    .menu-row-img { height: 230px; }
    .menu-row-content { padding: 25px; }
    .menu-row-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
    .form-row-twin { flex-direction: column; gap: 0; }
    .reservation-form-card { padding: 25px; }
    .auth-glass-container { padding: 40px 25px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 34px; }
    .menu-header h2, .reservation-header h2, .gallery-header h2, .reviews-premium-header h1 { font-size: 28px; }
    .menu-section-title { font-size: 20px; }
    .gallery-container, .reviews-page-wrapper { padding: 50px 4%; }
    .centered-photo-matrix, .reviews-master-grid { grid-template-columns: 1fr; }
    .gallery-img-card.tall { grid-row: span 1; }
    .img-overlay-content { padding: 20px; opacity: 1; transform: translateY(0); }
    .gallery-img-card::after { opacity: 1; }
    .auth-brand-header h2 { font-size: 30px; }
}
/* Staff Login link ko header mein white karne ke liye */
.main-executive-header .nav-links-list a[href*="staff-login"], 
.main-executive-header .nav-links-list a:last-child,
.executive-nav-matrix a[href*="login"] {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Hover karne par halka sa effect */
.main-executive-header .nav-links-list a[href*="staff-login"]:hover,
.executive-nav-matrix a[href*="login"]:hover {
    color: #9b5de5 !important; /* Aapka theme purple color */
    opacity: 1;
}