/* ============================================================
   SITE.CSS — Na Rychtě · Premium Restaurant Template
   Zero dependencies. Vanilla CSS with custom properties.
   ============================================================ */

/* --- Design Tokens --- */
:root {
    --color-dark: #1a1008;
    --color-dark-alt: #2a1a0d;
    --color-brown: #4e321e;
    --color-gold: #c9b99a;
    --color-red: #8B1A1A;
    --color-cream: #faf8f5;
    --color-white: #ffffff;
    --color-text: #555555;
    --color-text-light: #777777;
    --color-border: #e8e4de;

    --font-heading: 'Roboto Slab', Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --container-max: 1100px;
    --header-height: 70px;
    --section-padding: 80px;

    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 30px rgba(0, 0, 0, 0.12);
}


/* ============================================================
   RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    font-weight: 400;
    line-height: 1.3;
}

::selection {
    background: var(--color-brown);
    color: var(--color-white);
}

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


/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background var(--transition-med), box-shadow var(--transition-med);
}

.site-header--transparent {
    background: transparent;
}

.site-header--solid {
    background: rgba(26, 16, 8, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-logo img {
    height: 40px;
    width: auto;
    margin-right: 16px;
    transition: opacity var(--transition-fast);
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.header-nav a {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    padding: 8px 10px;
    border-radius: 4px;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

/* Dropdown submenu */
.has-dropdown {
    position: relative;
}

.has-dropdown>a::after {
    content: '▾';
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.6;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    background: rgba(26, 16, 8, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: rgba(26, 16, 8, 0.95);
    border-top: none;
}

.has-dropdown:hover>.dropdown-menu {
    display: block;
    animation: dropdownFadeIn 0.25s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px !important;
    font-size: 11px !important;
    letter-spacing: 1.5px;
    white-space: nowrap;
    border-radius: 0 !important;
    text-align: center;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-switcher a {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 5px 4px !important;
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.lang-switcher a:hover {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.lang-switcher a.is-active {
    color: var(--color-white) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

.lang-switcher .lang-flag {
    font-size: 20px;
    line-height: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    margin: 5px 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Header phone CTA */
.header-cta {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.header-phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 7px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.header-phone-btn:hover {
    background: rgba(201, 185, 154, 0.25);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.header-phone-btn .fa {
    font-size: 12px;
}

/* Floating phone FAB (mobile only) */
.phone-fab {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 185, 154, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: phone-pulse 2s ease-in-out infinite;
}

.phone-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(201, 185, 154, 0.7);
}

@keyframes phone-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(201, 185, 154, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(201, 185, 154, 0.8);
    }
}

/* ============================================================
   HERO BANNER
   ============================================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Slideshow background layers */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.0);
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1.12);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(26, 16, 8, 0.80) 0%,
            rgba(42, 26, 13, 0.70) 40%,
            rgba(26, 16, 8, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
}

.hero-logo {
    width: 336px;
    max-width: 80vw;
    margin: 0 auto 24px;
    filter: brightness(0) invert(1);
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 40px;
}

.hero-beers {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-beers img {
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-fast);
}

.hero-beers img:hover {
    transform: translateY(-4px);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 15px;
    cursor: pointer;
}

.hero-scroll::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}


/* ============================================================
   SECTION — Generic styles
   ============================================================ */

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

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

.section-header h2 {
    font-size: 32px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-header .ornament::before,
.section-header .ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--color-gold);
}

.section-header .ornament span {
    color: var(--color-gold);
    font-size: 18px;
}


/* ============================================================
   MENU SECTION
   ============================================================ */

.menu-section {
    background: var(--color-cream);
    padding-top: 0;
}

/* Tab navigation */
.menu-tabs {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    box-shadow: var(--shadow-subtle);
}

.menu-tabs-list {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.menu-tabs-list button {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-text-light);
    background: none;
    border: none;
    padding: 22px 32px;
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.menu-tabs-list button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red), var(--color-gold));
    transition: width var(--transition-med);
}

.menu-tabs-list button:hover {
    color: var(--color-brown);
}

.menu-tabs-list button:hover::after {
    width: 60%;
}

.menu-tabs-list button.is-active {
    color: var(--color-brown);
    font-weight: 700;
}

.menu-tabs-list button.is-active::after {
    width: 80%;
}

/* Tab panels */
.menu-panel {
    display: none;
    padding: 48px 0;
    animation: fadeIn 0.4s ease;
}

.menu-panel.is-active {
    display: block;
}

/* Wolt-style category sub-navigation pills */
.menu-subnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 12px 4px;
    margin-bottom: 16px;
}



.menu-subnav-pill {
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 8px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 24px;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text);
    background: #fff;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: pointer;
}

.menu-subnav-pill:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.menu-subnav-pill.is-active {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}

@media (max-width: 768px) {
    .menu-subnav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: sticky;
        top: calc(var(--header-height) + 50px);
        z-index: 49;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        margin-left: -16px;
        margin-right: -16px;
        padding: 10px 16px;
        border-bottom: 1px solid var(--color-border);
    }

    .menu-subnav::-webkit-scrollbar {
        display: none;
    }
}

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

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

/* Menu category */
.menu-category {
    margin-bottom: 48px;
}

.menu-category h3 {
    font-size: 22px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 8px;
}

.menu-category-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    margin: 0 auto 32px;
    border: none;
}

/* Menu item row */
.menu-item {
    display: flex;
    align-items: baseline;
    padding: 12px 0;
    gap: 12px;
    border-bottom: 1px dotted var(--color-border);
}

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

.menu-item-weight {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-text-light);
    min-width: 50px;
    flex-shrink: 0;
    font-style: italic;
}

.menu-item-name {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-brown);
    font-weight: 400;
}

.menu-item-dots {
    flex: 1;
    min-width: 30px;
    border-bottom: 1px dotted var(--color-border);
    height: 0;
    margin: 0 4px;
    align-self: center;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-red);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Download links */
.menu-day-title {
    text-align: center;
    color: var(--color-gold);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.menu-day-title .fa {
    margin-right: 6px;
}

.menu-day-hours {
    font-weight: 400;
    font-size: 0.8em;
    opacity: 0.7;
}

.menu-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-light);
}

.menu-empty .fa {
    color: var(--color-gold);
    margin-right: 4px;
}

.menu-empty a {
    color: var(--color-gold);
    text-decoration: underline;
}

.menu-downloads {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 32px 0 16px;
    margin-top: 24px;
    border-top: 1px solid var(--color-border);
}

.menu-downloads a {
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.menu-downloads a:hover {
    color: var(--color-brown);
    border-color: var(--color-brown);
    background: rgba(78, 50, 30, 0.04);
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
    background: var(--color-white);
}

.about-content {
    max-width: 960px;
    margin: 0 auto;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 72px;
}

.about-block:last-child {
    margin-bottom: 0;
}

.about-block--reverse {
    direction: rtl;
}

.about-block--reverse>* {
    direction: ltr;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-dark);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

.about-block--reverse .about-text h3::after {
    left: 0;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 14px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.about-features li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 8px;
}

.about-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 10px;
    top: 4px;
}

/* When li has a FA icon, hide default bullet */
.about-features li>.fa {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--color-gold);
    font-size: 12px;
    width: 16px;
    text-align: center;
}

.about-features li:has(> .fa)::before {
    display: none;
}

/* About heading icons */
.about-icon {
    color: var(--color-gold);
    margin-right: 6px;
    font-size: 0.85em;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about-image img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}


/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */

.newsletter-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.newsletter-section .section-header h2 {
    color: var(--color-white);
}

.newsletter-section .ornament span {
    color: var(--color-gold);
}

.newsletter-section .ornament::before,
.newsletter-section .ornament::after {
    background: rgba(201, 185, 154, 0.3);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    text-align: center;
}

.newsletter-perks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 32px;
}

.newsletter-perk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 6px 14px;
    border: 1px solid rgba(201, 185, 154, 0.25);
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.newsletter-perk:hover {
    background: rgba(201, 185, 154, 0.1);
    border-color: rgba(201, 185, 154, 0.5);
}

.newsletter-perk .fa {
    font-size: 13px;
}

.newsletter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.newsletter-field--full {
    grid-column: 1 / -1;
}

.newsletter-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 185, 154, 0.25);
}

.newsletter-input::placeholder {
    color: var(--color-text-light);
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    line-height: 1.5;
}

.newsletter-checkbox input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--color-gold);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.newsletter-btn {
    display: inline-block;
    padding: 16px 48px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-gold), #d4c9a0);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(201, 185, 154, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 185, 154, 0.5);
    background: linear-gradient(135deg, #d4c9a0, var(--color-gold));
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-gdpr {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
}

.newsletter-gdpr i {
    margin-right: 4px;
    color: var(--color-gold);
    opacity: 0.5;
}

/* Flash messages */
.flash {
    max-width: 600px;
    margin: 16px auto;
    padding: 14px 20px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.flash.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.flash.info {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.flash.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.2);
}

/* AJAX Flash messages */
.ajax-flash {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-heading);
    text-align: center;
    animation: flashSlideIn 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ajax-flash .fa {
    margin-right: 6px;
}

.ajax-flash--success {
    background: rgba(201, 185, 154, 0.15);
    color: var(--color-gold);
    border: 1px solid rgba(201, 185, 154, 0.3);
}

.ajax-flash--info {
    background: rgba(33, 150, 243, 0.1);
    color: #64b5f6;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.ajax-flash--error {
    background: rgba(244, 67, 54, 0.1);
    color: #ef5350;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.ajax-flash--hide {
    opacity: 0;
    transform: translateY(-10px);
}

@keyframes flashSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

/* Button loading state */
.is-loading {
    opacity: 0.6;
    cursor: wait !important;
}

/* ===== Lunch Cart ===== */

/* Add to cart button in menu items */
.cart-add-btn {
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 2px 6px;
    margin-left: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.cart-add-btn:hover {
    color: #e8d5a3;
    transform: scale(1.25);
}

.cart-add-btn.added {
    animation: cartPulse 0.4s ease;
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
        color: #4caf50;
    }

    100% {
        transform: scale(1);
    }
}

/* Floating cart badge */
.cart-badge {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--color-gold);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
}

.cart-badge span {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

/* Cart panel */
.cart-panel {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px 28px;
    animation: flashSlideIn 0.4s ease;
    box-shadow: var(--shadow-subtle);
}

.cart-panel-title {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.cart-panel-title .fa {
    margin-right: 8px;
}

/* Cart item rows */
.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-name {
    flex: 1;
    color: var(--color-dark);
}

.cart-item-weight {
    color: var(--color-text-light);
    font-size: 0.85rem;
    min-width: 50px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-item-controls button {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-dark);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.cart-item-controls button:hover {
    background: rgba(201, 185, 154, 0.2);
}

.cart-item-controls .cart-qty {
    font-weight: 600;
    min-width: 24px;
    text-align: center;
    color: var(--color-gold);
}

.cart-item-price {
    color: var(--color-gold);
    font-weight: 600;
    min-width: 70px;
    text-align: right;
}

.cart-item-remove {
    background: none !important;
    border: none !important;
    color: var(--color-text-light) !important;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 4px;
    transition: color 0.2s ease !important;
}

.cart-item-remove:hover {
    color: #e53935 !important;
}

/* Cart summary */
.cart-summary {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.cart-total-label {
    font-size: 1.1rem;
    color: var(--color-dark);
}

.cart-total-price {
    font-size: 1.3rem;
    color: var(--color-red);
    font-weight: 700;
}

.cart-min-warning {
    color: #ff9800;
    font-size: 0.85rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Cart form */
.cart-form {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.cart-form h4 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.cart-form h4 .fa {
    margin-right: 6px;
}

.cart-form-row {
    margin-bottom: 14px;
}

.cart-form-row label {
    display: block;
    color: var(--color-text);
    font-size: 0.85rem;
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.cart-form-row input,
.cart-form-row textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-dark);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

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

.cart-form-row input::placeholder,
.cart-form-row textarea::placeholder {
    color: var(--color-text-light);
}

.cart-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-gold);
    color: var(--color-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cart-submit-btn:hover {
    background: #e8d5a3;
    transform: translateY(-1px);
}

.cart-submit-btn.is-loading {
    opacity: 0.6;
    cursor: wait;
}

.cart-empty-msg {
    text-align: center;
    color: var(--color-text-light);
    padding: 16px;
    font-style: italic;
}

/* Address distance feedback */
.cart-address-feedback {
    margin-top: 6px;
    font-size: 0.85rem;
    min-height: 1.2em;
    transition: color 0.2s ease;
}

.cart-address-feedback.is-checking {
    color: var(--color-text-light);
}

.cart-address-feedback.is-ok {
    color: #2d7a3a;
}

.cart-address-feedback.is-warn {
    color: #c67600;
    font-weight: 600;
}

.cart-address-feedback.is-error {
    color: var(--color-red);
    font-weight: 600;
}

/* Shared field validation feedback */
.cart-field-feedback {
    margin-top: 4px;
    font-size: 0.85rem;
    min-height: 0;
    transition: color 0.2s ease;
}

.cart-field-feedback.is-ok {
    color: #2d7a3a;
}

.cart-field-feedback.is-error {
    color: var(--color-red);
    font-weight: 600;
}

.input-error {
    border-color: var(--color-red) !important;
    box-shadow: 0 0 0 2px rgba(200, 40, 40, 0.15);
}

.input-ok {
    border-color: #2d7a3a !important;
    box-shadow: 0 0 0 2px rgba(45, 122, 58, 0.12);
}

/* Light feedback colors on dark backgrounds */
.write-us-section .cart-field-feedback.is-ok,
.newsletter-section .cart-field-feedback.is-ok {
    color: #5fdc77;
}

.write-us-section .cart-field-feedback.is-error,
.newsletter-section .cart-field-feedback.is-error {
    color: #ff7b7b;
}

.write-us-section .input-error,
.newsletter-section .input-error {
    border-color: #ff7b7b !important;
    box-shadow: 0 0 0 2px rgba(255, 123, 123, 0.25);
}

.write-us-section .input-ok,
.newsletter-section .input-ok {
    border-color: #5fdc77 !important;
    box-shadow: 0 0 0 2px rgba(95, 220, 119, 0.2);
}

/* Mode toggle buttons */
.cart-mode-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.cart-mode-btn {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
}

.cart-mode-btn:hover {
    background: rgba(183, 142, 58, 0.1);
}

.cart-mode-btn.is-active {
    background: var(--color-gold);
    color: #fff;
}

.cart-mode-btn i {
    margin-right: 6px;
}

/* Announcements (Aktuality) */
.announcements-section {
    padding: 32px 0 16px;
}

.announcement-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #fdf8f0 0%, #f5efe5 100%);
    border-left: 4px solid var(--color-gold);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.announcement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.announcement-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
}

.announcement-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-dark);
    margin: 0 0 6px;
    letter-spacing: 0.5px;
}

.announcement-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px) {
    .announcement-card {
        flex-direction: column;
        gap: 12px;
        padding: 18px 20px;
    }
}

/* Announcements Carousel */
.announcements-carousel {
    position: relative;
    overflow: hidden;
}

.announcement-slide {
    display: none;
    animation: annFadeIn 0.4s ease;
}

.announcement-slide.active {
    display: block;
}

@keyframes annFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.announcements-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.ann-nav-btn {
    background: none;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ann-nav-btn:hover {
    background: var(--color-gold);
    color: #fff;
}

.ann-dots {
    display: flex;
    gap: 8px;
}

.ann-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.ann-dot.active {
    background: var(--color-gold);
}

/* Closed ordering banner — prominent */
.cart-closed-banner {
    text-align: center;
    padding: 32px 24px;
    margin: 32px 0;
    background: linear-gradient(135deg, #fdf2e9 0%, #fce8d5 100%);
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(201, 185, 154, 0.2);
}

.closed-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.closed-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.closed-info {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.7;
}

.closed-info strong {
    color: var(--color-dark);
}

/* Order confirmation panel */
.order-confirmation {
    text-align: center;
    padding: 16px 0;
}

.order-confirm-icon {
    font-size: 3rem;
    color: #2d7a3a;
    margin-bottom: 8px;
    animation: confirmPop 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes confirmPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.order-confirm-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark);
    margin: 0 0 4px;
}

.order-confirm-subtitle {
    color: var(--color-text);
    font-size: 0.95rem;
    margin: 0 0 20px;
}

.order-confirm-details {
    text-align: left;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.order-confirm-time {
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.order-confirm-time i {
    margin-right: 4px;
}

.order-confirm-items {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.order-confirm-items thead th {
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    padding: 6px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-confirm-items thead th:last-child,
.order-confirm-items td.order-price {
    text-align: right;
}

.order-confirm-items thead th:nth-child(2),
.order-confirm-items td.order-qty {
    text-align: center;
    width: 40px;
}

.order-confirm-items tbody td {
    padding: 8px 0;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.order-item-weight {
    color: var(--color-text-light);
    font-size: 0.8rem;
}

.order-confirm-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--color-border);
    text-align: right;
    font-size: 1.1rem;
    color: var(--color-dark);
}

.order-confirm-total strong {
    color: var(--color-red);
    font-size: 1.25rem;
}

.order-confirm-contact {
    text-align: left;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
}

.order-confirm-contact p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: var(--color-text);
}

.order-confirm-contact i {
    width: 18px;
    text-align: center;
    color: var(--color-text-light);
    margin-right: 6px;
}

.order-confirm-note {
    font-size: 0.85rem;
    color: var(--color-text);
    margin: 0 0 16px;
}

/* Address autocomplete */
.address-autocomplete-wrap {
    position: relative;
}

.address-suggestions {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}

.address-suggestion {
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-dark);
    transition: background 0.15s ease;
}

.address-suggestion:hover {
    background: rgba(201, 185, 154, 0.12);
}

.address-suggestion .fa {
    color: var(--color-text-light);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.suggestion-main {
    flex: 1;
}

.suggestion-sub {
    color: var(--color-text-light);
    font-size: 0.78rem;
    white-space: nowrap;
}

/* QR Payment code */
.order-qr-payment {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 2px solid #86efac;
    border-radius: 12px;
    text-align: center;
}

.order-qr-payment h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #166534;
    margin: 0 0 4px;
}

.order-qr-payment h4 .fa {
    margin-right: 6px;
}

.qr-instruction {
    font-size: 0.85rem;
    color: #15803d;
    margin: 0 0 12px;
}

.qr-code-wrap {
    display: flex;
    justify-content: center;
    margin: 8px 0 12px;
}

.qr-code-wrap img {
    border-radius: 8px;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.qr-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #166534;
}

.qr-details p {
    margin: 2px 0;
}

.order-new-btn {
    margin-top: 8px;
}

/* About links */
.about-link {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.about-link:hover {
    color: #b5a57a;
}


/* About table — celebrations pricing */
.about-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 14px;
}

.about-table thead th {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-dark);
    padding: 12px 16px;
    text-align: left;
}

.about-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.about-table thead th:last-child {
    border-radius: 0 8px 0 0;
    text-align: center;
}

.about-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--color-text);
    vertical-align: middle;
}

.about-table tbody tr:nth-child(even) {
    background: rgba(201, 185, 154, 0.06);
}

.about-table tbody tr:hover {
    background: rgba(201, 185, 154, 0.12);
    transition: background var(--transition-fast);
}

.about-table tbody td:last-child {
    text-align: center;
}

.about-table-btn {
    display: inline-block;
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-gold), #d4c9a0);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(201, 185, 154, 0.25);
    white-space: nowrap;
}

.about-table-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201, 185, 154, 0.4);
    background: linear-gradient(135deg, #d4c9a0, var(--color-gold));
    color: var(--color-dark);
}

.about-table-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 8px;
}


/* Write us — select */
.write-us-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
}

.write-us-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 185, 154, 0.25);
}

.write-us-submit {
    text-align: center;
    margin-top: 8px;
}


/* ============================================================
   WRITE US (CONTACT FORM)
   ============================================================ */

.write-us-section {
    background: var(--color-dark);
    color: var(--color-white);
}

.write-us-section .section-header h2 {
    color: var(--color-white);
}

.write-us-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.write-us-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.write-us-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.write-us-field--full {
    grid-column: 1 / -1;
}

.write-us-input,
.write-us-textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 6px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.write-us-input:focus,
.write-us-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 185, 154, 0.25);
}

.write-us-input::placeholder,
.write-us-textarea::placeholder {
    color: var(--color-text-light);
}

.write-us-textarea {
    min-height: 140px;
    resize: vertical;
}

.write-us-btn {
    display: inline-block;
    padding: 16px 48px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-dark);
    background: linear-gradient(135deg, var(--color-gold), #d4c9a0);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(201, 185, 154, 0.3);
}

.write-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 185, 154, 0.5);
    background: linear-gradient(135deg, #d4c9a0, var(--color-gold));
}

.write-us-btn:active {
    transform: translateY(0);
}


/* ============================================================
   GALLERY
   ============================================================ */

/* Gallery carousel */
.gallery-carousel {
    position: relative;
}

.gallery-carousel-track {
    position: relative;
    overflow: hidden;
}

.gallery-page {
    display: none;
    animation: galleryFadeIn 0.5s ease;
}

.gallery-page.is-active {
    display: block;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(201, 185, 154, 0.4);
    background: rgba(26, 16, 8, 0.7);
    color: var(--color-gold);
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.gallery-arrow:hover {
    background: rgba(201, 185, 154, 0.3);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow--prev {
    left: -24px;
}

.gallery-arrow--next {
    right: -24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(201, 185, 154, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.gallery-dot.is-active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.2);
}

.gallery-dot:hover {
    border-color: var(--color-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 16, 8, 0);
    transition: background var(--transition-fast);
}

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

.gallery-item:hover::after {
    background: rgba(26, 16, 8, 0.3);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 40px;
    cursor: pointer;
    padding: 16px;
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.lightbox-nav:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}


/* ============================================================
   ACCOMMODATION
   ============================================================ */

.accommodation-section {
    background: var(--color-white);
}

.accommodation-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.accommodation-frame iframe {
    width: 100%;
    border: 0;
    display: block;
}


/* ============================================================
   CONTACT / MAP
   ============================================================ */

.contact-section {
    padding: 0;
    position: relative;
}

.contact-map {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    filter: grayscale(100%) sepia(20%) contrast(0.9) brightness(1.05);
}

.contact-card {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    background: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    max-width: 380px;
    z-index: 10;
}

.contact-card h3 {
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-card-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-red));
    border: none;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    color: var(--color-gold);
    width: 18px;
    text-align: center;
    margin-top: 3px;
    flex-shrink: 0;
}


/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
    list-style: none;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201, 185, 154, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .contact-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        max-width: 100%;
        border-radius: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
        --header-height: 60px;
    }

    /* Mobile nav overlay */
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-dark);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 4px;
        transition: right var(--transition-med);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
    }

    .header-nav.is-open {
        right: 0;
    }

    .header-nav a {
        font-size: 15px;
        letter-spacing: 3px;
        padding: 14px 16px;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    /* Mobile dropdown — inline instead of absolute */
    .has-dropdown>a::after {
        content: '▸';
    }

    .dropdown-menu {
        display: none;
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        margin-top: 2px;
    }

    .dropdown-menu::before {
        display: none;
    }

    .has-dropdown:hover>.dropdown-menu,
    .has-dropdown.is-open>.dropdown-menu {
        display: block;
        animation: none;
    }

    .dropdown-menu a {
        padding: 10px 16px 10px 32px !important;
        font-size: 13px !important;
        letter-spacing: 2px;
    }

    /* Language switcher mobile */
    .lang-switcher {
        flex-direction: row;
        justify-content: center;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Phone: hide desktop CTA, show floating FAB */
    .header-cta {
        display: none;
    }

    .phone-fab {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-beers {
        gap: 8px;
    }

    .hero-beers img {
        max-height: 50px;
    }

    /* Tabs */
    .menu-tabs-list button {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 16px 16px;
    }

    /* Menu items */
    .menu-item {
        flex-wrap: wrap;
    }

    .menu-item-dots {
        display: none;
    }

    .menu-item-price {
        margin-left: auto;
    }

    /* About */
    .about-block {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-block--reverse {
        direction: ltr;
    }

    .about-image img {
        max-width: 260px;
    }

    /* Newsletter */
    .newsletter-fields {
        grid-template-columns: 1fr;
    }

    /* Write us */
    .write-us-fields {
        grid-template-columns: 1fr;
    }

    /* About table responsive */
    .about-table thead th:nth-child(3),
    .about-table tbody td:nth-child(3) {
        display: none;
    }

    .about-table thead th,
    .about-table tbody td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .about-table-btn {
        padding: 6px 12px;
        font-size: 10px;
        letter-spacing: 1px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .gallery-arrow--prev {
        left: 4px;
    }

    .gallery-arrow--next {
        right: 4px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 24px;
        letter-spacing: 4px;
    }

    /* Download links */
    .menu-downloads {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Cart items – two-row layout on mobile */
    .cart-item {
        flex-wrap: wrap;
        gap: 6px 8px;
        padding: 12px 0;
    }

    .cart-item-weight {
        min-width: auto;
        font-size: 0.8rem;
    }

    .cart-item-name {
        flex-basis: calc(100% - 65px);
        /* full width minus weight */
        font-size: 0.9rem;
    }

    /* Second row: controls + price + trash pushed to right */
    .cart-item-controls {
        margin-left: auto;
    }

    .cart-item-controls button {
        width: 30px;
        height: 30px;
    }

    .cart-item-price {
        min-width: 55px;
        font-size: 0.9rem;
    }

    .cart-item-remove {
        padding: 2px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 160px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 24px;
    }

    .hero-beers img {
        max-height: 40px;
    }

    .menu-tabs-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 12px;
    }

    .menu-tabs-list button {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .lightbox-nav {
        display: none;
    }
}

/* Food tag badges on frontend */
.food-tag {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    margin-left: 4px;
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.menu-item.is-soldout {
    opacity: 0.45;
    text-decoration: line-through;
    pointer-events: none;
}

.menu-item.is-soldout .food-tag {
    text-decoration: none;
}

/* ================================================================== */
/*  SUBPAGE LAYOUT                                                     */
/* ================================================================== */

.subpage-content {
    padding-top: 100px;
    min-height: 60vh;
}

/* On subpages, header must always be solid dark (no transparent hero beneath) */
.subpage .site-header,
.subpage .site-header.site-header--transparent {
    background: rgba(26, 16, 8, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ================================================================== */
/*  ROOMS LIST (/ubytovani)                                            */
/* ================================================================== */

.rooms-section {
    padding: 60px 0 40px;
}

.rooms-section .section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.room-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-subtle);
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.room-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-border);
}

.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.room-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    color: var(--color-gold);
    font-size: 3rem;
}

.room-card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--color-dark);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.room-card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.room-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.room-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.room-meta-item i {
    color: var(--color-brown);
}

.room-card-desc {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0 0 16px;
    flex: 1;
}

.room-card-link {
    color: var(--color-red);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s;
}

.room-card:hover .room-card-link {
    color: var(--color-brown);
}

/* Booking CTA section */
.rooms-booking-cta {
    margin-top: 64px;
    text-align: center;
}

.rooms-booking-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.rooms-booking-cta p {
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* ================================================================== */
/*  ROOM DETAIL (/ubytovani/pokoj/{id})                                */
/* ================================================================== */

.room-detail-section {
    padding: 20px 0 60px;
}

/* Breadcrumb */
.room-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.room-breadcrumb a {
    color: var(--color-red);
    text-decoration: none;
    transition: color 0.2s;
}

.room-breadcrumb a:hover {
    color: var(--color-brown);
}

.room-breadcrumb strong {
    color: var(--color-dark);
}

/* Detail header */
.room-detail-header {
    margin-bottom: 36px;
}

.room-detail-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin: 0 0 16px;
}

.room-detail-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.room-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(78, 50, 30, 0.08);
    border: 1px solid var(--color-border);
    color: var(--color-brown);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.room-badge-price {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-gold);
    font-weight: 700;
}

/* Detail content layout */
.room-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Gallery */
.room-detail-gallery {
    border-radius: 12px;
    overflow: hidden;
}

.room-main-photo {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.room-photo-placeholder {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-gold);
    font-size: 3rem;
}

.room-photo-placeholder span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Thumbnail gallery */
.room-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.room-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.room-thumb:hover {
    opacity: 1;
}

.room-thumb.is-active {
    opacity: 1;
    border-color: var(--color-brown);
}

/* Info blocks */
.room-info-block {
    margin-bottom: 28px;
}

.room-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-brown);
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
}

.room-info-block p {
    color: var(--color-text);
    line-height: 1.7;
    margin: 0;
}

.room-info-block p i {
    color: var(--color-brown);
    margin-right: 6px;
}

/* Amenities list */
.room-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    font-size: 0.9rem;
    padding: 4px 0;
}

.room-amenities-list li i {
    color: var(--color-brown);
    font-size: 0.8rem;
}

/* Back button */
.btn-back {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-brown);
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    margin-top: 12px;
}

.btn-back:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-gold);
}

/* Booking section */
.room-booking {
    text-align: center;
}

.room-booking h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 8px;
}

/* ================================================================== */
/*  ROOMS RESPONSIVE                                                   */
/* ================================================================== */

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .room-detail-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .room-detail-header h1 {
        font-size: 1.5rem;
    }

    .room-amenities-list {
        grid-template-columns: 1fr;
    }

    .subpage-content {
        padding-top: 80px;
    }
}

/* ── Room Slider (homepage about section) ── */
.room-slider-wrap {
    flex: 1;
    min-width: 0;
}

.room-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.room-slider::-webkit-scrollbar {
    display: none;
}

.room-slider-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-cream, #faf8f5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.room-slider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.room-slider-photo {
    height: 220px;
    overflow: hidden;
}

.room-slider-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slider-info {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.room-slider-info strong {
    font-size: 0.85rem;
    color: var(--color-brown, #5a3e28);
    line-height: 1.3;
}

.room-slider-info span {
    font-size: 0.78rem;
    color: #888;
}

.room-slider-info span i {
    margin-right: 3px;
}

/* Anti-spam honeypot — DO NOT REMOVE */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}