/*
Theme Name: Krone Theme
Theme URI: https://kronerietheim.ch
Description: Pixelgenaues Custom Theme für Gasthaus Krone Rietheim - Version 3.0
Author: Gasthaus Krone
Version: 3.0.0
Text Domain: krone-theme
*/

/* ========================================
   CSS VARIABLEN (exakt aus HTML)
======================================== */
:root {
    --burgundy: #5c2c35;
    --burgundy-deep: #3d1f25;
    --cream: #f8f5f0;
    --cream-dark: #efe9e0;
    --wood: #3d2c2c;
    --gold: #c9a227;
    --gold-muted: #b8956e;
    --text: #2d2626;
    --text-light: #6b5f5f;
    --white: #fff;
    --black: #1a1515;
}

/* ========================================
   RESET & BASIS
======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
}
a { transition: all .3s; }
img { max-width: 100%; height: auto; }
/* ========================================
   NAVIGATION (Homepage - transparent -> scroll)
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .5s;
}
.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    opacity: 0;
    transition: opacity .5s;
    z-index: -1;
    box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.nav.scrolled::before { opacity: 1; }

/* Navigation für Unterseiten (immer weiss) */
.nav.nav-light {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0,0,0,.05);
}
.nav.nav-light::before { display: none; }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--white);
    transition: color .5s;
}
.nav.scrolled .nav-logo,
.nav.nav-light .nav-logo { color: var(--burgundy); }

.nav-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter .5s;
}
.nav.scrolled .nav-logo-img,
.nav.nav-light .nav-logo-img { filter: none; }

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-center {
    display: flex;
    gap: 28px;
    list-style: none;
}
.nav-center a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    transition: all .3s;
    padding: 8px 0;
}
.nav.scrolled .nav-center a,
.nav.nav-light .nav-center a { color: var(--text) !important; }
.nav-center a:hover,
.nav-center a.active { color: var(--gold) !important; }
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: color .5s;
}
.nav.scrolled .nav-phone,
.nav.nav-light .nav-phone { color: var(--text) !important; }

.nav-cta {
    background: var(--burgundy);
    color: #ffffff !important;
    padding: 10px 20px;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 600;
    transition: all .3s;
}
}
.nav-cta:hover { background: var(--burgundy-deep); }

.nav-mobile {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    font-size: 1.5rem;
}
.nav.scrolled .nav-mobile,
.nav.nav-light .nav-mobile { color: var(--burgundy); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 5%;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    z-index: 999;
}
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 16px; }
.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
}
.mobile-menu a:hover { color: var(--burgundy); }

/* ========================================
   HERO (Homepage)
======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 5% 8%;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.8s;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(29,21,21,.3) 0%, rgba(29,21,21,.1) 40%, rgba(29,21,21,.4) 70%, rgba(29,21,21,.85) 100%);
}
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    color: #ffffff !important;
}
.hero-content * {
    color: #ffffff !important;
}
.hero-title em {
    color: #b8956e !important;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .3s forwards;
}
.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .8s .5s forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--gold-muted);
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,.8);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .7s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s .9s forwards;
}
.hero-slider-nav {
    position: absolute;
    bottom: 8%;
    right: 5%;
    display: flex;
    gap: 8px;
    z-index: 20;
}
.slider-dot {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,.3);
    cursor: pointer;
    transition: all .4s;
    border: none;
    padding: 0;
}
.slider-dot.active {
    background: var(--white);
    width: 60px;
}

/* ========================================
   PAGE HERO (Unterseiten)
======================================== */
.page-hero {
    padding: 160px 5% 80px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-deep));
    color: #ffffff !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    position: relative;
    color: #ffffff !important;
}
.page-hero p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    color: #ffffff !important;
}
}
/* Gutschein Hero Icon */
.page-hero.gutschein-hero::before {
    content: '🎁';
    position: absolute;
    font-size: 20rem;
    opacity: .05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .4s;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--burgundy);
    color: #ffffff !important;
}
.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(92,44,53,.4);
}
.btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}
.btn-gold {
    background: var(--gold);
    color: #1a1515 !important;
}
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,162,39,.4);
}

/* ========================================
   TAGESMENU BANNER
======================================== */
.tagesmenu-banner {
    background: var(--gold);
    padding: 16px 5%;
    text-align: center;
}
.tagesmenu-banner a {
    color: #1a1515 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.tagesmenu-banner a:hover { text-decoration: underline; }

/* ========================================
   TRUST BAR
======================================== */
.trust-bar {
    background: var(--burgundy-deep);
    padding: 20px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.9);
    font-size: .9rem;
}
.trust-item a {
    color: #ffffff !important;
    text-decoration: none;
}
.trust-item a strong {
    color: var(--gold) !important;
}
}

/* ========================================
   SECTION LABELS
======================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 20px;
}
.section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--burgundy);
}
.section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--wood);
    margin-bottom: 24px;
}
.section-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

/* ========================================
   INTRO SECTION (Homepage)
======================================== */
.intro {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.intro-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--burgundy);
    font-size: 1.2rem;
}
.intro-feature h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.intro-feature p {
    font-size: .9rem;
    color: var(--text-light);
}
.intro-visual { position: relative; }
.intro-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}
.intro-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 24px;
}
.intro-accent .temp {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
}
.intro-accent .label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    opacity: .9;
}

/* ========================================
   GUTSCHEIN SECTION (Homepage)
======================================== */
.gutschein {
    background: var(--wood);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}
.gutschein::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/slide2.JPG') center/cover;
    opacity: .15;
}
.gutschein-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.gutschein-content { color: var(--white); }
.gutschein .section-label { color: var(--gold); }
.gutschein .section-label::before { background: var(--gold); }
.gutschein .section-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.gutschein .section-text {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    max-width: 480px;
}
.gutschein-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0 40px;
}
.gutschein-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
    color: rgba(255,255,255,.9);
}
.gutschein-benefit::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
}
.gutschein-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.gutschein-card {
    background: var(--cream);
    padding: 32px;
    text-align: center;
    width: 160px;
    transition: all .4s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.gutschein-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.gutschein-card-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 4px;
}
.gutschein-card-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
}
.gutschein-card.featured {
    background: var(--burgundy);
    transform: scale(1.1);
}
.gutschein-card.featured:hover { transform: scale(1.1) translateY(-8px); }
.gutschein-card.featured .gutschein-card-amount { color: var(--white); }
.gutschein-card.featured .gutschein-card-label { color: rgba(255,255,255,.8); }

/* ========================================
   REVIEW SECTION
======================================== */
.review-section {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}
.review-section h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.review-section p {
    color: var(--text-light);
    margin-bottom: 30px;
}
.review-stars {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.review-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--burgundy);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}
.review-btn:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
}

/* ========================================
   NEWSLETTER
======================================== */
.newsletter {
    padding: 80px 5%;
    background: var(--cream-dark);
}
.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.newsletter h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.newsletter p {
    color: var(--text-light);
    margin-bottom: 30px;
}
.newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 1px solid var(--cream);
    font-size: .95rem;
    font-family: inherit;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--burgundy);
}
.newsletter-form button {
    padding: 16px 32px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
}
.newsletter-form button:hover { background: var(--burgundy-deep); }

/* ========================================
   GESCHICHTE SECTION
======================================== */
.geschichte {
    padding: 100px 5%;
    background: var(--cream);
}
.geschichte-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.geschichte .section-title { margin-bottom: 40px; }
.geschichte-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 50px;
}
.geschichte .section-label {
    color: var(--burgundy) !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}
.geschichte .section-label::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--burgundy) !important;
}
.timeline-year {
    color: var(--burgundy) !important;
}
}
.timeline-item { text-align: center; }
.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 8px;
}
.timeline-label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ========================================
   KONTAKT CTA
======================================== */
.kontakt-cta {
    padding: 100px 5%;
    background: var(--burgundy);
    text-align: center;
    color: var(--white);
}
.kontakt-cta .section-title {
    color: var(--white);
    margin-bottom: 16px;
}
.kontakt-cta .section-text {
    color: rgba(255,255,255,.8);
    max-width: 500px;
    margin: 0 auto 40px;
}
.kontakt-options {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.kontakt-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.1);
    padding: 20px 32px;
    text-decoration: none;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .3s;
}
.kontakt-option-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
    color: #ffffff !important;
}
.kontakt-option-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff !important;
}
}
.kontakt-option:hover {
    background: var(--white);
    color: var(--burgundy);
}
.kontakt-option-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
}
.kontakt-option-value {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ========================================
   SLOGAN
======================================== */
.slogan {
    padding: 50px 5%;
    background: var(--burgundy-deep);
    text-align: center;
}
.slogan.slogan-wood { background: var(--wood); }
.slogan p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #ffffff !important;
    margin: 0;
}
}

/* ========================================
   MENU SEITE
======================================== */
.menu-cards {
    padding: 80px 5%;
    background: var(--cream);
}
.menu-cards-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.menu-card {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.menu-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s;
}
.menu-card:hover .menu-card-image { transform: scale(1.05); }
.menu-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.1) 100%);
    z-index: 1;
}
.menu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #ffffff !important;
}
.menu-card-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #ffffff !important;
}
.menu-card-desc {
    font-size: .9rem;
    opacity: .85;
    margin-bottom: 16px;
    color: #ffffff !important;
}
}
.menu-card-btn {
    display: inline-block !important;
    padding: 12px 28px !important;
    background: #ffffff !important;
    color: var(--burgundy) !important;
    font-size: .85rem;
    font-weight: 600;
    transition: all .3s;
    opacity: 1 !important;
    visibility: visible !important;
}
.menu-card:hover .menu-card-btn {
    background: var(--gold);
    color: var(--black);
}
.menu-card.tagesmenu { border: 3px solid var(--gold); }
.menu-card.tagesmenu::after {
    content: 'TÄGLICH FRISCH';
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 40px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    transform: rotate(45deg);
    z-index: 3;
}
.menu-info {
    padding: 60px 5%;
    background: var(--white);
    text-align: center;
}
.menu-info p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}
.menu-info a {
    color: var(--burgundy);
    font-weight: 600;
}

/* ========================================
   RÄUME SEITE
======================================== */
.raeume-intro {
    padding: 80px 5%;
    text-align: center;
    background: var(--white);
}
.raeume-intro h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.raeume-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}
.raum-section { padding: 100px 5%; }
.raum-section:nth-child(even) { background: var(--white); }
.raum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.raum-grid.reverse .raum-image { order: 2; }
.raum-image {
    aspect-ratio: 4/3;
    background: var(--cream-dark);
    overflow: hidden;
}
.raum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.raum-content h2 {
    font-size: 2.2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.raum-content .capacity {
    display: inline-block;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 20px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.raum-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.raum-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.raum-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--text);
}
.raum-feature::before {
    content: '✓';
    color: var(--burgundy);
    font-weight: 700;
}
.events-section {
    padding: 100px 5%;
    background: var(--burgundy-deep);
    color: #ffffff !important;
    text-align: center;
}
.events-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff !important;
}
.events-section > p {
    font-size: 1.1rem;
    opacity: .85;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ffffff !important;
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.event-card {
    background: rgba(255,255,255,.1);
    padding: 30px 20px;
    border: 1px solid rgba(255,255,255,.2);
}
.event-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #ffffff !important;
}
.event-card p {
    font-size: .85rem;
    opacity: .8;
    color: #ffffff !important;
}
.cta-section {
    padding: 80px 5%;
    background: var(--cream);
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.cta-section a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--burgundy);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s;
}
}
.cta-section a:hover { background: var(--burgundy-deep); }

/* ========================================
   GALERIE SEITE
======================================== */
.galerie-section {
    padding: 80px 5%;
}
.galerie-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 50px;
}
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.galerie-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.galerie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.4), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.galerie-item:hover::after { opacity: 1; }
.galerie-placeholder {
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: .9rem;
}
.galerie-cta {
    text-align: center;
    padding: 60px 5%;
    background: var(--cream-dark);
}
.galerie-cta h2 {
    font-size: 1.8rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.galerie-cta p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.galerie-cta a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s;
}
.galerie-cta a:hover { background: var(--burgundy-deep); }

/* ========================================
   KONTAKT SEITE
======================================== */
.kontakt-main {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.kontakt-info h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 30px;
}
.kontakt-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--cream-dark);
}
.kontakt-item:last-of-type { border-bottom: none; }
.kontakt-item-icon {
    width: 50px;
    height: 50px;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.kontakt-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.kontakt-item p {
    font-size: .95rem;
    color: var(--text-light);
}
.kontakt-item a {
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
}
.kontakt-item a:hover { text-decoration: underline; }
.kontakt-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.kontakt-map {
    min-height: 400px;
}
.kontakt-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
.oeffnungszeiten {
    padding: 80px 5%;
    background: var(--white);
}
.oeffnungszeiten-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.oeffnungszeiten h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 40px;
}
.oeffnungszeiten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.oeffnungszeiten-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--cream);
}
.oeffnungszeiten-item.closed { opacity: .6; }
.oeffnungszeiten-day { font-weight: 600; }
.oeffnungszeiten-time { color: var(--text-light); }
.anfahrt {
    padding: 80px 5%;
    background: var(--cream);
}
.anfahrt-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.anfahrt h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 20px;
}
.anfahrt > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
}
.anfahrt-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.anfahrt-detail {
    background: var(--white);
    padding: 30px;
    text-align: center;
}
.anfahrt-detail h3 {
    font-family: 'Manrope', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}
.anfahrt-detail p {
    font-size: .95rem;
    color: var(--text-light);
}

/* ========================================
   JOBS SEITE
======================================== */
.jobs-content {
    padding: 80px 5%;
    max-width: 800px;
    margin: 0 auto;
}
.jobs-status {
    background: var(--white);
    padding: 50px;
    margin-bottom: 40px;
    text-align: center;
    border-left: 4px solid var(--burgundy);
}
.jobs-status h2 {
    font-size: 1.8rem;
    color: var(--wood);
    margin-bottom: 20px;
}
.jobs-status p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
}
.jobs-spontan {
    background: var(--cream-dark);
    padding: 50px;
}
.jobs-spontan h3 {
    font-size: 1.5rem;
    color: var(--wood);
    margin-bottom: 20px;
}
.jobs-spontan p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.jobs-spontan ul {
    list-style: none;
    margin-bottom: 30px;
}
.jobs-spontan li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.jobs-spontan li::before {
    content: '✓';
    color: var(--burgundy);
    font-weight: 700;
}
.jobs-contact {
    background: var(--burgundy);
    padding: 50px;
    color: var(--white);
    text-align: center;
}
.jobs-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.jobs-contact p {
    opacity: .85;
    margin-bottom: 24px;
}
.jobs-contact .contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.jobs-contact a {
    display: inline-block;
    padding: 14px 30px;
    background: var(--white);
    color: var(--burgundy);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s;
}
.jobs-contact a:hover {
    background: var(--gold);
    color: var(--black);
}

/* ========================================
   GUTSCHEINE SEITE
======================================== */
.gutschein-intro {
    padding: 80px 5%;
    text-align: center;
    background: var(--white);
}
.gutschein-intro h2 {
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.gutschein-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}
.gutschein-intro .gutschein-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0;
}
.gutschein-intro .gutschein-benefit { color: var(--text); }
.gutschein-intro .gutschein-benefit::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 700;
}
.gutschein-cards-section {
    padding: 60px 5% 100px;
    background: var(--cream);
}
.gutschein-cards-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 50px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.gutschein-card-full {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: all .4s;
    position: relative;
    border: 2px solid transparent;
}
.gutschein-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.1);
    border-color: var(--burgundy);
}
.gutschein-card-full.popular::before {
    content: 'Beliebt';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.gutschein-card-full .gutschein-card-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 8px;
}
.gutschein-card-full .gutschein-card-label {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 24px;
}
.gutschein-card-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
    transition: all .3s;
}
.gutschein-card-full:hover .gutschein-card-btn { background: var(--burgundy-deep); }
.gutschein-custom {
    padding: 80px 5%;
    background: var(--wood);
    color: var(--white);
    text-align: center;
}
.gutschein-custom h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.gutschein-custom p {
    opacity: .8;
    max-width: 500px;
    margin: 0 auto 30px;
}
.gutschein-custom a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    transition: all .3s;
}
.gutschein-custom a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,162,39,.4);
}
.gutschein-how {
    padding: 80px 5%;
    background: var(--cream-dark);
}
.gutschein-how h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 50px;
}
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.how-step { text-align: center; }
.how-step-num {
    width: 50px;
    height: 50px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}
.how-step h3 {
    font-size: 1.2rem;
    color: var(--wood);
    margin-bottom: 10px;
}
.how-step p {
    font-size: .9rem;
    color: var(--text-light);
}
.gutschein-faq {
    padding: 80px 5%;
    background: var(--white);
}
.gutschein-faq h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--wood);
    margin-bottom: 50px;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--cream-dark);
    padding: 24px 0;
}
.faq-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}
.faq-item p {
    font-size: .95rem;
    color: var(--text-light);
}

/* ========================================
   RESERVIEREN SEITE
======================================== */
.reservation-main {
    padding: 60px 5%;
    max-width: 1100px;
    margin: 0 auto;
}
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.reservation-form-section {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}
.reservation-form-section h2 {
    font-size: 1.8rem;
    color: var(--wood);
    margin-bottom: 8px;
}
.reservation-form-section > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: .95rem;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-dark);
    font-size: .95rem;
    font-family: inherit;
    transition: border-color .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--burgundy);
    color: var(--white);
    border: none;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
}
.form-submit:hover { background: var(--burgundy-deep); }
.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-card {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}
.info-card h3 {
    font-size: 1.2rem;
    color: var(--wood);
    margin-bottom: 16px;
}
.info-card p {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.info-card a {
    color: var(--burgundy);
    font-weight: 600;
    text-decoration: none;
}
.info-card a:hover { text-decoration: underline; }
.info-card-highlight {
    background: var(--burgundy);
    color: var(--white);
}
.info-card-highlight h3 { color: var(--white); }
.info-card-highlight p { color: rgba(255,255,255,.85); }
.info-card-highlight a { color: var(--gold); }
.quick-contact {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.quick-contact a {
    flex: 1;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: .85rem;
    transition: all .3s;
}
.quick-contact .btn-call {
    background: var(--gold);
    color: var(--black);
}
.quick-contact .btn-call:hover { background: #b8922a; }
.quick-contact .btn-mail {
    background: var(--white);
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.quick-contact .btn-mail:hover {
    background: var(--burgundy);
    color: var(--white);
}
.hours-list { list-style: none; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: .9rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: var(--text-light); }
.review-reminder {
    background: var(--cream-dark);
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}
.review-reminder p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}
.review-reminder a {
    display: inline-block;
    padding: 12px 30px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
}
.review-reminder a:hover { background: var(--burgundy-deep); }

/* ========================================
   ÜBER UNS SEITE
======================================== */
.story-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-content h2 {
    font-size: 2.2rem;
    color: var(--wood);
    margin-bottom: 24px;
}
.story-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
}
.story-content p:last-of-type { margin-bottom: 0; }
.story-image {
    aspect-ratio: 4/3;
    background: var(--cream-dark);
    overflow: hidden;
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-section {
    padding: 100px 5%;
    background: var(--wood);
    color: var(--white);
}
.brand-section-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.brand-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.brand-section p {
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    opacity: .9;
    line-height: 1.8;
}
.timeline-section {
    padding: 100px 5%;
    background: var(--cream-dark);
}
.timeline-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--wood);
    margin-bottom: 60px;
}
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--burgundy);
    transform: translateX(-50%);
}
.timeline-item-full {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}
.timeline-item-full:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}
.timeline-item-full:nth-child(odd) .timeline-content-full {
    padding-right: 60px;
    padding-left: 0;
}
.timeline-content-full {
    width: 50%;
    padding-left: 60px;
}
.timeline-content-full .timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 8px;
}
.timeline-content-full .timeline-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wood);
    margin-bottom: 8px;
}
.timeline-content-full .timeline-desc {
    font-size: .95rem;
    color: var(--text-light);
}
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 16px;
    height: 16px;
    background: var(--burgundy);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid var(--cream-dark);
}
.values-section {
    padding: 100px 5%;
    background: var(--white);
}
.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--wood);
    margin-bottom: 60px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.value-card {
    text-align: center;
    padding: 40px 30px;
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.value-card h3 {
    font-size: 1.3rem;
    color: var(--wood);
    margin-bottom: 12px;
}
.value-card p {
    font-size: .95rem;
    color: var(--text-light);
}
.team-section {
    padding: 100px 5%;
    background: var(--cream);
}
.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--wood);
    margin-bottom: 20px;
}
.team-section > p {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 60px;
}
.team-cta {
    text-align: center;
    margin-top: 50px;
}
.team-cta a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--burgundy);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: all .3s;
}
.team-cta a:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
}

/* ========================================
   IMPRESSUM & DATENSCHUTZ
======================================== */
.content {
    padding: 60px 5%;
    max-width: 800px;
    margin: 0 auto;
}
.content h2 {
    font-size: 1.5rem;
    color: var(--wood);
    margin: 40px 0 16px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
}
.content h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
.content h3 {
    font-size: 1.2rem;
    color: var(--wood);
    margin: 24px 0 12px;
}
.content p {
    margin-bottom: 16px;
    color: var(--text-light);
}
.content a { color: var(--burgundy); }
.content ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-light);
}
.content li { margin-bottom: 8px; }
.info-box {
    background: var(--white);
    padding: 30px;
    margin: 30px 0;
}
.info-box p { margin-bottom: 8px; }
.info-box strong { color: var(--text); }
.update-date {
    font-size: .85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

/* ========================================
   404 SEITE
======================================== */
.page-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}
.page-404 .logo-404 {
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--burgundy);
    text-decoration: none;
}
.page-404 h1 {
    font-size: 8rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 10px;
}
.page-404 h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--wood);
    margin-bottom: 20px;
}
.page-404 p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
}
.page-404 .links-404 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.page-404 .btn-secondary {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.page-404 .btn-secondary:hover {
    background: var(--burgundy);
    color: var(--white);
}

/* ========================================
   DANKE SEITE
======================================== */
.page-danke {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}
.page-danke .logo-danke {
    margin-bottom: 40px;
}
.page-danke .logo-danke img {
    height: 200px;
    width: auto;
}
.page-danke .icon-danke {
    font-size: 4rem;
    margin-bottom: 20px;
}
.page-danke h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.page-danke p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 500px;
}
.page-danke .info-danke {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    max-width: 400px;
}
.page-danke .info-danke p {
    margin-bottom: 10px;
    font-size: .95rem;
}
.page-danke .links-danke {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.page-danke .btn-secondary {
    background: var(--gold);
    color: var(--text);
}
.page-danke .btn-secondary:hover { opacity: .9; }

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 5% 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
}
.footer-brand { max-width: 300px; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--white);
    text-decoration: none;
}
.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff !important;
}
.footer-brand p {
    color: rgba(255,255,255,.8) !important;
    font-size: .9rem;
}
.footer-column h4 {
    font-family: 'Manrope', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #ffffff !important;
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 10px; }
.footer-column a {
    color: rgba(255,255,255,.8) !important;
    text-decoration: none;
    font-size: .9rem;
}
.footer-column a:hover { color: var(--gold) !important; }
.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.8) !important;
    font-size: .9rem;
    margin-bottom: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* Alternativer Footer (für Unterseiten) */
.footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-links {
    display: flex;
    gap: 60px;
}
.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .9rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-simple {
    background: var(--black);
    color: var(--white);
    padding: 40px 5%;
    text-align: center;
}
.footer-simple p {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
}
.footer-simple a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
}
.footer-simple a:hover { color: var(--gold); }

/* ========================================
   STICKY GUTSCHEIN BUTTON
======================================== */
.sticky-gutschein {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s;
    pointer-events: none;
}
.sticky-gutschein.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.sticky-gutschein a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #1a1515 !important;
    padding: 16px 24px;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    box-shadow: 0 10px 40px rgba(201,162,39,.4);
    transition: all .3s;
}
}
.sticky-gutschein a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201,162,39,.5);
}

/* ========================================
   ANIMATIONEN
======================================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
    .intro,
    .gutschein-inner,
    .story-grid,
    .kontakt-grid,
    .reservation-grid { grid-template-columns: 1fr; }
    .intro-visual { order: -1; }
    .intro-accent {
        bottom: -20px;
        left: auto;
        right: -20px;
        width: 150px;
        height: 150px;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .raum-grid { grid-template-columns: 1fr; }
    .raum-grid.reverse .raum-image { order: 0; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .galerie-grid { grid-template-columns: repeat(2, 1fr); }
    .anfahrt-details { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-center,
    .nav-phone { display: none; }
    .nav-mobile { display: block; }
    .hero { padding: 0 5% 15%; }
    .hero-actions { flex-direction: column; }
    .trust-bar { gap: 20px; }
    .intro { padding: 80px 5%; }
    .gutschein-cards { flex-wrap: wrap; }
    .gutschein-card.featured { transform: scale(1); }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-inner { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 30px; }
    .cards-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
    .how-steps { grid-template-columns: 1fr; gap: 30px; }
    .gutschein-intro .gutschein-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .menu-cards-grid { grid-template-columns: 1fr; }
    .menu-card.tagesmenu::after { right: -40px; padding: 8px 50px; }
    .events-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .galerie-grid { grid-template-columns: 1fr 1fr; }
    .oeffnungszeiten-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .quick-contact { flex-direction: column; }
    .kontakt-actions { flex-direction: column; }
    .timeline::before { left: 20px; }
    .timeline-item-full,
    .timeline-item-full:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }
    .timeline-content-full,
    .timeline-item-full:nth-child(odd) .timeline-content-full {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    .timeline-dot { left: 20px; }
}
/* ========================================
   SCHRIFTEN ERZWINGEN (GLOBAL)
======================================== */
* {
    font-family: 'Manrope', sans-serif !important;
}
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.gutschein-card-amount,
.timeline-year,
.footer-logo span,
.nav-logo-text,
.hero-subtitle,
.geschichte-text,
.brand-section h2,
.brand-section p,
.slogan p {
    font-family: 'Cormorant Garamond', serif !important;
}
/* Danke Seite Logo grösser */
.page-danke .logo-danke img {
    height: 120px !important;
    width: auto !important;
}
.page-danke .logo-danke {
    margin-bottom: 40px;
    text-align: center;
}
/* Navigation Logo grösser */
.nav-logo-img {
    height: 75px !important;
    width: auto !important;
}

/* Reservieren Button weiss */
.nav-cta {
    color: #ffffff !important;
}
/* Menu Card Button Fix */
.menu-card .menu-card-btn {
    display: inline-block !important;
    padding: 12px 28px !important;
    background-color: #ffffff !important;
    color: #5c2c35 !important;
    font-size: .85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-top: 16px !important;
}
.menu-card:hover .menu-card-btn {
    background-color: #c9a227 !important;
    color: #1a1515 !important;
}
/* Gutschein Buttons weiss */
.gutschein-card-btn {
    color: #ffffff !important;
}

/* Individueller Betrag Section weiss */
.gutschein-custom h2 {
    color: #ffffff !important;
}
.gutschein-custom p {
    color: #ffffff !important;
}

/* Jetzt anfragen Button schwarz */
.gutschein-custom a {
    color: #1a1515 !important;
}
/* Gutschein Karten Beschreibungen */
.gutschein-card-full .gutschein-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 8px;
}

/* Beste Wahl Label */
.gutschein-card-full.best-value::before {
    content: 'BESTE WAHL';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--burgundy);
    color: #ffffff;
    padding: 6px 16px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Beste Wahl goldener Rahmen */
.gutschein-card-full.best-value {
    border: 2px solid var(--gold);
}

/* Popular (100.-) goldener Rahmen */
.gutschein-card-full.popular {
    border: 2px solid var(--gold);
}
/* ========================================
   GALERIE FILTER
======================================== */
.galerie-filter-section {
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.galerie-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif !important;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--burgundy);
    color: #ffffff;
}

.galerie-grid-filter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.galerie-item-filter {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

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

.galerie-item-filter:hover img {
    transform: scale(1.05);
}

.galerie-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galerie-item-filter:hover .galerie-item-overlay {
    opacity: 1;
}

.galerie-item-overlay span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Filter Animation */
.galerie-item-filter {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.galerie-item-filter.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .galerie-grid-filter {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .galerie-filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .galerie-grid-filter {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
/* Galerie CTA Button weiss */
.galerie-cta a {
    color: #ffffff !important;
}
/* Brand Section Text weiss */
.brand-section h2 {
    color: #ffffff !important;
}
.brand-section p {
    color: rgba(255,255,255,0.9) !important;
}
/* Team Section Button weiss */
.team-cta a {
    color: #ffffff !important;
}
/* Kontakt E-Mail Button schwarz */
.kontakt-actions .btn-outline,
.btn-mail {
    color: #1a1515 !important;
}
/* Jobs Kontakt Section */
.jobs-contact h3 {
    color: #ffffff !important;
}
.jobs-contact p {
    color: #ffffff !important;
}
.jobs-contact a {
    color: #1a1515 !important;
}
/* Reservieren - Lieber persönlich Box */
.info-card-highlight h3 {
    color: #ffffff !important;
}
.info-card-highlight p {
    color: #ffffff !important;
}
/* Google Bewertung Button weiss */
.review-box a {
    color: #ffffff !important;
}
/* Google Bewertung Button weiss */
.review-box a {
    color: #ffffff !important;
}
/* Google Bewertung Button weiss */
.review-reminder a {
    color: #ffffff !important;
}
