/* ====================================
   CSS Variables & Theme Setup
   ==================================== */
:root {
    --color-white: #ffffff;
    --color-gold: #ca9c5e;
    --color-dark: #0b1517;
    
    --bg-primary: var(--color-white);
    --bg-secondary: #f8f8f8;
    --bg-accent: var(--color-gold);
    --text-primary: var(--color-dark);
    --text-secondary: #4a4a4a;
    --text-accent: var(--color-gold);
    
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    --header-height: 100px;
    --header-height-scrolled: 70px;
    
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-theme="dark"] {
    --bg-primary: var(--color-dark);
    --bg-secondary: #1a2528;
    --text-primary: var(--color-white);
    --text-secondary: #c0c0c0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    transition: background-color 0.2s ease, color 0.2s ease;
}

* {
    max-width: 100%;
}

/* Custom smooth scroll with delay */
html.smooth-scroll {
    scroll-behavior: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

iframe {
    max-width: 100%;
    box-sizing: border-box;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ====================================
   Theme Toggle Button
   ==================================== */
.theme-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: absolute;
    right: 50px;
    margin-left: 0;
    z-index: 1002;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(202, 156, 94, 0.1);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

/* ====================================
   Header & Navigation
   ==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--bg-primary);
    z-index: 1000;
    transition: height 0.4s ease, background 0.2s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(11, 21, 23, 0.95);
}

.nav {
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.logo {
    height: 70px;
    transition: var(--transition-smooth);
    margin: 0 50px;
    flex-shrink: 0;
}

.header.scrolled .logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
    filter: brightness(0) saturate(100%);
    transition: filter 0.2s ease;
}

[data-theme="dark"] .logo img {
    filter: brightness(0) saturate(100%) invert(1);
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
}

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

/* All nav links on same level - no orbiting */

/* Contact button now styled like regular nav link */

/* ====================================
   Mobile Menu
   ==================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
    position: absolute;
    right: 50px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background: rgba(202, 156, 94, 0.1);
    border-color: rgba(202, 156, 94, 0.2);
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition-smooth);
    display: block;
}

/* X button when active - more elegant and clear */
.mobile-menu-btn.active {
    background: rgba(202, 156, 94, 0.15);
    border-color: var(--color-gold);
}

.mobile-menu-btn.active span {
    background: var(--color-gold);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, background 0.2s ease;
    z-index: 999;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(202, 156, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-content {
    padding: 120px 30px 60px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    height: 100%;
    justify-content: center;
}

.mobile-nav-link {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, color 0.2s ease;
    position: relative;
    padding: 10px 20px;
    color: var(--text-primary);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--color-gold);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.35s; }
.mobile-menu.active .mobile-nav-link:nth-child(6) { transition-delay: 0.4s; }

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

.mobile-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* ====================================
   Hero Section
   ==================================== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    max-width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 21, 23, 0.6) 0%, rgba(11, 21, 23, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-btn {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
    transition: var(--transition-smooth);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    z-index: -1;
    transition: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 0;
}

.hero-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(202, 156, 94, 0.4);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s, bounce 2s ease infinite 1.5s;
}

.scroll-indicator::before {
    content: '';
    width: 2px;
    height: 40px;
    background: var(--color-gold);
    display: block;
    margin: 0 auto 10px;
    animation: scrollLine 2s ease infinite;
}

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

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes scrollLine {
    0% { height: 0; }
    50% { height: 40px; }
    100% { height: 0; }
}

/* ====================================
   Section Base Styles
   ==================================== */
.section {
    padding: 120px 30px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .btn-reservation,
.section-header .btn-cta,
.section-header .btn-contact {
    margin-top: 20px;
    display: inline-block;
}

.section-label {
    font-family: var(--font-accent);
    font-size: 18px;
    color: var(--color-gold);
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    transition: color 0.2s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

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

/* Background variations */
.bg-light {
    background: var(--bg-primary);
}

.bg-dark {
    background: var(--bg-secondary);
}

.bg-gold {
    background: linear-gradient(135deg, rgba(202, 156, 94, 0.1) 0%, rgba(202, 156, 94, 0.05) 100%);
}

/* ====================================
   Highlights Section (Why Choose Us)
   ==================================== */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.highlight-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(202, 156, 94, 0.1);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1;
}

.highlight-card h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.highlight-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 968px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 60px auto 0;
    }
}

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

.story-text h3 {
    font-family: var(--font-accent);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.story-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.story-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
}

/* ====================================
   Featured Dishes Section
   ==================================== */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

@media (max-width: 1200px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dish-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    background: var(--bg-primary);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dish-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.dish-info {
    padding: 35px;
}

.dish-name {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.dish-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.dish-price {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--color-gold);
    font-weight: 600;
}

/* ====================================
   Testimonials Section
   ==================================== */
.testimonials-container {
    overflow: hidden;
    position: relative;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    align-items: center;
    transition: transform 0.8s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-primary);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    opacity: 0.3;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 22px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    padding-left: 60px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 80px;
    color: var(--color-gold);
    position: absolute;
    top: -10px;
    left: 0;
    font-family: Georgia, serif;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-top: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--color-gold);
}

/* ====================================
   Locations Section (Elevated Design)
   ==================================== */
.location-section {
    background: linear-gradient(135deg, rgba(202, 156, 94, 0.05) 0%, var(--bg-primary) 100%);
}

.location-section .container {
    max-width: 1400px;
}

.location-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    width: 100%;
}

/* Medium screens: stack all 3 vertically but keep them together */
@media (max-width: 1300px) {
    .location-grid {
        gap: 40px;
    }
}

@media (max-width: 1100px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 650px;
        margin: 0 auto 60px;
    }
}

.location-info-card {
    background: var(--bg-primary);
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.2s ease;
    border: 1px solid rgba(202, 156, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.location-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.location-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--color-gold);
}

.location-info-card:hover::before {
    opacity: 1;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(202, 156, 94, 0.1) 0%, rgba(202, 156, 94, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.location-info-card:hover .location-icon {
    background: var(--color-gold);
    transform: scale(1.1);
}

.location-icon svg {
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.location-info-card:hover .location-icon svg {
    color: var(--color-white);
}

.location-info-card h3 {
    font-family: var(--font-accent);
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.location-info-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.location-info-card p strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hours-days {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px !important;
}

.closed-notice {
    color: var(--color-gold) !important;
    font-style: italic;
    font-weight: 500;
    margin-top: 15px;
}

.location-map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.location-map {
    width: 100%;
    height: 550px;
    background: var(--bg-secondary);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: var(--transition-smooth);
}

.location-map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(202, 156, 94, 0.4);
    transition: var(--transition-smooth);
}

.directions-btn:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(202, 156, 94, 0.5);
}

.directions-btn svg {
    width: 20px;
    height: 20px;
}

.plan-visit-section,
.follow-journey-section {
    padding: 100px 30px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.plan-visit-section::before,
.follow-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--color-gold);
    pointer-events: none;
}

.plan-visit-section .section-header,
.follow-journey-section .section-header {
    position: relative;
    z-index: 1;
}

.plan-visit-section .section-title,
.follow-journey-section .section-title {
    color: var(--text-primary);
}

.plan-visit-section .section-description,
.follow-journey-section .section-description {
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Slide up animation */
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   Call-to-Action Section
   ==================================== */
.cta-section {
    background: linear-gradient(135deg, #0b1517 0%, #1a2528 100%);
    padding: 100px 30px !important;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(202, 156, 94, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-header {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--color-white) !important;
    font-size: clamp(42px, 5vw, 65px) !important;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
    color: #d0d0d0 !important;
    font-size: 20px;
    margin-bottom: 50px !important;
    max-width: 800px;
}

/* ====================================
   Reservation Buttons - Prominent & Illuminant
   ==================================== */
.btn-cta,
.btn-contact,
.btn-reservation {
    display: inline-block;
    padding: 22px 65px;
    background: linear-gradient(135deg, #d4a574 0%, var(--color-gold) 50%, #c08d4a 100%);
    color: var(--color-white);
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid var(--color-gold);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(202, 156, 94, 0.5), 
                0 5px 15px rgba(202, 156, 94, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: reservationPulse 3s ease-in-out infinite;
    text-align: center;
    margin: 0 auto;
}

.btn-cta::before,
.btn-contact::before,
.btn-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover::before,
.btn-contact:hover::before,
.btn-reservation:hover::before {
    left: 100%;
}

.btn-cta:hover,
.btn-contact:hover,
.btn-reservation:hover {
    background: linear-gradient(135deg, #e0b584 0%, #d4a574 50%, #ca9c5e 100%);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(202, 156, 94, 0.6), 
                0 8px 20px rgba(202, 156, 94, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #d4a574;
}

.btn-cta:active,
.btn-contact:active,
.btn-reservation:active {
    transform: translateY(-3px) scale(0.98);
    box-shadow: 0 10px 30px rgba(202, 156, 94, 0.5);
}

@keyframes reservationPulse {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(202, 156, 94, 0.5), 
                    0 5px 15px rgba(202, 156, 94, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 15px 45px rgba(202, 156, 94, 0.6), 
                    0 5px 20px rgba(202, 156, 94, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #000000 0%, #0b1517 100%);
}

/* ====================================
   Contact/Reservation Section
   ==================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-form {
    background: var(--bg-primary);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, #d4a574 0%, var(--color-gold) 50%, #c08d4a 100%);
    color: var(--color-white);
    border: 3px solid var(--color-gold);
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(202, 156, 94, 0.5), 
                0 5px 15px rgba(202, 156, 94, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: reservationPulse 3s ease-in-out infinite;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e0b584 0%, #d4a574 50%, #ca9c5e 100%);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 50px rgba(202, 156, 94, 0.6), 
                0 8px 20px rgba(202, 156, 94, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #d4a574;
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.99);
    box-shadow: 0 10px 30px rgba(202, 156, 94, 0.5);
}

.contact-info-section h3 {
    font-family: var(--font-accent);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h4 {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--color-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-item a {
    color: var(--text-primary);
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* ====================================
   Gallery Grid
   ==================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(11, 21, 23, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

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

.gallery-title {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--color-white);
    font-weight: 600;
}

/* ====================================
   Menu Page
   ==================================== */
.menu-section {
    margin-bottom: 80px;
}

/* Center items when not filling full row */
.story-content {
    justify-items: center;
}

.menu-section h2 {
    font-family: var(--font-accent);
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.menu-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--color-gold);
    margin: 20px auto 0;
}

.menu-items {
    display: grid;
    gap: 35px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(202, 156, 94, 0.2);
}

.menu-item-info {
    flex: 1;
}

.menu-item-info h3 {
    font-family: var(--font-accent);
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.menu-item-info p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.menu-item-price {
    font-family: var(--font-accent);
    font-size: 28px;
    color: var(--color-gold);
    font-weight: 600;
    white-space: nowrap;
}

.menu-featured {
    background: linear-gradient(135deg, rgba(202, 156, 94, 0.1) 0%, rgba(202, 156, 94, 0.05) 100%);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--color-gold);
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: var(--font-accent);
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(1);
}

.footer-tagline {
    font-size: 14px;
    color: #c0c0c0;
    line-height: 1.7;
}

.footer-section p {
    font-size: 15px;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: #c0c0c0;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.closed-day {
    color: var(--color-gold);
    font-style: italic;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(202, 156, 94, 0.3);
}

.footer-bottom p {
    font-size: 14px;
    color: #c0c0c0;
}

/* ====================================
   Scroll Animations
   ==================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================
   Responsive Design
   ==================================== */
@media (max-width: 1200px) {
    .nav-left, .nav-right {
        gap: 30px;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .logo {
        margin: 0 40px;
    }
}

@media (max-width: 768px) {
    .location-grid {
        max-width: 550px;
        gap: 25px;
    }
}

@media (max-width: 968px) {
    .theme-toggle {
        right: 100px;
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        height: 50px;
        margin: 0;
    }
    
    .nav {
        justify-content: center;
        padding: 0 20px;
    }
    
    .story-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-info-card {
        padding: 35px 25px;
    }
    
    .location-map {
        height: 400px;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 100%;
        padding: 40px 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header {
        height: 70px;
    }
    
    .header.scrolled {
        height: 60px;
    }
    
    .logo {
        height: 40px;
    }
    
    .mobile-menu-btn {
        right: 20px;
    }
    
    .theme-toggle {
        right: 75px;
        width: 36px;
        height: 36px;
    }
    
    .mobile-nav-link {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-cta,
    .btn-contact,
    .btn-reservation {
        padding: 20px 40px;
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .submit-btn {
        padding: 20px;
        font-size: 18px;
        letter-spacing: 1.5px;
    }
}

/* Center items in incomplete grid rows */
.dishes-grid {
    justify-items: center;
}

.dish-card {
    width: 100%;
}

/* Responsive grid fixes */
@media (max-width: 1100px) {
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    [style*="grid-template-columns: repeat(2, 1fr)"],
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

/* ====================================
   Utility Classes
   ==================================== */
.text-center {
    text-align: center;
}

.text-center .btn-reservation,
.text-center .btn-cta,
.text-center .btn-contact {
    display: inline-block;
    margin-top: 0;
}

.mt-small {
    margin-top: 30px;
}

.mt-medium {
    margin-top: 60px;
}

.mt-large {
    margin-top: 100px;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

