/* 
  LAIBN FLAVOR JUNCTION - PREMIUM CUSTOMER FRONTEND
  Design System: Luxury Dark Mode
*/

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

:root {
    --bg-primary: #0B0B0B;
    --bg-surface: #111111;
    --bg-surface-light: #1A1A1A;
    --accent: #FF7A00;
    --accent-secondary: #FF7A00;
    --text-primary: #FFFFFF;
    --text-secondary: #BDBDBD;
    --text-muted: #757575;
    --glass-bg: rgba(17, 17, 17, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-xl: 1.5rem;
    --border-radius-lg: 1rem;
    --border-radius-md: 0.5rem;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --ivory: #FDF5E6;
    --gold: #FF7A00;
    --dark-glass: rgba(11, 11, 11, 0.7);
    --light-glass: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .premium-font {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
    border: 2px solid var(--bg-surface);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-secondary);
}

/* Layout Containers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-accent { color: var(--accent); }
.text-gold { color: var(--accent-secondary); }
.text-secondary { color: var(--text-secondary); }
.premium-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #FF9E4D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation Redesign */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: top 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}

header.header-scrolled {
    background: var(--dark-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
}

/* ── Store Closed — Premium Ribbon ─────────────── */
@keyframes bannerPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(231,76,60,0.5); }
    50%       { box-shadow: 0 4px 30px rgba(231,76,60,0.85); }
}

@keyframes shimmerBanner {
    0%   { left: -100%; }
    100% { left: 200%; }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1;   transform: scale(1);   }
    50%       { opacity: 0.25; transform: scale(0.55); }
}

#storeClosedBanner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    z-index: 9999;
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 122, 0, 0.25);
    box-shadow: 0 1px 0 rgba(255,122,0,0.08) inset,
                0 4px 30px rgba(0,0,0,0.55);
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
    padding: 0 2rem;
    overflow: hidden;
}

/* Animated shimmer line */
#storeClosedBanner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 122, 0, 0.06) 40%,
        rgba(255, 122, 0, 0.12) 50%,
        rgba(255, 122, 0, 0.06) 60%,
        transparent 100%);
    animation: shimmerBanner 4s ease-in-out infinite;
    pointer-events: none;
}

body.store-closed #storeClosedBanner {
    display: flex;
}

/* Push header below the banner */
body.store-closed header {
    top: 48px !important;
}

/* Dot pulse indicators inside banner */
.banner-dot {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 1.8s ease-in-out infinite;
}

.banner-dot:last-child {
    animation-delay: 0.9s;
}

.nav-wrapper {
    height: 100px;
    display: grid;
    grid-template-columns: 280px 1fr 180px;
    align-items: center;
    transition: var(--transition);
}

header.header-scrolled .nav-wrapper {
    height: 70px;
}


.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    white-space: nowrap;
    letter-spacing: 2px;
}

/* Move logo more to the left on big screens */
@media (min-width: 1400px) {
    header .container {
        max-width: 95%;
    }
}

.logo span {
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
}

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

.nav-menu-socials {
    display: flex;
    gap: 1.25rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--light-glass);
}

.nav-menu-socials .nav-link {
    font-size: 1rem;
    padding-bottom: 0;
}

.nav-menu-socials .nav-link::after {
    display: none;
}
.nav-link {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.btn-icon {
    position: relative;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

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

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

/* Hero Section Redesign */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, var(--bg-primary) 100%),
                linear-gradient(to bottom, transparent 40%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.05);
    filter: brightness(0.85) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Dual CTA Containers */
.hero-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.luxury-card {
    background: var(--bg-primary);
    padding: 0.5rem;
    border-radius: 0;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 122, 0, 0.1);
    overflow: hidden;
}

.luxury-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.box-reserve .luxury-card-bg { background-image: url('../images/box-reserve.png'); }
.box-order .luxury-card-bg { background-image: url('../images/box-order.png'); }

.luxury-card:hover .luxury-card-bg {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Clear lingering pseudo-element backgrounds */

.luxury-card-inner {
    border: 1px solid rgba(255, 122, 0, 0.4);
    padding: 3.5rem 2.5rem;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(11, 11, 11, 0.3);
    backdrop-filter: blur(1px);
    background-image: radial-gradient(rgba(255, 122, 0, 0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    z-index: 2;
}

/* Ornate Design Elements will be handled by the global pseudo-elements below */

/* Ornate Corners */
.luxury-card::before, 
.luxury-card::after,
.luxury-card-inner::before,
.luxury-card-inner::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    z-index: 5;
    transition: 0.5s ease;
    pointer-events: none;
}

/* Top Left */
.luxury-card::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

/* Top Right */
.luxury-card::after {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

/* Bottom Left */
.luxury-card-inner::before {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
    width: 30px;
    height: 30px;
}

/* Bottom Right */
.luxury-card-inner::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
    width: 30px;
    height: 30px;
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 
                inset 0 0 50px rgba(255, 122, 0, 0.05);
}

.luxury-card:hover::before,
.luxury-card:hover::after {
    width: 60px;
    height: 60px;
}

.luxury-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.luxury-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
}

.luxury-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.luxury-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

/* Category Slider */
.category-rail {
    position: sticky;
    top: 80px;
    z-index: 900;
    background: var(--bg-primary);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.category-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

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

.category-chip {
    padding: 0.75rem 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-chip:hover, .category-chip.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-premium);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.btn-add {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--bg-surface-light);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

/* Premium Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--bg-primary);
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Mobile Bottom Nav */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    z-index: 1001;
    justify-content: space-around;
    align-items: center;
    padding: 0 1rem;
    border-radius: 20px 20px 0 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-muted);
}

.nav-item.active {
    color: var(--accent);
}

.nav-item i {
    font-size: 1.4rem;
}

.nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Cart Drawer (Right Side Desktop / Bottom Sheet Mobile) */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--bg-surface);
    z-index: 2000;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-primary);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-img { width: 100%; opacity: 0.7; transform: scale(1); }
    .hero-content { max-width: 100%; text-align: center; margin: 0 auto; }
    .hero-cta-grid { grid-template-columns: 1fr 1fr; max-width: 900px; gap: 1.5rem; }
    .nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
    .nav-socials, .nav-center { display: none; }
    .toggle-mobile-menu { display: block !important; }
    .logo { font-size: 1.2rem; }
    .hero-title { font-size: 3rem; margin-bottom: 2rem; }
    .luxury-card-inner { padding: 2rem 1.5rem; }
    .luxury-card h3 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-icon:not(.btn-cart):not(.toggle-mobile-menu) { display: none; }
    .bottom-nav { display: flex; }
    body { padding-bottom: 80px; }
    header { height: 70px; }
    .nav-wrapper { height: 70px; display: flex; justify-content: space-between; align-items: center; }
    .logo { font-size: 1rem; }
    .hero-title { font-size: 2rem; margin-bottom: 1.5rem; }
    .hero { height: auto; padding: 80px 0; }
    .hero-cta-grid { grid-template-columns: 1fr 1fr; max-width: 700px; gap: 1rem; }
    .luxury-card { padding: 0.25rem; }
    .luxury-card-inner { padding: 1.5rem 1rem; }
    .luxury-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
    .luxury-card p { font-size: 0.85rem; }
    
    .cart-drawer { 
        width: 100%; 
        right: 0; 
        top: auto; 
        bottom: -100%; 
        height: 90vh; 
        border-radius: 30px 30px 0 0; 
    }
    .cart-drawer.open { bottom: 0; }
    .hero-content { padding: 1rem; }
}

@media (max-width: 600px) {
    .hero-cta-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.8rem; }
    .luxury-card-inner { padding: 2.5rem 1.5rem; }
    .luxury-card h3 { font-size: 1.8rem; }
}

/* ==========================================================================
   About Page Styles
   ========================================================================== */

.about-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.about-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.5);
}

.about-content {
    padding: 100px 0;
    background: var(--bg-primary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.story-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
    border: 1px solid var(--accent);
    padding: 1rem;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    margin: 6rem 0;
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.highlight-item h4 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--bg-surface);
    margin-top: 8rem;
}

.cta-box {
    padding: 5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--glass-border);
    transition: var(--transition);
}

.cta-box:last-child { border-right: none; }

.cta-box:hover {
    background: var(--accent);
}

.cta-box:hover * {
    color: var(--bg-primary);
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-box p {
    margin-bottom: 2rem;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 3rem; }
    .story-text h2 { font-size: 2.5rem; }
    .service-grid { grid-template-columns: 1fr; }
    .footer-cta { grid-template-columns: 1fr; }
    .cta-box { border-right: none; border-bottom: 1px solid var(--glass-border); }
}


/* ==========================================================================
   Luxury Footer Styles
   ========================================================================== */

.luxury-footer {
    background: #080808;
    color: var(--text-primary);
    padding: 100px 0 0;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.2fr 1.2fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.brand-tagline {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-5px);
}

.luxury-footer h4 {
    color: var(--accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 10px;
}

.location-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item i {
    color: var(--accent);
    margin-top: 5px;
}

.location-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.location-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-number {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-email {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    background: #050505;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .luxury-footer { padding-top: 60px; }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-legal a {
        margin: 0 1rem;
    }
}

/* -----------------------------------------
   LUXURY LIGHT MODE OVERRIDES
----------------------------------------- */
body.light-theme {
    --bg-primary: #FAF9F6; /* Luxury Warm White */
    --bg-surface: #FFFFFF; /* Soft Clean White */
    --bg-surface-light: #F4F1EA; /* Elegant Light Cream */
    --accent: #FF7A00; /* Vibrant Orange Accent */
    --accent-secondary: #D4AF37; /* Pure Luxury Gold */
    --text-primary: #1C1B19; /* High-contrast Warm Charcoal */
    --text-secondary: #5C5A56; /* Subtle Soft Gray */
    --text-muted: #9E9A94; /* Light Accent Muted Gray */
    --glass-bg: rgba(250, 249, 246, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    --shadow-premium: 0 10px 30px rgba(255, 122, 0, 0.06);
    --ivory: #1C1B19;
    --gold: #D4AF37;
    --dark-glass: rgba(255, 255, 255, 0.9);
    --light-glass: rgba(0, 0, 0, 0.04);
}

/* Light Theme Transition Polish */
body, header, section, div, h1, h2, h3, h4, p, span, a, button, input, textarea {
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override all inline color styles for text elements, inputs and dropdowns */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6,
body.light-theme .premium-font,
body.light-theme .nav-link,
body.light-theme .btn-icon,
body.light-theme label,
body.light-theme input,
body.light-theme select,
body.light-theme select option,
body.light-theme textarea {
    color: var(--text-primary) !important;
}

/* Perfect readable input backgrounds in light theme */
body.light-theme input,
body.light-theme select,
body.light-theme textarea {
    background-color: var(--bg-surface) !important;
    border-color: var(--glass-border) !important;
}

/* Specific Light Theme Elements Polish */
body.light-theme header {
    background: rgba(250, 249, 246, 0.85) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}
body.light-theme header.header-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
body.light-theme .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, var(--bg-primary) 98%) !important;
    opacity: 1 !important;
}
body.light-theme .hero-title {
    color: #FFFFFF !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}
body.light-theme .hero-title .text-gold {
    color: var(--accent) !important;
}
body.light-theme .luxury-card {
    border-color: rgba(255, 122, 0, 0.25) !important;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.05) !important;
}
body.light-theme .luxury-card-inner {
    border-color: var(--accent) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    background-image: radial-gradient(rgba(255, 122, 0, 0.12) 1px, transparent 1px) !important;
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.15) !important;
    backdrop-filter: blur(12px) !important;
}
body.light-theme .luxury-card h3 {
    color: var(--text-primary) !important;
}
body.light-theme .luxury-card p {
    color: var(--text-secondary) !important;
    font-weight: 500 !important;
}
body.light-theme .luxury-btn {
    background-color: var(--accent) !important;
    color: #FFFFFF !important;
    border-color: var(--accent) !important;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.2) !important;
    font-weight: 700 !important;
}
body.light-theme .luxury-btn:hover {
    background-color: var(--accent-secondary) !important;
    border-color: var(--accent-secondary) !important;
    color: #FFFFFF !important;
}
body.light-theme .luxury-card:hover {
    box-shadow: 0 30px 60px rgba(255, 122, 0, 0.22) !important;
}
body.light-theme .testimonial-card {
    background: var(--bg-surface) !important;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.04) !important;
}
body.light-theme .about-hero, 
body.light-theme .menu-hero, 
body.light-theme .gallery-hero {
    background-color: var(--bg-surface-light) !important;
}
body.light-theme .success-box {
    background: var(--bg-surface) !important;
    box-shadow: 0 20px 50px rgba(255, 122, 0, 0.1) !important;
}
body.light-theme .mobile-menu {
    background: var(--bg-surface) !important;
}
body.light-theme .brochure-card {
    background-color: var(--bg-surface) !important;
    border-color: var(--accent) !important;
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.1) !important;
}
body.light-theme .brochure-inner-border {
    border-color: rgba(0, 0, 0, 0.06) !important;
}
body.light-theme .brochure-item-name {
    color: var(--text-primary) !important;
}
body.light-theme .brochure-item-lead-dots {
    border-bottom-color: rgba(0, 0, 0, 0.15) !important;
}
body.light-theme .brochure-footer {
    border-top-color: rgba(0, 0, 0, 0.08) !important;
}
body.light-theme .brochure-filter-btn {
    border-color: rgba(0, 0, 0, 0.08) !important;
    color: var(--text-secondary) !important;
}
body.light-theme .brochure-filter-btn.active {
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

