/* ==========================================================================
   Le Meiling & Momoyama — Complete Stylesheet
   Base styles from index.html.bak + Next.js feature additions
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
    --le-meiling-green: #0a1f14;
    --le-meiling-gold: #c9a962;
    --momoyama-black: #080808;
    --momoyama-gold: #C43A2F;
    --white: #fafafa;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--momoyama-black);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* --------------------------------------------------------------------------
   Particle Canvas
   -------------------------------------------------------------------------- */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Landing Page
   -------------------------------------------------------------------------- */
.landing-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 1.5rem;
}

.landing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@media (min-width: 1024px) {
    .landing-content { gap: 2.5rem; }
}

.coming-soon-badge {
    position: absolute;
    top: 2.5rem;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    animation: fadeIn 1s ease-out 0.5s backwards;
}

/* --------------------------------------------------------------------------
   Logos Container & Logo Wrappers
   -------------------------------------------------------------------------- */
.logos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .logos-container {
        flex-direction: row;
        gap: 4rem;
    }
}

@media (min-width: 1280px) {
    .logos-container { gap: 6rem; }
}

.logo-wrapper {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-wrapper:hover {
    transform: scale(1.03) translateY(-4px);
}

.logo-wrapper .logo-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
}

@media (min-width: 640px) {
    .logo-wrapper .logo-img-container { height: 180px; }
}

@media (min-width: 1024px) {
    .logo-wrapper .logo-img-container { height: 260px; }
}

@media (min-width: 1280px) {
    .logo-wrapper .logo-img-container { height: 300px; }
}

.logo-wrapper img {
    height: 100%;
    width: auto;
    animation: float 6s ease-in-out infinite;
    transition: filter 0.5s ease;
}

.logo-wrapper.momoyama img {
    height: 65%;
}

.logo-wrapper.le-meiling img {
    animation-delay: 0s;
    filter: drop-shadow(0 0 40px rgba(201, 169, 98, 0.35)) drop-shadow(0 0 80px rgba(201, 169, 98, 0.2));
}

.logo-wrapper.momoyama img {
    animation-delay: -3s;
    filter: drop-shadow(0 0 40px rgba(196, 58, 47, 0.35)) drop-shadow(0 0 80px rgba(196, 58, 47, 0.2));
}

.logo-wrapper.le-meiling:hover img {
    filter: drop-shadow(0 0 60px rgba(201, 169, 98, 0.55)) drop-shadow(0 0 100px rgba(201, 169, 98, 0.35));
}

.logo-wrapper.momoyama:hover img {
    filter: drop-shadow(0 0 60px rgba(196, 58, 47, 0.55)) drop-shadow(0 0 100px rgba(196, 58, 47, 0.35));
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180px; height: 180px;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
}

@media (min-width: 640px) {
    .logo-wrapper::before { width: 220px; height: 220px; }
}

@media (min-width: 1024px) {
    .logo-wrapper::before { width: 300px; height: 300px; }
}

.logo-wrapper.le-meiling::before {
    background: radial-gradient(circle, rgba(201, 169, 98, 0.12) 0%, rgba(13, 40, 24, 0.05) 40%, transparent 70%);
}

.logo-wrapper.momoyama::before {
    background: radial-gradient(circle, rgba(196, 58, 47, 0.12) 0%, rgba(196, 58, 47, 0.03) 40%, transparent 70%);
    animation-delay: -2s;
}

.logo-wrapper:hover::before { opacity: 1; }

/* --------------------------------------------------------------------------
   Logo Label & Status
   -------------------------------------------------------------------------- */
.logo-label {
    text-align: center;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .logo-label { font-size: 0.8rem; }
}

.logo-wrapper:hover .logo-label {
    color: rgba(255, 255, 255, 0.7);
}

.logo-subtitle {
    text-align: center;
    margin-top: 0.25rem;
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

.logo-status {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .logo-status { font-size: 0.65rem; }
}

.logo-wrapper.le-meiling .logo-status { color: rgba(201, 169, 98, 0.9); }
.logo-wrapper.momoyama .logo-status { color: rgba(196, 58, 47, 0.9); }

/* --------------------------------------------------------------------------
   Divider
   -------------------------------------------------------------------------- */
.divider {
    width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 169, 98, 0.15), transparent);
}

@media (min-width: 1024px) {
    .divider {
        width: 1px; height: 180px;
        background: linear-gradient(to bottom, transparent, rgba(201, 169, 98, 0.2), transparent);
    }
}

/* --------------------------------------------------------------------------
   Tagline
   -------------------------------------------------------------------------- */
.tagline {
    text-align: center;
}

.tagline h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.06em;
}

@media (min-width: 640px) {
    .tagline h2 { font-size: 1.3rem; letter-spacing: 0.08em; }
}

@media (min-width: 768px) {
    .tagline h2 { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
    .tagline h2 { font-size: 1.8rem; }
}

/* --------------------------------------------------------------------------
   Landing Icon Tooltips (parking, room rental)
   -------------------------------------------------------------------------- */
.landing-icon-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.icon-tooltip-wrap {
    position: relative;
    display: inline-flex;
    text-decoration: none;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.icon-tooltip-wrap:hover .icon-btn {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.icon-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.85);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    letter-spacing: 0.01em;
}

.icon-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.85);
}

.icon-tooltip-wrap:hover .icon-tooltip {
    opacity: 1;
}

/* On touch devices, show tooltip on tap */
@media (hover: none) {
    .icon-tooltip-wrap:focus .icon-tooltip,
    .icon-tooltip-wrap:active .icon-tooltip {
        opacity: 1;
    }
}

/* --------------------------------------------------------------------------
   Landing Footer Info (address + contact links)
   -------------------------------------------------------------------------- */
.landing-footer-info {
    text-align: center;
    margin-top: 0.5rem;
}

.address-link {
    display: block;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.address-link:hover { color: var(--white); }

@media (min-width: 768px) {
    .address-link { font-size: 1.2rem; }
}

/* --------------------------------------------------------------------------
   Location Info
   -------------------------------------------------------------------------- */
.location-info {
    position: absolute;
    bottom: 2.5rem;
    text-align: center;
    animation: fadeIn 1s ease-out 1s backwards;
}

.location-info p {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.location-info a {
    color: var(--le-meiling-gold);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.location-info a:hover { opacity: 0.7; }

/* --------------------------------------------------------------------------
   Language Toggle
   -------------------------------------------------------------------------- */
.language-toggle {
    position: absolute;
    top: 1rem; right: 1rem;
    display: flex;
    gap: 0.35rem;
    z-index: 10;
    animation: fadeIn 1s ease-out 0.5s backwards;
}

@media (min-width: 640px) {
    .language-toggle { top: 2.5rem; right: 2.5rem; gap: 0.5rem; }
}

.language-toggle button {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .language-toggle button { font-size: 0.7rem; padding: 0.5rem 0.75rem; }
}

.language-toggle button:hover {
    border-color: rgba(201, 169, 98, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.language-toggle button.active {
    border-color: var(--le-meiling-gold);
    color: var(--le-meiling-gold);
}

/* --------------------------------------------------------------------------
   Restaurant Page (base)
   -------------------------------------------------------------------------- */
.restaurant-page {
    display: none;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.restaurant-page.active { display: block; }

/* --------------------------------------------------------------------------
   Restaurant Header
   -------------------------------------------------------------------------- */
.restaurant-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.le-meiling-page .restaurant-header { background: rgba(10, 31, 20, 0.9); }
.momoyama-page .restaurant-header { background: rgba(8, 8, 8, 0.9); }

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    min-height: 72px;
}

@media (min-width: 769px) {
    .header-top {
        padding: 1.5rem 4rem;
    }
    .le-meiling-page .header-top { min-height: 103px; }
    .momoyama-page .header-top { min-height: 128px; }
}

.restaurant-header .logo {
    cursor: pointer;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(201, 169, 98, 0.2));
    width: auto;
}

.le-meiling-page .restaurant-header .logo { height: 40px; }
.momoyama-page .restaurant-header .logo { height: 50px; }

@media (min-width: 769px) {
    .le-meiling-page .restaurant-header .logo { height: 55px; }
    .momoyama-page .restaurant-header .logo { height: 80px; }
}

.restaurant-header .logo:hover { opacity: 0.8; }

/* --------------------------------------------------------------------------
   Restaurant Nav
   -------------------------------------------------------------------------- */
.restaurant-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.restaurant-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.restaurant-nav a:hover { color: var(--le-meiling-gold); }

/* --------------------------------------------------------------------------
   Back Button
   -------------------------------------------------------------------------- */
.back-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.6rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-btn:hover {
    border-color: var(--le-meiling-gold);
    color: var(--le-meiling-gold);
}

/* --------------------------------------------------------------------------
   Restaurant Hero
   -------------------------------------------------------------------------- */
.restaurant-hero {
    height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.le-meiling-page .restaurant-hero { background: linear-gradient(180deg, var(--le-meiling-green) 0%, rgba(10, 31, 20, 0.7) 100%); }
.momoyama-page .restaurant-hero { background: linear-gradient(180deg, var(--momoyama-black) 0%, rgba(15, 15, 15, 0.7) 100%); }

.restaurant-hero .hero-logo {
    height: 280px;
    margin-bottom: 2.5rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(201, 169, 98, 0.3));
}

.restaurant-hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--le-meiling-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.restaurant-hero .subtitle {
    font-weight: 300;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.coming-soon-banner {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.75rem 2.5rem;
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: var(--le-meiling-gold);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.reserve-hero-btn {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.reserve-hero-btn:hover {
    background: rgba(201, 169, 98, 0.1);
}

/* --------------------------------------------------------------------------
   News / Announcements Carousel
   -------------------------------------------------------------------------- */
.news-section {
    padding-top: 4rem;
    padding-bottom: 2rem;
}
.news-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}
.news-carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-card {
    text-align: center;
    min-width: 100%;
    border: 1px solid rgba(201, 169, 98, 0.2);
    background: rgba(201, 169, 98, 0.03);
    padding: 2.5rem 2rem;
    box-sizing: border-box;
}
.news-card-title {
    font-family: 'Syne', sans-serif;
    color: var(--le-meiling-gold);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}
.news-card-body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
}
.news-card-body p {
    margin-bottom: 0.4rem;
}
.news-card-body strong {
    color: var(--white);
    font-weight: 400;
}
.news-card-date {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    margin-top: 1.2rem;
    letter-spacing: 0.05em;
}

/* Carousel controls */
.news-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
/* Hide controls when only 1 card */
.news-carousel--single .news-carousel-controls {
    display: none;
}
.news-carousel-btn {
    background: none;
    border: 1px solid rgba(201, 169, 98, 0.25);
    color: var(--le-meiling-gold);
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.news-carousel-btn:hover {
    background: rgba(201, 169, 98, 0.1);
    border-color: rgba(201, 169, 98, 0.4);
}
.news-carousel-dots {
    display: flex;
    gap: 0.5rem;
}
.news-carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}
.news-carousel-dot.active {
    background: var(--le-meiling-gold);
    transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   Restaurant Sections
   -------------------------------------------------------------------------- */
.restaurant-section {
    padding: 7rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.12em;
    color: var(--le-meiling-gold);
    text-align: center;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
}

.concept-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    font-weight: 300;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
}

/* --------------------------------------------------------------------------
   Menu Placeholder (original grid)
   -------------------------------------------------------------------------- */
.menu-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.menu-category {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.08);
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.menu-category:hover {
    border-color: rgba(201, 169, 98, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.menu-category h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--le-meiling-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.menu-category p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 3rem 2.5rem;
    min-width: 280px;
    text-align: center;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: rgba(201, 169, 98, 0.4);
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--le-meiling-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
}

.pricing-card .price {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    margin: 1.5rem 0;
}

.price-rows {
    margin: 1.5rem 0;
}
.price-row {
    margin-bottom: 0.8rem;
}
.price-row:last-child {
    margin-bottom: 0;
}
.price-label {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}
.price-amount {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
}

.pricing-card ul { list-style: none; margin-top: 1.5rem; }

.pricing-card li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card li:last-child { border-bottom: none; }

/* --------------------------------------------------------------------------
   Photo Grid
   -------------------------------------------------------------------------- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.photo-placeholder {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(201, 169, 98, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Contact Grid
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item { text-align: center; }

.contact-item h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--le-meiling-gold);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover { color: var(--le-meiling-gold); }

.hours-note {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
}

/* --------------------------------------------------------------------------
   Reservation Button
   -------------------------------------------------------------------------- */
.reservation-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 1rem 3rem;
    background: rgba(201, 169, 98, 0.08);
    border: 1px solid rgba(201, 169, 98, 0.25);
    color: rgba(201, 169, 98, 0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

.reservation-btn::after {
    content: ' — Binnenkort';
    font-size: 0.65rem;
    opacity: 0.7;
}

.reservation-btn:hover { background: rgba(201, 169, 98, 0.12); }

.contact-reserve-link {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--le-meiling-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    padding-bottom: 1px;
}
.contact-reserve-link:hover {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Restaurant Footer
   -------------------------------------------------------------------------- */
.restaurant-footer {
    padding: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.le-meiling-page .restaurant-footer { background: var(--le-meiling-green); }
.momoyama-page .restaurant-footer { background: var(--momoyama-black); }

.restaurant-footer p {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Page Container Transitions
   -------------------------------------------------------------------------- */
.page-container { transition: opacity 0.5s ease; }
.page-container.fade-out { opacity: 0; }

/* --------------------------------------------------------------------------
   Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

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

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

@keyframes gradient-shift {
    0%, 100% { background-position: 50% 50%; }
    50% { background-position: 50% 40%; }
}

/* --------------------------------------------------------------------------
   Base Responsive — Mobile (max-width: 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .restaurant-section { padding: 4rem 1.5rem; }
    .restaurant-hero h1 { font-size: 1.8rem; }
}


/* ==========================================================================
   NEXT.JS FEATURE ADDITIONS
   ========================================================================== */


/* --------------------------------------------------------------------------
   Detailed Menu — Le Meiling (8 categories, 60+ items, 2-column grid)
   -------------------------------------------------------------------------- */
.menu-pdf {
    margin-top: 3rem;
    text-align: center;
}

.menu-pdf-link {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border: 1px solid rgba(201, 169, 98, 0.4);
    color: var(--le-meiling-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 400;
    transition: border-color 0.3s, color 0.3s;
}

.menu-pdf-link:hover {
    border-color: var(--le-meiling-gold);
}

.momoyama-page .menu-pdf-link {
    border-color: rgba(196, 58, 47, 0.4);
    color: var(--momoyama-gold);
}

.momoyama-page .menu-pdf-link:hover {
    border-color: var(--momoyama-gold);
}

.detailed-menu {
    margin-top: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-category-detailed {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
}

.menu-category-detailed h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--le-meiling-gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

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

.menu-item {
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.menu-item-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.menu-item-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    margin-top: 0.125rem;
}

@media (max-width: 640px) {
    .menu-items-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Teppanyaki Menu — Momoyama (course menu cards + a la carte grid)
   -------------------------------------------------------------------------- */
.teppanyaki-section {
    margin-top: 3rem;
}

.teppanyaki-title {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--momoyama-gold);
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.teppanyaki-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
}

.course-menus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 58, 47, 0.08);
    padding: 1.5rem 2rem;
    transition: all 0.4s ease;
}

.course-card:hover {
    border-color: rgba(196, 58, 47, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.course-card .title-jp {
    font-family: 'Syne', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--momoyama-gold);
    margin-bottom: 0.25rem;
    letter-spacing: 0.08em;
}

.course-card .subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.course-card .price {
    font-size: 0.95rem;
    color: rgba(196, 58, 47, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
}

.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-card li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    padding: 0.25rem 0;
}

.alacarte-section {
    margin-top: 4rem;
}

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

.alacarte-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 58, 47, 0.08);
    padding: 1rem 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
}

.alacarte-item:hover {
    border-color: rgba(196, 58, 47, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.alacarte-item.premium {
    border-color: rgba(196, 58, 47, 0.3);
}

.alacarte-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.alacarte-item .premium-note {
    font-size: 0.7rem;
    color: rgba(196, 58, 47, 0.6);
    margin-top: 0.5rem;
    font-style: italic;
}

.allergen-box {
    margin-top: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(196, 58, 47, 0.12);
    padding: 1.5rem 2rem;
    text-align: center;
}

.allergen-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

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

@media (max-width: 640px) {
    .course-menus-grid { grid-template-columns: 1fr; }
    .alacarte-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   Mobile Hamburger Menu
   -------------------------------------------------------------------------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.hamburger.open span:first-child {
    transform: rotate(45deg) translateY(6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:last-child {
    transform: rotate(-45deg) translateY(-6px);
}

.mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.le-meiling-page .mobile-menu { background: var(--le-meiling-green); }
.momoyama-page .mobile-menu { background: var(--momoyama-black); }

.mobile-menu.open {
    max-height: 400px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
}

.mobile-menu nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .hamburger,
    .mobile-actions { display: flex; }
    .mobile-menu { display: block; }
    .restaurant-nav,
    .desktop-back { display: none; }
}

/* --------------------------------------------------------------------------
   Hero Enhancements — Video Hero (Momoyama)
   -------------------------------------------------------------------------- */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.8) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: float 6s ease-in-out infinite;
}

.le-meiling-page .hero-tagline { color: var(--le-meiling-gold); }
.momoyama-page .hero-tagline { color: var(--momoyama-gold); }

/* --------------------------------------------------------------------------
   Hero Enhancements — Grain Overlay
   -------------------------------------------------------------------------- */
.grain-overlay {
    position: relative;
}

.grain-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Hero Enhancements — Gradient Backgrounds
   -------------------------------------------------------------------------- */
.hero-lm {
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(20, 50, 30, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 30% 60%, rgba(201, 169, 98, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #1a2a1a 0%, #0f1a10 40%, #0a0f0a 100%);
    animation: gradient-shift 12s ease-in-out infinite;
    background-size: 100% 120%;
}

.hero-mm {
    background:
        radial-gradient(ellipse 70% 50% at 50% 45%, rgba(40, 25, 10, 0.7) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 60% 55%, rgba(212, 120, 40, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 40% 50%, rgba(180, 80, 20, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #1a1510 0%, #100c08 40%, #0a0a08 100%);
    animation: gradient-shift 12s ease-in-out infinite;
    background-size: 100% 120%;
}

/* --------------------------------------------------------------------------
   Landing Page Contact Links
   -------------------------------------------------------------------------- */
.landing-contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.landing-contact-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.landing-contact-links a:hover { color: var(--white); }

@media (min-width: 640px) {
    .landing-contact-links {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Announcements / Acties
   -------------------------------------------------------------------------- */
.announcements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.announcement-badge {
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(201, 169, 98, 0.4);
    border-radius: 999px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--le-meiling-gold);
    background: rgba(201, 169, 98, 0.08);
    text-transform: uppercase;
}

.page-announcements {
    padding: 1.5rem 2rem 0;
}

.momoyama-page .announcement-badge {
    color: var(--momoyama-gold);
    border-color: rgba(196, 58, 47, 0.4);
    background: rgba(196, 58, 47, 0.08);
}

/* --------------------------------------------------------------------------
   Momoyama-Specific Header Styling
   -------------------------------------------------------------------------- */
.momoyama-page .restaurant-header .header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.momoyama-header-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--momoyama-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .momoyama-header-name { font-size: 1.6rem; }
}

/* --------------------------------------------------------------------------
   Photo Section — Text Status (replaces placeholder boxes)
   -------------------------------------------------------------------------- */
.photo-status {
    text-align: center;
    padding: 2rem;
}

.photo-status p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
}

/* ==========================================================================
   MOMOYAMA COLOR OVERRIDES
   All shared elements that default to --le-meiling-gold need to use
   --momoyama-gold (#C43A2F) on the Momoyama page.
   ========================================================================== */

/* Hero */
.momoyama-page .restaurant-hero h1 { color: var(--momoyama-gold); }
.momoyama-page .restaurant-hero .hero-logo {
    filter: drop-shadow(0 0 60px rgba(196, 58, 47, 0.3));
}

/* Coming soon banner */
.momoyama-page .coming-soon-banner {
    border-color: rgba(196, 58, 47, 0.4);
    color: var(--momoyama-gold);
}

/* Section titles */
.momoyama-page .section-title { color: var(--momoyama-gold); }

/* Nav hover */
.momoyama-page .restaurant-nav a:hover { color: var(--momoyama-gold); }
.momoyama-page .mobile-menu nav a:hover { color: var(--momoyama-gold); }

/* Back button hover */
.momoyama-page .back-btn:hover {
    border-color: var(--momoyama-gold);
    color: var(--momoyama-gold);
}

/* Menu category cards (overview grid) */
.momoyama-page .menu-category {
    border-color: rgba(196, 58, 47, 0.08);
}
.momoyama-page .menu-category:hover {
    border-color: rgba(196, 58, 47, 0.25);
}
.momoyama-page .menu-category h3 { color: var(--momoyama-gold); }

/* Contact */
.momoyama-page .contact-item h4 { color: var(--momoyama-gold); }
.momoyama-page .contact-item a:hover { color: var(--momoyama-gold); }

/* Reserve hero button */
.momoyama-page .reserve-hero-btn:hover {
    background: rgba(196, 58, 47, 0.1);
}

/* Contact reserve link */
.momoyama-page .contact-reserve-link {
    color: var(--momoyama-gold);
    border-bottom-color: rgba(196, 58, 47, 0.3);
}

/* News carousel */
.momoyama-page .news-card {
    border-color: rgba(196, 58, 47, 0.2);
    background: rgba(196, 58, 47, 0.03);
}
.momoyama-page .news-card-title {
    color: var(--momoyama-gold);
}
.momoyama-page .news-carousel-btn {
    border-color: rgba(196, 58, 47, 0.25);
    color: var(--momoyama-gold);
}
.momoyama-page .news-carousel-btn:hover {
    background: rgba(196, 58, 47, 0.1);
    border-color: rgba(196, 58, 47, 0.4);
}
.momoyama-page .news-carousel-dot.active {
    background: var(--momoyama-gold);
}
.momoyama-page .news-carousel-dot {
    background: rgba(196, 58, 47, 0.2);
}

/* Header logo glow */
.momoyama-page .restaurant-header .logo {
    filter: drop-shadow(0 0 20px rgba(196, 58, 47, 0.2));
}

/* Teppanyaki menu spacing — gap between overview cards and course menus */
.momoyama-page .menu-placeholder {
    margin-bottom: 1rem;
}
