/**
 * The Savoury Embassy - Main Stylesheet
 * Clean, modern design inspired by Wasabi
 */

/* ===== CSS Variables ===== */
:root {
    --primary: #5C3A2E;
    --primary-dark: #472921;
    --primary-light: #7A5140;
    --secondary: #C9A227;
    --secondary-dark: #A88820;
    --accent: #C9A227;
    --accent-light: #D4B84A;
    --dark: #472921;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --border: #e5e7eb;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(54, 157, 134, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== Nut-Free Top Bar ===== */
.nut-free-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.topbar-nut {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-weight: 600;
}

.topbar-nut i {
    font-size: 0.9rem;
}

.topbar-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
}

.topbar-countdown i {
    color: #C9A227;
    margin-right: 2px;
}

.topbar-countdown strong {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    padding: 1px 6px;
    border-radius: 4px;
    margin: 0 1px;
    min-width: 26px;
    display: inline-block;
    text-align: center;
}

.topbar-cd-date {
    color: rgba(255,255,255,0.4);
    margin-left: 4px;
}

.topbar-countdown.opened {
    color: #22c55e;
}

.topbar-countdown.opened strong {
    background: rgba(34,197,94,0.15);
    color: #22c55e;
}

.topbar-divider {
    color: rgba(255,255,255,0.2);
    font-size: 0.8rem;
}

.topbar-options {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    font-weight: 500;
}

.topbar-options i {
    color: #C9A227;
    font-size: 0.7rem;
    margin-right: 1px;
}

.topbar-dot {
    color: rgba(255,255,255,0.25);
    margin: 0 2px;
}

@media (max-width: 768px) {
    .topbar-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
    .topbar-cd-date { display: none; }
    .topbar-nut { font-size: 0.75rem; }
    .topbar-countdown { font-size: 0.75rem; }
    .topbar-countdown strong { font-size: 0.82rem; padding: 1px 4px; }
    .topbar-divider { display: none; }
    .topbar-options { display: none; }
}

/* ===== Header ===== */
.main-header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.0) 100%);
    box-shadow: none;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Logo switching - always white on dark header */
.logo-white { display: block; }
.logo-dark  { display: none; }

/* Nav link colours - always white on dark header */
.main-header .nav-list a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
}
.main-header .nav-list a:hover,
.main-header .nav-list a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.main-header .header-cta .theme-toggle {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
}
.main-header .header-cta .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}
.main-header .mobile-toggle span {
    background: #fff;
}

.nut-free-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-list a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
}

@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
}

.nav-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0;
    transition: var(--transition);
}

.nav-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #C9A227;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

.mobile-order-link {
    display: none;
}

.nav-order-link {
    color: #C9A227 !important;
    font-weight: 600 !important;
}

.nav-order-link:hover {
    background: rgba(201, 162, 39, 0.15) !important;
    color: #fff !important;
}

.nav-dropdown-menu li a i {
    width: 18px;
    text-align: center;
    color: var(--secondary);
}

[data-theme="dark"] .nav-dropdown-menu {
    background: var(--dark);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

[data-theme="dark"] .nav-dropdown-menu li a {
    color: #ddd;
}

[data-theme="dark"] .nav-dropdown-menu li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--secondary);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ===== Floating Social Links ===== */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
    font-size: 1.1rem;
}

.floating-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.floating-social a.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-social a.facebook:hover {
    background: #1877f2;
}

/* ===== Wasabi-Style Hero Section ===== */
.hero-wasabi {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fefefe 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-wasabi-inner {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Dishes */
.floating-dishes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-dish {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

.floating-dish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-dish.dish-1 {
    width: 220px;
    height: 220px;
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.floating-dish.dish-2 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 8%;
    animation-delay: 1s;
}

.floating-dish.dish-3 {
    width: 240px;
    height: 240px;
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.floating-dish.dish-4 {
    width: 160px;
    height: 160px;
    bottom: 10%;
    right: 5%;
    animation-delay: 0.5s;
}

.floating-dish.dish-5 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-dish.dish-5 {
    animation: float5 6s ease-in-out infinite;
}

@keyframes float5 {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(calc(-50% - 20px)) translateX(10px); }
}

/* Center Content */
.hero-wasabi-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 500px;
    padding: 60px 40px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-wasabi-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1;
}

.hero-wasabi-content h1 span {
    color: var(--secondary);
    display: block;
}

.hero-wasabi-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-wasabi-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: var(--white);
}

/* Responsive Wasabi Hero */
@media (max-width: 1200px) {
    .floating-dish.dish-1 { width: 180px; height: 180px; left: 2%; }
    .floating-dish.dish-2 { width: 150px; height: 150px; right: 2%; }
    .floating-dish.dish-3 { width: 200px; height: 200px; left: 2%; }
    .floating-dish.dish-4 { width: 140px; height: 140px; right: 2%; }
    .floating-dish.dish-5 { width: 170px; height: 170px; right: 5%; }
}

@media (max-width: 992px) {
    .floating-dishes { display: none; }
    .hero-wasabi {
        min-height: auto;
        padding: 140px 20px 60px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    .hero-wasabi-content {
        background: rgba(255,255,255,0.98);
        max-width: 100%;
    }
    .hero-wasabi-content h1 { font-size: 3rem; }
}

@media (max-width: 576px) {
    .hero-wasabi-content {
        padding: 40px 25px;
    }
    .hero-wasabi-content h1 { font-size: 2.5rem; }
    .hero-wasabi-buttons { flex-direction: column; }
    .hero-wasabi-buttons .btn { width: 100%; }
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero-slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.slide-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 100px 20px 80px;
}

.slide-content .hero-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.slide-content h1 span {
    color: var(--secondary);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 600px;
}

.slide-content .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--secondary);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--primary);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* White Slide Variant (Slide 1) */
.hero-slide-white {
    background: linear-gradient(180deg, #fefefe 0%, #f5f5f5 100%);
}

.hero-slide-white .slide-bg-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fefefe 0%, #f5f5f5 100%);
}

.hero-slide-white .floating-dishes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.hero-slide-white .floating-dish {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: float 6s ease-in-out infinite;
}

.hero-slide-white .floating-dish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-white .floating-dish.dish-1 {
    width: 220px;
    height: 220px;
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.hero-slide-white .floating-dish.dish-2 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 8%;
    animation-delay: 1s;
}

.hero-slide-white .floating-dish.dish-3 {
    width: 240px;
    height: 240px;
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.hero-slide-white .floating-dish.dish-4 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    right: 5%;
    animation-delay: 0.5s;
}

.hero-slide-white .floating-dish.dish-5 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
    animation: float5 6s ease-in-out infinite;
}

.hero-slide-white .slide-content-white {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 500px;
    padding: 50px 40px;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.hero-slide-white .slide-content-white .hero-logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 20px;
}

.hero-slide-white .slide-content-white p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 1;
}

.hero-slide-white .slide-content-white .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* White slide responsive */
@media (max-width: 1200px) {
    .hero-slide-white .floating-dish.dish-1 { width: 180px; height: 180px; left: 2%; }
    .hero-slide-white .floating-dish.dish-2 { width: 150px; height: 150px; right: 2%; }
    .hero-slide-white .floating-dish.dish-3 { width: 200px; height: 200px; left: 2%; }
    .hero-slide-white .floating-dish.dish-4 { width: 140px; height: 140px; right: 2%; }
    .hero-slide-white .floating-dish.dish-5 { width: 170px; height: 170px; right: 5%; }
}

@media (max-width: 992px) {
    .hero-slide-white .floating-dishes { display: none; }
    .hero-slide-white {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    .hero-slide-white .slide-bg-white {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    }
    .hero-slide-white .slide-content-white {
        background: rgba(255,255,255,0.98);
        max-width: 90%;
        padding: 40px 30px;
    }
    .hero-slide-white .slide-content-white .hero-logo { max-width: 200px; }
    .hero-logo { max-width: 220px; }
}

@media (max-width: 576px) {
    .hero-slide-white .slide-content-white {
        padding: 30px 20px;
    }
    .hero-slide-white .slide-content-white .hero-logo { max-width: 180px; }
    .hero-logo { max-width: 180px; }
    .hero-slide-white .slide-content-white .hero-buttons { flex-direction: column; }
    .hero-slide-white .slide-content-white .hero-buttons .btn { width: 100%; }
}

@media (max-width: 992px) {
    .hero-slider { padding-top: 100px; }
    .slide-content h1 { font-size: 3rem; }
    .slide-content p { font-size: 1.1rem; }
    .slider-arrow { display: none; }
}

@media (max-width: 576px) {
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; }
    .slide-content .hero-buttons .btn { width: 100%; }
}

/* Legacy Hero (keeping for reference) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    right: -50px;
    bottom: 0;
    width: 50%;
    max-width: 600px;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ===== Section Styles ===== */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.bg-light {
    background: var(--off-white);
}

.bg-primary {
    background: var(--primary);
}

/* ===== Menu Section ===== */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.filter-btn i {
    margin-right: 8px;
}

/* Dietary filters */
.dietary-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.dietary-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.dietary-filter input {
    accent-color: var(--primary);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.menu-card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-new {
    background: var(--secondary);
    color: var(--white);
}

.badge-popular {
    background: var(--accent);
    color: var(--white);
}

.badge-veg {
    background: #22c55e;
    color: var(--white);
}

.badge-vegan {
    background: #16a34a;
    color: var(--white);
}

.menu-card-content {
    padding: 25px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-card-title {
    font-size: 1.2rem;
    margin: 0;
}

.menu-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.menu-card-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.spice-level {
    display: flex;
    gap: 3px;
}

.spice-icon {
    color: var(--accent);
    font-size: 0.9rem;
}

.spice-icon.inactive {
    opacity: 0.2;
}

.dietary-icons {
    display: flex;
    gap: 8px;
}

.dietary-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
}

.dietary-icon.vegetarian {
    background: #22c55e;
}

.dietary-icon.vegan {
    background: #16a34a;
}

.dietary-icon.gluten-free {
    background: #eab308;
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: rgba(54, 157, 134, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* ===== Location Section ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.location-info h3 {
    margin-bottom: 25px;
}

.location-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.location-item i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.location-item-content h4 {
    margin-bottom: 5px;
}

.location-item-content p,
.location-item-content a {
    color: var(--text-light);
}

.opening-hours {
    background: var(--off-white);
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 30px;
}

.opening-hours h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.opening-hours h4 i {
    color: var(--primary);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.footer-links li i {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: white;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero-image { display: none; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section { padding: 40px 0; }
    .logo img { height: 50px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        padding: 15px;
    }
    .main-nav.active { display: block; }
    .main-nav .nav-list a { color: rgba(255, 255, 255, 0.85) !important; }
    .main-nav .nav-list a:hover,
    .main-nav .nav-list a.active { color: #fff !important; background: rgba(255,255,255,0.1) !important; }
    .nav-list { flex-direction: column; gap: 0; }
    .nav-list a { padding: 12px 15px; }
    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: transparent;
        backdrop-filter: none;
    }
    .nav-dropdown.open > .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown-menu li a { padding: 8px 15px; font-size: 0.85rem; color: rgba(255,255,255,0.7) !important; }
    .nav-dropdown-menu li a:hover { color: #C9A227 !important; }
    .nav-dropdown-divider { background: rgba(255,255,255,0.1); }
    .mobile-toggle { display: flex; }
    .header-cta .btn { display: none; }
    .mobile-order-link { display: block; }
    .mobile-order-link a {
        background: #C9A227 !important;
        color: #fff !important;
        border-radius: 10px !important;
        text-align: center;
        font-weight: 700 !important;
        margin-top: 8px;
    }
    .mobile-order-link a:hover {
        background: #b8911f !important;
    }

    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }

    .menu-grid { grid-template-columns: 1fr; }
    .menu-filters { gap: 8px; }
    .filter-btn { padding: 10px 20px; font-size: 0.9rem; }

    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social { justify-content: center; }

    .floating-social { right: 10px; }
    .floating-social a { width: 40px; height: 40px; }
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--off-white);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.theme-toggle:hover {
    border-color: var(--primary);
    background: rgba(92, 58, 46, 0.1);
}

.theme-toggle i {
    font-size: 1rem;
}

.theme-toggle .theme-text {
    display: none;
}

@media (min-width: 768px) {
    .theme-toggle .theme-text {
        display: inline;
    }
}

/* ===== Dark Mode ===== */
[data-theme="dark"] {
    --primary: #C9A227;
    --primary-dark: #A88820;
    --primary-light: #D4B84A;
    --secondary: #E8D5A3;
    --secondary-dark: #C9A227;
    --dark: #1a1a1a;
    --text: #f0f0f0;
    --text-light: #cccccc;
    --text-muted: #999999;
    --white: #2a2a2a;
    --off-white: #1f1f1f;
    --border: #444444;
}

[data-theme="dark"] body {
    background: #1a1a1a;
    color: #f0f0f0;
}

[data-theme="dark"] .main-header.scrolled {
    background: rgba(0, 0, 0, 0.92);
}

[data-theme="dark"] .nav-list a {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .nav-list a:hover,
[data-theme="dark"] .nav-list a.active {
    color: #C9A227;
    background: rgba(201, 162, 39, 0.15);
}

[data-theme="dark"] .theme-toggle {
    background: #333;
    border-color: #555;
    color: #f0f0f0;
}

[data-theme="dark"] .theme-toggle:hover {
    border-color: var(--primary);
    background: rgba(201, 162, 39, 0.2);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff;
}

[data-theme="dark"] .hero-wasabi {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

[data-theme="dark"] .hero-wasabi-content {
    background: rgba(42, 42, 42, 0.98);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

[data-theme="dark"] .hero-slide-white {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

[data-theme="dark"] .hero-slide-white .slide-bg-white {
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

[data-theme="dark"] .hero-slide-white .slide-content-white {
    background: rgba(42, 42, 42, 0.98);
}

[data-theme="dark"] .section-header p,
[data-theme="dark"] .about-content p,
[data-theme="dark"] .menu-card-desc {
    color: #aaaaaa;
}

[data-theme="dark"] .menu-card {
    background: #2a2a2a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .menu-card-price {
    color: var(--primary);
}

[data-theme="dark"] .filter-btn {
    background: #2a2a2a;
    border-color: #444;
    color: #f0f0f0;
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #1a1a1a;
}

[data-theme="dark"] .bg-light {
    background: #222;
}

[data-theme="dark"] .opening-hours {
    background: #333;
}

[data-theme="dark"] .hours-list li {
    border-bottom-color: #444;
}

[data-theme="dark"] .footer {
    background: #111;
}

[data-theme="dark"] .floating-social a {
    background: #2a2a2a;
    color: var(--primary);
}

[data-theme="dark"] .floating-social a:hover {
    background: var(--primary);
    color: #1a1a1a;
}

[data-theme="dark"] .nut-free-bar {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

[data-theme="dark"] .btn-outline-dark {
    color: #f0f0f0;
    border-color: #f0f0f0;
}

[data-theme="dark"] .btn-outline-dark:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

[data-theme="dark"] .mobile-toggle span {
    background: #f0f0f0;
}

/* Screen reader only - visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
