/*
Theme Name: Danli Restaurant Theme
Theme URI: 
Author: Antigravity AI
Author URI: 
Description: A modern and elegant dark theme for Danli Restaurant in Germany.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: danli
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    --primary-bg: #1A1A1A;      /* Đen nhám dịu mắt */
    --secondary-bg: #262626;    /* Xám đậm mềm mại */
    --accent-color: #C19B4C;    /* Vàng đồng nhạt, ít chói */
    --accent-hover: #EBB622;    /* Vàng đồng sáng khi hover */
    --text-main: #EAEAEA;       /* Trắng ngà, giảm độ gắt */
    --text-muted: #A0A0A0;      /* Xám trung tính */
    
    --header-bg: rgba(30, 30, 30, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --shadow-large: rgba(0, 0, 0, 0.4);
    
    --card-bg: linear-gradient(135deg, rgba(44, 44, 44, 0.4) 0%, rgba(30, 30, 30, 0.6) 100%);
    --card-hover-bg: linear-gradient(135deg, rgba(44, 44, 44, 0.6) 0%, rgba(30, 30, 30, 0.8) 100%);
    --border-color: rgba(255, 255, 255, 0.03);
    --border-hover-color: rgba(212, 175, 55, 0.25);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;
}

html[data-theme="light"] {
    --primary-bg: #FAFAFA;      /* Sleek premium light white */
    --secondary-bg: #FFFFFF;    /* Clean card white */
    --accent-color: #A38020;    /* Muted gold for contrast against white background */
    --accent-hover: #D4AF37;    /* Classic gold on hover */
    --text-main: #1C1C1C;       /* Elegant dark text */
    --text-muted: #555555;      /* Slate grey text for descriptions */
    
    --header-bg: rgba(255, 255, 255, 0.95);
    --shadow-color: rgba(0, 0, 0, 0.06);
    --shadow-large: rgba(0, 0, 0, 0.05);
    
    --card-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(243, 243, 243, 0.95) 100%);
    --card-hover-bg: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 248, 1) 100%);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover-color: rgba(163, 128, 32, 0.35);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background-color: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--secondary-bg);
    box-shadow: 0 2px 10px var(--shadow-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 3%;
    max-width: 100%; /* Stretch fully to shift logo to far left */
    margin: 0 auto;
}

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

.header-phone {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-phone:hover {
    color: var(--accent-hover);
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

/* Logo SVG (vertical: icon + text) */
.danli-logo-svg {
    /* Logo is vertical: viewBox 400x205. */
    height: 95px; /* Increased height to fill the bar */
    width: auto;
    display: block;
    max-width: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: visible;
}

/* Fallback PNG logo */
.danli-logo-img {
    height: 95px; /* Increased height */
    width: auto;
    display: block;
    max-width: none;
}

/* Flame (fill) */
.danli-logo-svg .flame-icon {
    fill: #E8705A;
    transition: fill 0.3s ease, filter 0.3s ease;
}

/* Smile arc (stroke) */
.danli-logo-svg .smile-icon {
    stroke: #E8705A;
    fill: none;
    transition: stroke 0.3s ease, filter 0.3s ease;
}

/* Text adapts to light/dark theme */
.danli-logo-svg .logo-text-danli {
    fill: var(--text-main);
    transition: fill 0.3s ease;
}

.danli-logo-svg .logo-text-sub {
    fill: var(--text-main);
    opacity: 0.80;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

/* Hover glow effects */
.site-logo-link:hover .danli-logo-svg .flame-icon {
    fill: #ff9d7d;
    filter: drop-shadow(0 0 6px rgba(232, 112, 90, 0.7));
}

.site-logo-link:hover .danli-logo-svg .smile-icon {
    stroke: #ff9d7d;
    filter: drop-shadow(0 0 4px rgba(232, 112, 90, 0.7));
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation li a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

.main-navigation li a:hover {
    color: var(--accent-color);
}

.main-navigation li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-navigation li a:hover::after {
    width: 100%;
}

/* Reservation Button Style in Menu */
.btn-reserve {
    background-color: var(--accent-color);
    color: var(--primary-bg) !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-reserve::after {
    display: none !important; /* Remove underline effect */
}

.btn-reserve:hover {
    background-color: transparent;
    color: var(--accent-color) !important;
}

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

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

.hero-content-inner {
    background: rgba(18, 18, 18, 0.65);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    padding: 45px 55px;
    animation: heroFadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes heroSlowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.12);
    }
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-color);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--secondary-bg);
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-widget p, .footer-widget li {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.site-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* ==========================================================================
   Interactive Menu Grid & Lightbox
   ========================================================================== */

/* Menu Grid Layout */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-card {
    background: var(--secondary-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 1px solid #333;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    border-color: var(--accent-color);
}

.menu-image-wrapper {
    position: relative;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 380px; /* Tall wrapper for readable portrait aspect ratio */
}

.menu-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Shows full image without cropping */
    border-radius: 4px;
    transition: transform 0.3s ease;
}

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

.menu-info {
    padding: 20px;
    text-align: center;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid #333;
}

.menu-info h4 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.menu-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Premium Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000; /* Stays above admin-bar and header */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-caption {
    color: var(--text-main);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    transition: color 0.3s, transform 0.2s;
}

.lightbox-nav:hover {
    color: var(--accent-color);
}

.lightbox-prev {
    left: -100px;
}

.lightbox-next {
    right: -100px;
}

.lightbox-nav:active {
    transform: translateY(-50%) scale(0.9);
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
    .lightbox-prev {
        left: -60px;
    }
    .lightbox-next {
        right: -60px;
    }
}

@media (max-width: 768px) {
    .menu-image-wrapper {
        height: 320px;
    }
    .lightbox-prev, .lightbox-next {
        position: fixed;
        bottom: 20px;
        top: auto;
        transform: none;
        background: rgba(44, 44, 44, 0.8);
        border: 1px solid #555;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        z-index: 10001;
    }
    .lightbox-prev {
        left: 20px;
    }
    .lightbox-next {
        right: 20px;
    }
    .lightbox-nav:active {
        transform: scale(0.9);
    }
    .lightbox-close {
        right: 10px;
        top: -55px;
    }
    .lightbox-img {
        max-height: 70vh;
    }
}

/* ==========================================================================
   Menu Category Tabs
   ========================================================================== */
.menu-tabs-sticky {
    position: sticky;
    top: 60px;
    z-index: 100;
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    margin: 0 -20px 30px -20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: box-shadow 0.3s ease;
    width: calc(100% + 40px); /* Enforce width for wrapping */
    max-width: 100vw;
}

.menu-tabs-sticky.is-stuck {
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

html[data-theme="light"] .menu-tabs-sticky {
    background: rgba(250, 250, 250, 0.95);
    border-bottom-color: rgba(0,0,0,0.06);
}

html[data-theme="light"] .menu-tabs-sticky.is-stuck {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
    width: 100%; /* Force flex container to respect parent width */
    max-width: 100%;
}

.menu-tab-btn {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-tab-btn:hover {
    color: var(--accent-color);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
}

.menu-tab-btn.active {
    color: #111;
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

html[data-theme="light"] .menu-tab-btn {
    border-color: rgba(0,0,0,0.1);
}

html[data-theme="light"] .menu-tab-btn.active {
    color: #fff;
}

/* Grid display toggle */
.menu-grid-container,
.ambiente-grid-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-grid-container.active,
.ambiente-grid-container.active {
    display: block;
}

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

/* ==========================================================================
   Modern Digital Menu & Mode Switcher
   ========================================================================== */
.menu-controls-row {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-mode-switcher {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 40px;
    padding: 6px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.mode-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mode-btn svg {
    transition: transform 0.3s ease;
}

.mode-btn:hover {
    color: var(--text-main);
}

.mode-btn:hover svg {
    transform: scale(1.1);
}

.mode-btn.active {
    color: var(--primary-bg);
    background: var(--accent-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

/* Toggle displays for Digital vs Scan Views */
.menu-digital-view,
.menu-scans-view {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-digital-view.active,
.menu-scans-view.active {
    display: block;
}

/* Digital Menu Grid & Cards */
.digital-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-top: 20px;
    text-align: left;
}

.dish-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.dish-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover-color);
    box-shadow: 0 15px 35px var(--shadow-large), 0 0 20px rgba(212, 175, 55, 0.04);
    background: var(--card-hover-bg);
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: transparent;
    transition: background-color 0.3s ease;
}

.dish-card:hover::before {
    background-color: var(--accent-color);
}

.dish-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 12px;
    gap: 12px;
}

.dish-title-wrap {
    display: flex;
    flex-direction: column;
}

.dish-viet-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 2px;
}

.dish-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.dish-divider-dots {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(212, 175, 55, 0.15);
    margin-bottom: 5px;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
}

.dish-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Sub-header for grouped menu categories */
.menu-sub-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0 20px 0;
    text-align: left;
}

.menu-sub-header:first-of-type {
    margin-top: 10px;
}

.menu-sub-header h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 0;
    white-space: nowrap;
    font-weight: 600;
}

.menu-sub-header .sub-header-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.3), transparent);
}

/* Accordion Variations Toggle */
.dish-variations-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--accent-color);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.25s ease;
}

.dish-variations-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.35);
}

.dish-variations-toggle .toggle-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.dish-variations-toggle.open .toggle-arrow {
    transform: rotate(180deg);
}

.dish-variations-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
    opacity: 0;
}

.dish-variations-content.open {
    max-height: 500px;
    opacity: 1;
}

/* Vietnamese description subtitle */
.dish-viet-desc {
    font-size: 0.88em;
    color: #b8a06a;
    font-style: italic;
    letter-spacing: 0.3px;
    margin-top: 4px;
    line-height: 1.5;
}

html[data-theme="light"] .dish-viet-desc {
    color: #8a7030;
}

html[data-theme="light"] .menu-sub-header .sub-header-line {
    background: linear-gradient(to right, rgba(163, 128, 32, 0.3), transparent);
}

html[data-theme="light"] .dish-variations-toggle {
    background: rgba(163, 128, 32, 0.06);
    border-color: rgba(163, 128, 32, 0.2);
}

.dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 14px;
}

.dish-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-signature {
    background: rgba(212, 175, 55, 0.08);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.tag-beliebt {
    background: rgba(235, 78, 78, 0.08);
    color: #ff5e5e;
    border: 1px solid rgba(235, 78, 78, 0.2);
}

.tag-hausgemacht {
    background: rgba(85, 171, 238, 0.08);
    color: #55abee;
    border: 1px solid rgba(85, 171, 238, 0.2);
}

.tag-vegan {
    background: rgba(46, 204, 113, 0.08);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.tag-frisch {
    background: rgba(155, 89, 182, 0.08);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.tag-dessert {
    background: rgba(232, 67, 147, 0.08);
    color: #e84393;
    border: 1px solid rgba(232, 67, 147, 0.2);
}

.dish-allergen {
    font-size: 0.75rem;
    color: #777;
}

/* ==========================================================================
   Quick Info Bar
   ========================================================================== */
.quick-info-bar {
    background-color: var(--secondary-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.quick-info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 260px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.info-item:hover {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.info-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.info-text h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.info-text p a {
    color: var(--text-muted);
}

.info-text p a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   PDF Button / btn-secondary
   ========================================================================== */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

/* ==========================================================================
   Ambiente Modern Grid & Gallery
   ========================================================================== */
.ambiente-layout-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 20px;
}

.ambiente-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}

.ambiente-sub {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.ambiente-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Modern Tab Pills */
.ambiente-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ambiente-pill-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 14px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ambiente-pill-btn span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ambiente-pill-btn::after {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--accent-color);
}

.ambiente-pill-btn:hover {
    color: var(--accent-color);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.04);
}

.ambiente-pill-btn.active {
    color: var(--primary-bg);
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.ambiente-pill-btn.active::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-bg);
}

/* Interactive Grid Cards */
.ambiente-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.ambiente-card-modern {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Asymmetric CSS Grid Spans for Innenbereich Gallery */
.innenbereich-gallery .ambiente-card-modern:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}
.innenbereich-gallery .ambiente-card-modern:nth-child(2) {
    grid-column: span 1;
    grid-row: span 2;
}
.innenbereich-gallery .ambiente-card-modern:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}
.innenbereich-gallery .ambiente-card-modern:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Asymmetric CSS Grid Spans for Aussenbereich Gallery */
.aussenbereich-gallery .ambiente-card-modern:nth-child(1) {
    grid-column: span 1;
    grid-row: span 2;
}
.aussenbereich-gallery .ambiente-card-modern:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
}
.aussenbereich-gallery .ambiente-card-modern:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
}

.ambiente-img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ambiente-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CSS Image Beautification: Increase contrast, saturate colors (good for food), add subtle warmth */
    filter: contrast(1.1) saturate(1.2) sepia(0.1) brightness(0.95);
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease;
}

.ambiente-card-modern:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12);
}

.ambiente-card-modern:hover .ambiente-img-wrap img {
    transform: scale(1.08);
    /* Keep beautification, but darken for text contrast */
    filter: contrast(1.1) saturate(1.2) sepia(0.1) brightness(0.75);
}

/* Premium Gradient overlay & info tags */
.ambiente-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ambiente-card-modern:hover .ambiente-info-overlay {
    opacity: 1;
    transform: translateY(0);
}

.ambiente-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.ambiente-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 600;
}

.ambiente-zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.ambiente-card-modern:hover .ambiente-zoom-btn {
    opacity: 1;
    transform: scale(1);
}

.ambiente-zoom-btn svg {
    color: var(--accent-color);
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */
@media (max-width: 1024px) {
    .ambiente-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ambiente-sidebar {
        position: static;
        max-width: 700px;
        margin: 0 auto 10px auto;
        text-align: center;
        padding-right: 0;
    }
    
    .ambiente-sidebar h2 {
        text-align: center !important;
    }
    
    .ambiente-pills {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .ambiente-pill-btn {
        padding: 12px 24px;
    }
}

@media (max-width: 1024px) {
    /* Logo adjustments */
    .danli-logo-svg,
    .danli-logo-img {
        height: 60px;
    }
    .site-logo a {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .header-container {
        padding: 12px 16px;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-bg);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
        padding: 80px 40px;
    }
    
    .main-navigation.nav-open {
        transform: translateX(0);
        visibility: visible;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    
    .main-navigation li {
        width: 100%;
        text-align: center;
    }
    
    .main-navigation li a {
        font-size: 1.5rem;
        font-family: var(--font-heading);
        display: block;
        padding: 10px 0;
        color: var(--text-main);
    }
    
    /* Make active reserve button on mobile look awesome */
    .main-navigation li .btn-reserve {
        display: inline-block;
        width: 80%;
        margin-top: 15px;
    }

    /* Menu Toggle Hamburger Styling */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger-line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-main);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    /* Close / Transform transitions for Hamburger */
    .menu-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .menu-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }

    .quick-info-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .info-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .danli-logo-svg,
    .danli-logo-img {
        height: 52px;
    }
    .danli-logo-svg .logo-text-sub {
        display: block; /* Hủy ẩn tagline trên mobile theo yêu cầu */
    }
    .ambiente-grid-modern {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 20px;
    }
    
    .innenbereich-gallery .ambiente-card-modern,
    .aussenbereich-gallery .ambiente-card-modern {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    .ambiente-img-wrap img {
        height: 280px;
    }
    
    .ambiente-info-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 20px;
    }

    /* Modern digital menu responsive overrides */
    .digital-menu-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dish-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .dish-divider-dots {
        display: none;
    }

    .dish-price {
        font-size: 1.2rem;
        margin-top: 2px;
    }

    .menu-tabs-sticky {
        top: 55px;
        margin: 0 -20px 20px -20px;
        padding: 8px 0;
    }

    .menu-tab-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .menu-sub-header h3 {
        font-size: 1.15rem;
    }

    .menu-cat-banner {
        height: 180px !important;
        margin-bottom: 20px !important;
    }

    .menu-cat-banner h3 {
        font-size: 1.6rem !important;
    }

    .menu-controls-row {
        gap: 15px;
    }
}

/* ==========================================================================
   Light/Dark Theme Toggle Styles
   ========================================================================== */
.theme-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-toggle-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.08) rotate(15deg);
}

.theme-toggle-btn svg {
    transition: transform 0.3s ease;
}

/* Hide sun/moon icons based on active theme */
html[data-theme="light"] .sun-icon {
    display: none;
}
html:not([data-theme="light"]) .moon-icon {
    display: none;
}

html[data-theme="light"] .theme-toggle-btn {
    border-color: rgba(0, 0, 0, 0.12);
}

/* Specific component overrides for Light Mode to maximize readability and premium style */
html[data-theme="light"] .hero-content-inner {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(163, 128, 32, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .hero-desc {
    color: #444444;
}

html[data-theme="light"] .mode-btn {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .mode-btn.active {
    color: #FFFFFF;
    background: var(--accent-color);
    box-shadow: 0 4px 15px rgba(163, 128, 32, 0.3);
}

html[data-theme="light"] .menu-controls-row {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .tab-btn {
    color: #555555;
}

html[data-theme="light"] .tab-btn.active {
    color: #FFFFFF;
    background: var(--accent-color);
}

html[data-theme="light"] .dish-meta {
    border-top-color: rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .quick-info-bar {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .info-item {
    background: rgba(0, 0, 0, 0.015);
    border-color: rgba(163, 128, 32, 0.15);
}

html[data-theme="light"] .info-item:hover {
    background: rgba(163, 128, 32, 0.04);
}

html[data-theme="light"] .cookie-consent-banner {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
    color: #333333;
}

html[data-theme="light"] .cookie-btn-reject {
    background: #EEEEEE;
    color: #333333;
    border-color: #DDDDDD;
}

html[data-theme="light"] .cookie-btn-reject:hover {
    background: #E0E0E0;
}


/* ==========================================================================
   Tischreservierung (Booking Form) Premium Styles
   ========================================================================== */

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px var(--shadow-large);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="light"] .booking-form-container {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(163, 128, 32, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.booking-input {
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    width: 100%;
}

.booking-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

html[data-theme="light"] .booking-input {
    background: #FAFAFA;
    border-color: rgba(0, 0, 0, 0.12);
    color: #1C1C1C;
}

html[data-theme="light"] .booking-input:focus {
    background: #FFFFFF;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(163, 128, 32, 0.15);
}

/* Status Alert Box styles with fade & scale animation */
.booking-status-box {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    display: none;
    animation: bookingStatusFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.booking-status-box.success {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.3);
    color: #2ecc71;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.05);
}

.booking-status-box.error {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.05);
}

html[data-theme="light"] .booking-status-box.success {
    background: rgba(46, 204, 113, 0.08);
    color: #27ae60;
}

html[data-theme="light"] .booking-status-box.error {
    background: rgba(231, 76, 60, 0.08);
    color: #c0392b;
}

@keyframes bookingStatusFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Submit Button & Loader Spinner styling */
.booking-submit-btn {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.booking-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.spinner {
    animation: spin 1s linear infinite;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* WhatsApp Divider and Button Styles */
.whatsapp-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-divider::before,
.whatsapp-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-divider::before {
    margin-right: 15px;
}

.whatsapp-divider::after {
    margin-left: 15px;
}

html[data-theme="light"] .whatsapp-divider::before,
html[data-theme="light"] .whatsapp-divider::after {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: #ffffff !important;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #25D366;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.25);
}

/* Mobile Responsive Overrides for Booking Form */
@media (max-width: 768px) {
    .booking-row {
        flex-direction: column;
        gap: 15px !important;
    }
    .booking-form-container {
        padding: 25px 20px;
    }
}


/* ==========================================================================
   Booking Success Modal Overlay & Animations
   ========================================================================== */

.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.booking-modal-content {
    background: #1e1e1e;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.booking-modal-overlay.active .booking-modal-content {
    transform: scale(1);
}

html[data-theme="light"] .booking-modal-content {
    background: #ffffff;
    border-color: rgba(163, 128, 32, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(163, 128, 32, 0.08);
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.booking-modal-close:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.booking-modal-title {
    color: var(--accent-color);
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
}

.booking-modal-text {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

html[data-theme="light"] .booking-modal-text {
    color: #444444;
}

.booking-modal-btn {
    min-width: 160px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 6px;
}

/* Checkmark drawing SVG animation styles */
.booking-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.booking-modal-icon svg {
    width: 80px;
    height: 80px;
    display: block;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #2ecc71;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #2ecc71;
    fill: none;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* ==========================================================================
   Kundenbewertungen (Reviews) Premium Styles
   ========================================================================== */
   
.reviews-grid {
    display: grid;
    gap: 20px;
}

.review-card {
    background: #222;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.review-header h4 {
    color: var(--accent-color) !important;
    font-size: 1.1rem;
}

.review-form-container {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px var(--shadow-large);
}

html[data-theme="light"] .review-form-container {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: rgba(163, 128, 32, 0.2) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .review-card {
    background: #fff;
    border-color: rgba(163, 128, 32, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

html[data-theme="light"] .review-card:hover {
    box-shadow: 0 8px 25px rgba(163, 128, 32, 0.1);
    border-color: rgba(163, 128, 32, 0.4);
}

html[data-theme="light"] .review-header h4 {
    color: #333 !important;
}

html[data-theme="light"] .review-content {
    color: #555 !important;
}

html[data-theme="light"] .star-rating-select select,
html[data-theme="light"] #review_name,
html[data-theme="light"] #review_message {
    background: #FAFAFA !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #1C1C1C !important;
}

html[data-theme="light"] .star-rating-select select:focus,
html[data-theme="light"] #review_name:focus,
html[data-theme="light"] #review_message:focus {
    background: #FFFFFF !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(163, 128, 32, 0.15) !important;
}

/* ==========================================================================
   Responsive Adjustments for Menu Tabs
   ========================================================================== */
@media (max-width: 768px) {
    .menu-tabs {
        padding: 0 10px;
        gap: 8px;
    }
    .menu-tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        flex: 1 1 auto;
        text-align: center;
        white-space: normal;
    }
}
