/* ============================================
   LANTERNA CROATICA — STYLES
   ============================================ */

:root {
    --cream: #faf6ef;
    --sand: #f4ede0;
    --sand-alt: #F0EAD8;
    --navy: #0b1622;
    --blue: #1a68b0;
    --gold: #FFD700;
    --terracotta: #C4613A;
    --sage: #6B9E8F;
    --text: #1c1c2e;
    --text-mid: #4a4a6a;
    --white: #ffffff;
    --text-light: #f5f5f5;

    --font-display: 'Cormorant Garamond', serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --spacing: 1rem;
    --section-padding: 6rem;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   INTRO OVERLAY
   ============================================ */
.intro-overlay {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.intro-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1;
}

.intro-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    object-fit: contain;
    filter: invert(1) brightness(1.5) saturate(0);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.intro-word {
    display: block;
    overflow: hidden;
}

.intro-word-lanterna {
    color: var(--white);
    clip-path: inset(0 100% 0 0);
    margin-bottom: 0.5rem;
}

.intro-word-croatica {
    color: var(--white);
    font-size: 1.05em;
    letter-spacing: 0.01em;
    clip-path: inset(0 100% 0 0);
}

.intro-progress {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--blue), var(--gold));
    transform-origin: left;
    scaleX: 0;
}

.intro-skip {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: var(--font-body);
    border-radius: 2px;
}

.intro-skip:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
    background: var(--navy);
    color: rgba(250, 246, 239, 0.8);
    padding: 0.75rem 2rem;
    text-align: center;
    font-size: 0.875rem;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.topbar-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.navbar.scrolled {
    border-bottom-color: rgba(28, 28, 46, 0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text);
}

.nav-logo-red {
    color: var(--gold);
    font-size: 1.15em;
    letter-spacing: 0.015em;
}

.nav-logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.nav-cta {
    color: var(--white);
    background: var(--blue);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--text);
    color: var(--white);
}

.nav-language {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-language .lang-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    border-color: rgba(28, 28, 46, 0.2);
}

.nav-language .lang-btn:hover,
.nav-language .lang-btn.lang-active {
    border-color: var(--blue);
    color: var(--blue);
    background: transparent;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 1px;
}

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

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    background: var(--cream);
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    padding-top: 100px;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-video-wrapper.visible {
    opacity: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10;
    pointer-events: none;
}

.hero-rings {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 0;
}

.ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(26, 104, 176, 0.25);
    border-radius: 50%;
    transform-origin: center;
}

.ring-1 {
    width: 300px;
    height: 300px;
    top: 50px;
    left: 50px;
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: 100px;
    left: 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.4);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.4);
}

.hero-h1-red {
    color: var(--gold);
    font-size: 1.1em;
    letter-spacing: 0.01em;
    text-shadow: 0 3px 12px rgba(200, 16, 46, 0.4), 0 0 25px rgba(255, 215, 0, 0.2);
}


.hero-tagline {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-language {
    display: none;
    gap: 0.5rem;
    margin-top: 2rem;
}

.hero-language .lang-btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
}

.hero-language .lang-btn:hover,
.hero-language .lang-btn.lang-active {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    cursor: pointer;
}

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

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

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

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

/* ============================================
   SECTIONS: COMMON
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding) 0;
}

section[id="ownership"] {
    background: var(--cream);
}

section[id="story"] {
    background: var(--cream) url('../assets/waves.jpg') no-repeat center;
    background-attachment: fixed;
    background-size: contain;
    background-position: center bottom;
    position: relative;
}

section[id="story"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 246, 239, 0.95);
    pointer-events: none;
    z-index: 1;
}

section[id="story"] > .section-container {
    position: relative;
    z-index: 2;
}

section[id="story"] .stat-number {
    color: var(--gold);
}

section[id="menu"] {
    background: var(--sand);
}

section[id="direction"] {
    background: var(--navy);
    color: var(--white);
}

section[id="atmosphere"] {
    background: var(--cream);
    position: relative;
}

section[id="visit"] {
    background: var(--navy);
    color: var(--white);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: inherit;
}

.section-subtext {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    max-width: 700px;
}

/* ============================================
   OWNERSHIP SECTION
   ============================================ */
.pill-badge {
    display: inline-block;
    border: 1px solid var(--blue);
    color: var(--blue);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.info-callout {
    background: rgba(26, 104, 176, 0.08);
    border-left: 3px solid var(--blue);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 2px;
}

.callout-icon {
    font-size: 1.5rem;
    color: var(--blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.callout-content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
}

.callout-content strong {
    color: var(--text);
}

/* ============================================
   STORY SECTION
   ============================================ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-mid);
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-mid);
    letter-spacing: 0.02em;
    font-weight: 500;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-header {
    margin-bottom: 2rem;
    text-align: center;
}

.menu-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.menu-toggle-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--blue);
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    cursor: pointer;
}

.menu-toggle-btn[data-menu-type="food"] {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.menu-toggle-btn[data-menu-type="food"]:hover {
    background: var(--text);
    border-color: var(--text);
}

.menu-toggle-btn[data-menu-type="drinks"] {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.menu-toggle-btn[data-menu-type="drinks"]:hover {
    background: var(--text);
    border-color: var(--text);
}

.menu-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.menu-language-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.menu-lang-btn {
    background: transparent;
    border: 1px solid rgba(28, 28, 46, 0.3);
    color: var(--text);
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    border-radius: 2px;
}

.menu-lang-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.menu-lang-btn.menu-lang-active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.menu-content {
    max-width: 900px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
    position: relative;
    left: 0;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40%;
    height: 2px;
    background: var(--blue);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px dotted rgba(28, 28, 46, 0.15);
    transition: opacity 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item:hover {
    opacity: 0.85;
}

.menu-item-info {
    flex: 1;
    padding-right: 1rem;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.menu-item-price {
    font-size: 0.95rem;
    color: var(--blue);
    font-weight: 600;
    white-space: nowrap;
    min-width: 60px;
    text-align: right;
}

/* Vintage divider accent */
.menu-category:not(:last-child)::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--blue), transparent);
    margin: 3rem auto;
    opacity: 0.4;
}

/* ============================================
   DIRECTION SECTION
   ============================================ */
.direction-container {
    max-width: 900px;
}

.direction-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.direction-heading {
    color: var(--white);
    margin-bottom: 2rem;
}

.direction-gold {
    color: var(--gold);
}

.direction-text {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   ATMOSPHERE SECTION
   ============================================ */
.atmosphere {
    position: relative;
}

.atmosphere-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 104, 176, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.featured-quote {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 4rem;
    max-width: 800px;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--terracotta);
    line-height: 0.8;
    display: block;
    margin-bottom: 1rem;
}

.quote-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.quote-footer {
    font-size: 0.9rem;
    color: var(--text-mid);
    font-style: normal;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.feature-icon-block {
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-icon-block p {
    font-size: 0.85rem;
    color: var(--text-mid);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

.visit-map-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(26, 104, 176, 0.3);
    border-radius: 2px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-illustration {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
}

.map-pin {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        r: 6;
        opacity: 1;
    }
    50% {
        r: 10;
        opacity: 0.7;
    }
}

.map-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.visit-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.visit-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--white);
}

.contact-block {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.contact-text {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
}

.contact-text a {
    color: var(--white);
    border-bottom: 1px solid var(--blue);
}

.contact-text a:hover {
    color: var(--blue);
}

.btn-map {
    align-self: flex-start;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--white) url('../assets/pattern.png') repeat;
    color: var(--text);
    padding: 4rem 2rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
}

.footer-logo-red {
    color: var(--gold);
    font-size: 1.15em;
    letter-spacing: 0.015em;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-subtitle {
    font-size: 0.75rem;
    color: var(--text-mid);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text);
    transition: color 0.3s ease;
}

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

.footer-language {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(28, 28, 46, 0.3);
    color: var(--text);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.lang-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.lang-btn.lang-active {
    border-color: var(--blue);
    color: var(--blue);
}

.footer-copyright {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-mid);
    padding-top: 2rem;
    border-top: 1px solid rgba(28, 28, 46, 0.1);
    position: relative;
    z-index: 2;
}

/* ============================================
   RESERVATION MODAL
   ============================================ */
.reservation-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.reservation-modal.active {
    display: flex;
}

.reservation-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 22, 34, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.reservation-container {
    position: relative;
    z-index: 9001;
    background: var(--white);
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 1px rgba(26, 104, 176, 0.2);
    border: 1px solid rgba(26, 104, 176, 0.1);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reservation-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    z-index: 9002;
    transition: color 0.3s ease;
}

.reservation-close:hover {
    color: var(--blue);
}

.reservation-content {
    padding: 3rem;
}

.reservation-header {
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

.reservation-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.reservation-subtitle {
    font-size: 0.95rem;
    color: var(--text-mid);
    letter-spacing: 0.01em;
}

.reservation-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.reservation-step.active {
    display: block;
}

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

.res-back-btn {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 9002;
}

.res-back-btn:hover {
    color: var(--blue);
}

.reservation-header {
    position: relative;
}

.reservation-summary {
    font-size: 0.85rem;
    color: var(--text-mid);
    margin-top: 0.5rem;
    letter-spacing: 0.01em;
}

.reservation-picker {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 1rem;
}

.picker-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.picker-item label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.picker-item input[type="date"],
.picker-item select {
    padding: 1rem;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.picker-item input[type="date"]:focus,
.picker-item select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 104, 176, 0.1);
}

.number-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 8px;
    background: #ffffff;
}

.number-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--blue);
    background: transparent;
    color: var(--blue);
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.number-btn:hover {
    background: rgba(26, 104, 176, 0.1);
    transform: scale(1.05);
}

.number-btn:active {
    transform: scale(0.95);
}

.number-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    min-width: 3rem;
    text-align: center;
}

/* Date Picker Styles */
.date-picker-wrapper {
    position: relative;
}

.date-picker-button {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-picker-button:hover {
    border-color: var(--blue);
    background: rgba(26, 104, 176, 0.02);
}

.date-picker-button:active {
    transform: scale(0.99);
}

.date-picker-popup {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: white;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    z-index: 10001;
    padding: 1rem;
    min-width: 320px;
    animation: popupSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top left;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.date-picker-month {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    flex: 1;
    text-align: center;
}

.date-nav-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(26, 104, 176, 0.08);
    color: var(--blue);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.date-nav-btn:hover {
    background: rgba(26, 104, 176, 0.15);
    transform: scale(1.05);
}

.date-nav-btn:active {
    transform: scale(0.95);
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.date-picker-weekdays div {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-mid);
    padding: 0.5rem 0;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.date-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text);
    background: transparent;
    border: none;
    transition: all 0.15s ease;
    font-weight: 500;
}

.date-day:hover:not(.disabled):not(.other-month) {
    background: rgba(26, 104, 176, 0.08);
    transform: scale(1.08);
}

.date-day.other-month {
    color: rgba(28, 28, 46, 0.3);
    cursor: default;
}

.date-day.disabled {
    color: rgba(28, 28, 46, 0.2);
    cursor: not-allowed;
}

.date-day.selected {
    background: var(--blue);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(26, 104, 176, 0.3);
}

.date-day.selected:hover {
    background: var(--blue);
    transform: scale(1);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group select {
}

/* Custom Dropdown Styling */
.custom-select-wrapper {
    position: relative;
}

.custom-select-button {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: #ffffff;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-select-button:after {
    content: '▼';
    font-size: 0.75rem;
    color: rgba(28, 28, 46, 0.5);
    margin-left: 0.5rem;
}

.custom-select-button:hover {
    border-color: var(--blue);
}

.custom-select-button:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.custom-select-list {
    position: fixed;
    background: #ffffff;
    border: 1px solid rgba(28, 28, 46, 0.15);
    border-radius: 6px;
    max-height: 0;
    overflow: hidden;
    z-index: 10000;
    transition: max-height 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-select-list.active {
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-select-item {
    padding: 0.85rem 1rem;
    cursor: pointer;
    color: var(--text);
    transition: background 0.2s ease;
}

.custom-select-item:hover {
    background: rgba(26, 104, 176, 0.1);
}

.custom-select-item:active {
    background: rgba(26, 104, 176, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 104, 176, 0.1);
}

.form-group select:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.form-group input::placeholder {
    color: rgba(28, 28, 46, 0.5);
}

.form-group textarea {
    resize: vertical;
    font-family: var(--font-body);
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-group.checkbox input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.form-group.checkbox label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.reservation-submit {
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.reservation-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 1rem;
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.reservation-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.reservation-success p {
    color: var(--text-mid);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.success-details {
    background: rgba(26, 104, 176, 0.08);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reservation-container {
        max-width: 95vw;
        border-radius: 12px;
    }

    .reservation-content {
        padding: 2rem 1.5rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .reservation-modal {
        padding: 1rem;
    }

    .reservation-picker {
        gap: 1.5rem;
    }

    .picker-item input[type="date"],
    .picker-item select {
        padding: 0.9rem;
        font-size: 1rem;
    }

    .number-picker {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .number-btn {
        width: 2.2rem;
        height: 2.2rem;
        font-size: 1rem;
    }

    .number-display {
        font-size: 1.2rem;
    }

    .res-back-btn {
        left: 1rem;
        top: 1rem;
        font-size: 1.2rem;
    }

    .date-picker-popup {
        min-width: 280px;
        max-width: 90vw;
        padding: 0.75rem;
    }

    .date-picker-header {
        margin-bottom: 0.75rem;
    }

    .date-nav-btn {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }

    .date-picker-month {
        font-size: 0.85rem;
    }

    .date-picker-weekdays {
        margin-bottom: 0.5rem;
    }

    .date-picker-weekdays div {
        font-size: 0.65rem;
        padding: 0.3rem 0;
    }

    .date-day {
        font-size: 0.75rem;
    }

    .date-picker-popup {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .reservation-content {
        padding: 1.5rem;
    }

    .reservation-title {
        font-size: 1.5rem;
    }

    .reservation-close {
        top: 1rem;
        right: 1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

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

    .nav-language {
        display: none;
    }

    .hero-language {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 8rem 2rem 2rem;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(28, 28, 46, 0.05);
        padding: 1.25rem 0;
    }

    .nav-link,
    .nav-cta {
        display: block;
        width: 100%;
        font-size: 1rem;
        padding: 0;
    }

    .nav-cta {
        background: var(--blue);
        padding: 1rem 0;
        text-align: center;
        border-radius: 0;
    }

    .nav-menu.active ~ .nav-language {
        display: flex;
        position: fixed;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        gap: 0.5rem;
        justify-content: flex-start;
        padding-top: 1rem;
        border-top: 1px solid rgba(28, 28, 46, 0.05);
        z-index: 998;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-rings {
        right: -200px;
        opacity: 0.3;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .features-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 2rem;
    }

    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

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

    .features-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .topbar {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .intro-heading {
        font-size: 2rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
