/* 
  Silver Spoon Restaurant - Luxury Royal Theme
  Primary Palette: Deep Midnight (#090d16), Royal Gold (#e5c158, #f3d068)
*/

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

:root {
    --bg-main: #080c14;
    --bg-surface: #0f1624;
    --bg-surface-elevated: #162032;
    --bg-card: rgba(22, 32, 50, 0.7);
    --bg-glass: rgba(15, 22, 36, 0.75);
    
    --accent-gold: #f3c649;
    --accent-gold-light: #ffe596;
    --accent-gold-dark: #c8971f;
    --gold-gradient: linear-gradient(135deg, #ffe082 0%, #e5b331 50%, #b8860b 100%);
    --gold-glow: 0 0 25px rgba(243, 198, 73, 0.35);

    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;

    --border-color: rgba(243, 198, 73, 0.18);
    --border-hover: rgba(243, 198, 73, 0.45);

    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --banner-height: 38px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
}

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

/* Discount Announcement Bar */
.discount-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--banner-height);
    background: linear-gradient(90deg, #b91c1c, #dc2626, #d97706, #dc2626, #b91c1c);
    background-size: 300% 100%;
    animation: gradientBanner 8s ease infinite;
    color: #ffffff;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
}

@keyframes gradientBanner {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: 1280px;
    padding: 0 1rem;
}

.banner-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    flex-grow: 1;
}

.banner-text strong {
    color: #fff;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-right: 6px;
}

.banner-close {
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.85;
    transition: var(--transition-smooth);
    line-height: 1;
    padding: 2px 8px;
    border-radius: 50%;
}

.banner-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

body.banner-hidden .discount-banner {
    display: none;
}

body.banner-hidden .navbar {
    top: 0;
}

/* Typography Headings */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 3rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

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

.section-title.left-align::after {
    margin-left: 0;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5.5rem 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: var(--banner-height);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(8, 12, 20, 0.95);
    padding: 0.4rem 5%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-bottom-color: rgba(243, 198, 73, 0.25);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-logo {
    height: 38px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.8px;
    line-height: 1.1;
}

.brand-tagline {
    font-size: 0.6rem;
    color: var(--accent-gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 1.4rem;
    align-items: center;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.2rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

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

.nav-cta-btn {
    padding: 0.4rem 1rem;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    color: var(--accent-gold);
    font-weight: 600;
    background: rgba(243, 198, 73, 0.08);
    transition: var(--transition-smooth);
    text-decoration: none;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-cta-btn:hover {
    background: var(--gold-gradient);
    color: #080c14;
    box-shadow: var(--gold-glow);
    border-color: transparent;
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    padding: 0.2rem 0.4rem;
    border-radius: 20px;
    margin-left: 0.4rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.25rem 0.55rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    color: var(--accent-gold);
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: #080c14;
    box-shadow: 0 2px 8px rgba(243, 198, 73, 0.4);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 2.5px;
    background: var(--accent-gold);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/hero_background_food.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: calc(var(--banner-height) + 80px);
    padding-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(9, 13, 22, 0.72) 0%, rgba(8, 12, 20, 0.94) 85%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 960px;
    padding: 0 1.5rem;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 22, 36, 0.85);
    border: 1px solid var(--accent-gold);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    box-shadow: var(--gold-glow);
    backdrop-filter: blur(10px);
}

.badge-top {
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-value {
    color: #080c14;
    background: var(--gold-gradient);
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

.badge-date {
    color: var(--accent-gold);
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-top-text {
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.2rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 780px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #080c14;
    box-shadow: 0 4px 20px rgba(229, 179, 49, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 179, 49, 0.6);
}

.btn-outline-gold {
    background: rgba(15, 22, 36, 0.6);
    color: #ffffff;
    border: 1.5px solid var(--accent-gold);
    backdrop-filter: blur(8px);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: #080c14;
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.btn-red {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.btn-yellow {
    background: var(--gold-gradient);
    color: #080c14;
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.pulse-btn {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(243, 198, 73, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(243, 198, 73, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 198, 73, 0); }
}

/* Services Section */
.services-section {
    background: var(--bg-surface);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.delivery-badge {
    margin-top: 1.2rem;
    padding: 0.6rem 1rem;
    background: rgba(243, 198, 73, 0.08);
    border: 1px dashed var(--accent-gold);
    border-radius: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.88rem;
    width: 100%;
}

/* GoldBG Integration Showcase Banner */
.gold-showcase-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-surface) 100%);
    overflow: hidden;
}

.gold-banner-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1 border solid var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.gold-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/GoldBG.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: luminosity;
    transition: var(--transition-smooth);
}

.gold-banner-card:hover .gold-banner-bg {
    opacity: 0.45;
    transform: scale(1.02);
}

.gold-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 12, 20, 0.92) 0%, rgba(15, 22, 36, 0.85) 60%, rgba(243, 198, 73, 0.15) 100%);
    z-index: 1;
}

.gold-banner-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gold-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gold-banner-title {
    font-size: 2.8rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.gold-banner-desc {
    color: #cbd5e1;
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gold-banner-highlights {
    position: relative;
    z-index: 2;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    border-left: 1px solid rgba(243, 198, 73, 0.2);
}

.gold-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(15, 22, 36, 0.65);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.gold-feature-item:hover {
    border-color: var(--accent-gold);
    transform: translateX(6px);
}

.gold-icon {
    font-size: 1.6rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    line-height: 1;
}

.gold-feature-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.gold-feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Menu Section */
.menu-section {
    background: var(--bg-main);
    position: relative;
}

.menu-controls {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.search-box-wrap {
    position: relative;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.menu-search-input {
    width: 100%;
    padding: 1.1rem 1.5rem 1.1rem 3.2rem;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-color);
    border-radius: 35px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.menu-search-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: var(--gold-glow);
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--accent-gold);
    pointer-events: none;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-tab {
    padding: 0.65rem 1.4rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.category-tab:hover, .category-tab.active {
    background: var(--gold-gradient);
    color: #080c14;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(229, 179, 49, 0.4);
    transform: translateY(-2px);
}

.menu-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    background: var(--bg-surface-elevated);
    padding: 1rem 2rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: #cbd5e1;
    font-weight: 500;
}

.legend-badge-halal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 900;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.8rem;
}

.menu-item-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-item-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.menu-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.item-id-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(243, 198, 73, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.item-name {
    font-size: 1.25rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.item-price {
    font-size: 1.35rem;
    color: var(--accent-gold);
    font-weight: 800;
    white-space: nowrap;
}

.item-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.menu-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

.add-to-cart-btn {
    background: var(--gold-gradient);
    color: #080c14;
    border: none;
    padding: 0.6rem 1.3rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.add-to-cart-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 4px 15px rgba(243, 198, 73, 0.5);
}

.menu-download-box {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    text-align: center;
}

.menu-download-box h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.menu-download-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Allergen Info Box */
.allergen-info-box {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--bg-surface-elevated);
    border-left: 4px solid var(--accent-gold);
    border-radius: 12px;
}

.allergen-info-box h4 {
    color: var(--accent-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.allergen-info-box p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Catering & About Sections */
.about-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.image-accent {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-gold);
    border-radius: 24px;
    pointer-events: none;
    opacity: 0.6;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-quote {
    background: var(--bg-surface-elevated);
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid var(--accent-gold);
    margin: 1.8rem 0;
    position: relative;
}

.about-quote p {
    font-style: italic;
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 1.6;
}

.quote-author {
    color: var(--accent-gold);
    font-weight: 700;
    text-align: right;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.92rem;
}

/* Footer Section */
.footer-section {
    background: #05080e;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 110px;
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-brand-sub {
    color: #cbd5e1;
    font-size: 1.05rem;
    margin-top: 0.4rem;
}

.footer-contact h3, .footer-hours h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
}

.footer-contact h3::after, .footer-hours h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    line-height: 1.4;
}

.contact-detail {
    color: #e2e8f0;
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-detail a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dashed var(--accent-gold);
    transition: var(--transition-smooth);
}

.contact-detail a:hover {
    color: var(--accent-gold);
}

.hours-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 18px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.95rem;
}

.hours-time {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.95rem;
}

.hours-highlight {
    background: rgba(243, 198, 73, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* Floating Cart Trigger */
.cart-float-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    background: var(--gold-gradient);
    color: #080c14;
    padding: 0.85rem 1.6rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(243, 198, 73, 0.4);
    z-index: 990;
    transition: var(--transition-smooth);
    font-weight: 800;
}

.cart-float-btn:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 198, 73, 0.6);
}

.cart-icon {
    font-size: 1.3rem;
}

.cart-count {
    background: #080c14;
    color: var(--accent-gold);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 900;
}

/* Cart Drawer Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 440px;
    max-width: 90vw;
    height: 100vh;
    background: #0d1320;
    border-left: 1px solid var(--border-hover);
    z-index: 1200;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    max-height: 100vh;
}

/* Custom Scrollbar for Cart Sidebar */
.cart-sidebar::-webkit-scrollbar {
    width: 6px;
}

.cart-sidebar::-webkit-scrollbar-track {
    background: rgba(8, 12, 20, 0.8);
}

.cart-sidebar::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 3px;
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1190;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-header {
    padding: 1.5rem 1.8rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    line-height: 1;
}

.close-cart:hover {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.empty-msg {
    color: var(--text-muted);
    text-align: center;
    margin-top: 3rem;
    font-size: 1.05rem;
}

.cart-item {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h4 {
    color: #ffffff;
    font-size: 0.98rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.2rem;
}

.cart-item-info p {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.92rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface-elevated);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.qty-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    color: var(--accent-gold);
}

.customer-info-form {
    padding: 1.5rem 1.8rem;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(8, 12, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(243, 198, 73, 0.2);
}

.cart-footer {
    padding: 1.5rem 1.8rem;
    background: #090d16;
    border-top: 1px solid var(--border-color);
}

.cart-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.breakdown-row.discount {
    color: var(--accent-gold);
    font-weight: 600;
}

.breakdown-row.total {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.6rem;
    margin-top: 0.4rem;
}

.whatsapp-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    padding: 1rem;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

/* Menu Image Gallery (menu1.jpeg & menu2.jpeg) */
.menu-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.menu-img-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-img-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.menu-img-preview {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 12px;
    background: #05080e;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.menu-img-card:hover .menu-img-preview {
    transform: scale(1.02);
}

.menu-img-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8rem;
}

/* ==========================================================================
   Responsive Mobile & Tablet Media Queries
   ========================================================================== */

@media (max-width: 992px) {
    .gold-banner-card {
        grid-template-columns: 1fr;
    }

    .gold-banner-highlights {
        border-left: none;
        border-top: 1px solid rgba(243, 198, 73, 0.2);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 3.5rem 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: calc(var(--banner-height) + 50px);
        left: 0;
        width: 100%;
        background: rgba(8, 12, 20, 0.98);
        flex-direction: column;
        padding: 1.8rem 1.5rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        align-items: stretch;
        text-align: center;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta-btn {
        justify-content: center;
        padding: 0.6rem 1rem;
    }

    .hero-section {
        min-height: 85vh;
        padding-top: calc(var(--banner-height) + 60px);
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        line-height: 1.6;
        margin-bottom: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        padding: 0.75rem 1.4rem;
        font-size: 0.88rem;
    }

    .discount-badge {
        padding: 0.3rem 0.8rem;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .badge-top, .badge-value, .badge-date {
        font-size: 0.78rem;
    }

    .section-title-wrap {
        margin-bottom: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.78rem;
        letter-spacing: 2px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.8rem 1.4rem;
    }

    .gold-banner-card {
        border-radius: 20px;
    }

    .gold-banner-content {
        padding: 2rem 1.4rem;
    }

    .gold-banner-title {
        font-size: 1.9rem;
    }

    .gold-banner-desc {
        font-size: 0.95rem;
    }

    .gold-banner-highlights {
        padding: 1.5rem 1.2rem;
    }

    /* Scrollable category filter tabs on mobile */
    .category-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.6rem;
        scrollbar-width: none;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        flex-shrink: 0;
        padding: 0.5rem 1.1rem;
        font-size: 0.84rem;
    }

    .menu-search-input {
        padding: 0.9rem 1.2rem 0.9rem 2.8rem;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 1rem;
        font-size: 1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .menu-item-card {
        padding: 1.4rem;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .item-price {
        font-size: 1.2rem;
    }

    .menu-img-preview {
        height: 280px;
    }

    .about-img {
        height: 300px;
    }

    /* Floating Cart CTA Button on Mobile - Compact & Left Aligned */
    .cart-float-btn {
        bottom: 2.2rem;
        left: 1rem;
        right: auto;
        padding: 0.48rem 0.88rem;
        font-size: 0.8rem;
        border-radius: 30px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
        gap: 6px;
    }

    .cart-icon {
        font-size: 1rem;
    }

    .cart-count {
        width: 19px;
        height: 19px;
        font-size: 0.72rem;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-surface-elevated);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.gallery-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.2) 0%, rgba(8, 12, 20, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    font-size: 1.8rem;
    color: #080c14;
    background: var(--gold-gradient);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(243, 198, 73, 0.5);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

@media (max-width: 768px) {
    :root {
        --banner-height: 34px;
    }

    .discount-banner {
        height: var(--banner-height);
        padding: 0 0.4rem;
    }

    .banner-content {
        width: 100%;
        padding: 0 0.2rem;
    }

    .banner-text {
        font-size: 0.74rem;
        letter-spacing: 0px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .banner-text strong {
        font-size: 0.68rem;
        padding: 0.1rem 0.35rem;
        margin-right: 3px;
    }

    .banner-close {
        font-size: 1.1rem;
        padding: 0 4px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    :root {
        --banner-height: 30px;
    }

    .banner-text {
        font-size: 0.68rem;
    }

    .banner-text strong {
        padding: 0.08rem 0.25rem;
        font-size: 0.65rem;
    }

    .navbar {
        padding: 0.4rem 4%;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-logo {
        height: 32px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cart-sidebar {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
    }

    .cart-header, .cart-items, .customer-info-form, .cart-footer {
        padding: 1.1rem;
    }

    .cart-float-btn {
        bottom: 2.2rem;
        left: 0.8rem;
        right: auto;
        padding: 0.42rem 0.8rem;
        font-size: 0.75rem;
        gap: 5px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 220px;
    }
}