/* Grand Linden Casino Hotel - Main Styles - Dark Elegant Luxury Theme */

:root {
    --color-black: #0d0d0d;
    --color-dark: #1a1a1a;
    --color-gold: #c9a961;
    --color-rose-gold: #b76e79;
    --color-white: #ffffff;
    --color-light: #e8e8e8;
    --color-gray: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light);
    background-color: var(--color-black);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.behaelter {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.abschnitt-abstand {
    padding: 5rem 0;
}

.bg-dark {
    background-color: var(--color-dark);
}

.schaltflaeche {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
}

.schaltflaeche-primaer {
    background-color: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.schaltflaeche-primaer:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.schaltflaeche-sekundaer {
    background-color: var(--color-gray);
    color: var(--color-white);
    border-color: var(--color-gray);
}

.schaltflaeche-umriss {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.schaltflaeche-umriss:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.schaltflaeche-umriss-hell {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.schaltflaeche-umriss-hell:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.schaltflaeche-gross {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.schaltflaeche-klein {
    padding: 0.625rem 1.5rem;
    font-size: 0.85rem;
}

.schaltflaeche-block {
    display: block;
    width: 100%;
}

.seiten-kopf {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.kopf-inhalt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin: 0;
    line-height: 1;
}

.logo-slogan {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin: 0.25rem 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.haupt-navigation ul {
    display: flex;
    gap: 2.5rem;
}

.haupt-navigation a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-light);
    position: relative;
}

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

.haupt-navigation a:hover::after,
.haupt-navigation a.aktiv::after {
    width: 100%;
}

.haupt-navigation a:hover,
.haupt-navigation a.aktiv {
    color: var(--color-gold);
}

.mobil-menue-umschalter {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobil-menue-umschalter span {
    width: 28px;
    height: 2px;
    background-color: var(--color-gold);
}

.mobil-menue {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 2000;
    transition: 0.3s ease;
    overflow-y: auto;
}

.mobil-menue.aktiv {
    right: 0;
}

.mobil-menue-kopf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobil-menue-schliessen {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobil-nav {
    padding: 2rem;
}

.mobil-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.mobil-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobil-nav a {
    display: block;
    padding: 1rem 0;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.held-abschnitt {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.held-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.held-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.held-ueberlagerung {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.4), rgba(13, 13, 13, 0.7));
}

.held-inhalt {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.held-titel {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.held-untertitel {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.scroll-anzeiger {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-anzeiger i {
    font-size: 2rem;
    color: var(--color-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
}

.abschnitt-beschriftung {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.abschnitt-titel {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.abschnitt-untertitel {
    font-size: 1.125rem;
    color: var(--color-gray);
}

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

.willkommen-raster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.abschnitt-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.willkommen-funktionen {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.funktion-element {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.funktion-element i {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.willkommen-bild img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.zimmer-raster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.zimmer-karte {
    background-color: var(--color-dark);
    overflow: hidden;
    transition: 0.3s ease;
}

.zimmer-karte:hover {
    transform: translateY(-10px);
}

.zimmer-bild {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.zimmer-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.zimmer-karte:hover .zimmer-bild img {
    transform: scale(1.1);
}

.zimmer-ueberlagerung {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.zimmer-karte:hover .zimmer-ueberlagerung {
    opacity: 1;
}

.zimmer-info {
    padding: 2rem;
}

.zimmer-info h3 {
    margin-bottom: 0.5rem;
}

.zimmer-groesse {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.zimmer-beschreibung {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.zimmer-fusszeile {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zimmer-preis {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
}

.zimmer-preis span {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.annehmlichkeiten-symbole {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.annehmlichkeit-element {
    text-align: center;
}

.annehmlichkeit-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.annehmlichkeit-symbol i {
    font-size: 2rem;
    color: var(--color-gold);
}

.annehmlichkeit-element h4 {
    margin-bottom: 0.75rem;
}

.annehmlichkeit-element p {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.gastronomie-karten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.gastronomie-karte {
    background-color: var(--color-black);
    overflow: hidden;
}

.gastronomie-bild {
    height: 300px;
    overflow: hidden;
}

.gastronomie-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gastronomie-karte:hover .gastronomie-bild img {
    transform: scale(1.1);
}

.gastronomie-inhalt {
    padding: 2rem;
}

.gastronomie-kueche {
    font-size: 0.9rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.gastronomie-beschreibung {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.gastronomie-details {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--color-gray);
}

.gastronomie-details i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.galerie-raster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.galerie-element {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.galerie-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.galerie-ueberlagerung {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.galerie-element:hover .galerie-ueberlagerung {
    opacity: 1;
}

.galerie-element:hover img {
    transform: scale(1.1);
}

.galerie-ueberlagerung i {
    font-size: 3rem;
    color: var(--color-white);
}

.erfahrungsberichte-schieber {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.erfahrungsbericht-folie {
    text-align: center;
    padding: 3rem;
}

.erfahrungsbericht-sterne {
    margin-bottom: 1.5rem;
}

.erfahrungsbericht-sterne i {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin: 0 0.25rem;
}

.erfahrungsbericht-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.erfahrungsbericht-autor h4 {
    margin-bottom: 0.25rem;
}

.erfahrungsbericht-autor p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.schieber-steuerung {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.schieber-schaltflaeche {
    width: 50px;
    height: 50px;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    font-size: 1.25rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.schieber-schaltflaeche:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.buchung-aktion {
    background: linear-gradient(rgba(13, 13, 13, 0.8), rgba(13, 13, 13, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
}

.aktion-inhalt {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.aktion-inhalt h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.aktion-inhalt p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.seiten-fusszeile {
    background-color: var(--color-black);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fusszeile-inhalt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.fusszeile-spalte h3,
.fusszeile-spalte h4 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.fusszeile-slogan {
    font-size: 0.875rem;
    color: var(--color-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fusszeile-beschreibung {
    color: var(--color-gray);
    margin: 1rem 0;
}

.soziale-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.soziale-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: 0.3s ease;
}

.soziale-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.fusszeile-links li {
    margin-bottom: 0.75rem;
}

.fusszeile-links a {
    color: var(--color-gray);
}

.fusszeile-links a:hover {
    color: var(--color-gold);
}

.fusszeile-kontakt li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.fusszeile-kontakt i {
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.newsletter-formular {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-formular input {
    flex: 1;
    padding: 0.75rem;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.fusszeile-unten {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
    font-size: 0.9rem;
}

.fusszeile-unten-links {
    display: flex;
    gap: 2rem;
}

.fusszeile-unten-links a:hover {
    color: var(--color-gold);
}

.zurueck-nach-oben {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.zurueck-nach-oben.sichtbar {
    opacity: 1;
    visibility: visible;
}

.zurueck-nach-oben:hover {
    background: var(--color-white);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.aktiv {
    display: flex;
}

.modal-ueberlagerung {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.95);
}

.modal-inhalt {
    position: relative;
    background: var(--color-dark);
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    z-index: 10;
}

.modal-schliessen {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-kopf {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-kopf h2 {
    margin-bottom: 0.5rem;
}

.modal-kopf p {
    color: var(--color-gray);
}

.buchung-formular .formular-reihe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.formular-gruppe {
    margin-bottom: 1.5rem;
}

.formular-gruppe label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    font-size: 0.95rem;
}

.formular-gruppe input,
.formular-gruppe select,
.formular-gruppe textarea {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
}

.formular-gruppe input:focus,
.formular-gruppe select:focus,
.formular-gruppe textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.formular-aktionen {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.formular-aktionen .schaltflaeche {
    flex: 1;
}

.fade-in {
    animation: fadeIn 1s ease;
}

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

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-scroll.sichtbar {
    opacity: 1;
    transform: translateY(0);
}

.seiten-held {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.seiten-held-bild {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.seiten-held-ueberlagerung {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.6);
}

.seiten-held-inhalt {
    position: relative;
    z-index: 10;
    text-align: center;
}

.seiten-titel {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.seiten-untertitel {
    font-size: 1.25rem;
    color: var(--color-gold);
}

.zimmer-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
    align-items: start;
}

.zimmer-detail.umgekehrt {
    direction: rtl;
}

.zimmer-detail.umgekehrt > * {
    direction: ltr;
}

.zimmer-detail-bilder {
    position: sticky;
    top: 100px;
}

.haupt-zimmer-bild {
    margin-bottom: 1rem;
    overflow: hidden;
}

.haupt-zimmer-bild img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.zimmer-miniaturansichten {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.zimmer-miniaturansichten img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s ease;
}

.zimmer-miniaturansichten img:hover,
.zimmer-miniaturansichten img.aktiv {
    opacity: 1;
}

.zimmer-meta {
    display: flex;
    gap: 2rem;
    margin: 1rem 0 2rem;
    color: var(--color-gray);
}

.zimmer-meta i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.zimmer-detail-beschreibung {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.zimmer-annehmlichkeiten-liste h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.zimmer-annehmlichkeiten-liste ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.zimmer-annehmlichkeiten-liste li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray);
}

.zimmer-annehmlichkeiten-liste i {
    color: var(--color-gold);
    font-size: 0.875rem;
}

.zimmer-detail-fusszeile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zimmer-preis-gross {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.preis-beschriftung {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.preis-betrag {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: 700;
}

.preis-zeitraum {
    font-size: 1rem;
    color: var(--color-gray);
}

.zimmer-trenner {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5rem 0;
}

.funktionen-raster {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.funktion-box {
    text-align: center;
    padding: 2rem;
    background: var(--color-black);
    transition: 0.3s ease;
}

.funktion-box:hover {
    transform: translateY(-5px);
}

.funktion-box i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.funktion-box h4 {
    margin-bottom: 0.5rem;
}

.funktion-box p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.inline-buchung-abschnitt {
    background: var(--color-dark);
}

.buchung-formular-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.buchung-formular-wrapper h2 {
    margin-bottom: 0.5rem;
}

.buchung-formular-wrapper > p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.inline-buchung-formular .formular-reihe {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.restaurant-volle-karte {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.restaurant-volle-karte.umgekehrt {
    direction: rtl;
}

.restaurant-volle-karte.umgekehrt > * {
    direction: ltr;
}

.restaurant-volles-bild {
    overflow: hidden;
}

.restaurant-volles-bild img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s ease;
}

.restaurant-volle-karte:hover .restaurant-volles-bild img {
    transform: scale(1.05);
}

.restaurant-kueche {
    font-size: 1rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.restaurant-volle-beschreibung {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.restaurant-info-raster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-element {
    display: flex;
    gap: 1rem;
}

.info-element i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.info-element strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.info-element p {
    color: var(--color-gray);
    margin: 0;
}

.abschnitt-trenner {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 5rem 0;
}

.geteilter-inhalt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.geteiltes-bild {
    overflow: hidden;
}

.geteiltes-bild img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.geteilter-text h2 {
    margin-bottom: 1.5rem;
}

.geteilter-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.pruef-liste {
    margin: 2rem 0;
}

.pruef-liste li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--color-gray);
}

.pruef-liste i {
    color: var(--color-gold);
}

.text-bild-abschnitt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.text-inhalt h2 {
    margin-bottom: 1.5rem;
}

.text-inhalt p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.funktion-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-element {
    text-align: center;
}

.highlight-element h4 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.highlight-element p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.bild-inhalt {
    overflow: hidden;
}

.bild-inhalt img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.funktionen-raster-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.funktion-karte {
    text-align: center;
    padding: 2rem;
}

.funktion-karte i {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.funktion-karte h3 {
    margin-bottom: 1rem;
}

.funktion-karte p {
    color: var(--color-gray);
}

.annehmlichkeit-hervorgehoben {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.annehmlichkeit-hervorgehoben.umgekehrt {
    direction: rtl;
}

.annehmlichkeit-hervorgehoben.umgekehrt > * {
    direction: ltr;
}

.annehmlichkeit-hervorgehoben-bild {
    overflow: hidden;
}

.annehmlichkeit-hervorgehoben-bild img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.annehmlichkeit-hervorgehoben-inhalt h2 {
    margin-bottom: 1.5rem;
}

.annehmlichkeit-hervorgehoben-inhalt p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.annehmlichkeit-funktionen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.annehmlichkeit-funktion-element {
    text-align: center;
}

.annehmlichkeit-funktion-element i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.annehmlichkeit-funktion-element h4 {
    margin-bottom: 0.5rem;
}

.annehmlichkeit-funktion-element p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.unterhaltung-raster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.unterhaltung-karte {
    background: var(--color-black);
    overflow: hidden;
}

.unterhaltung-bild {
    height: 300px;
    overflow: hidden;
}

.unterhaltung-bild img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.unterhaltung-karte:hover .unterhaltung-bild img {
    transform: scale(1.1);
}

.unterhaltung-inhalt {
    padding: 2rem;
}

.unterhaltung-inhalt h3 {
    margin-bottom: 1rem;
}

.unterhaltung-inhalt p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.dienste-symbol-liste {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.dienst-symbol-element {
    text-align: center;
}

.dienst-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.dienst-symbol i {
    font-size: 2rem;
    color: var(--color-gold);
}

.dienst-symbol-element h4 {
    margin-bottom: 0.75rem;
}

.dienst-symbol-element p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.annehmlichkeiten-aktion {
    text-align: center;
}

.aktion-box {
    max-width: 800px;
    margin: 0 auto;
}

.aktion-box h2 {
    margin-bottom: 1rem;
}

.aktion-box p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

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

.filter-schaltflaeche {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.filter-schaltflaeche:hover,
.filter-schaltflaeche.aktiv {
    background: var(--color-gold);
    color: var(--color-black);
}

.galerie-mauerwerk {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.galerie-mauerwerk-element {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: 0.3s ease;
}

.galerie-mauerwerk-element img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.galerie-element-ueberlagerung {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.galerie-mauerwerk-element:hover .galerie-element-ueberlagerung {
    opacity: 1;
}

.galerie-mauerwerk-element:hover img {
    transform: scale(1.1);
}

.galerie-zoom-schaltflaeche {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 3rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.galerie-bildunterschrift {
    color: var(--color-white);
    font-size: 1rem;
}

.leuchtkasten {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.leuchtkasten.aktiv {
    display: flex;
}

.leuchtkasten-schliessen {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
}

.leuchtkasten-zurueck,
.leuchtkasten-weiter {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 97, 0.8);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 10;
}

.leuchtkasten-zurueck:hover,
.leuchtkasten-weiter:hover {
    background: var(--color-gold);
}

.leuchtkasten-zurueck {
    left: 2rem;
}

.leuchtkasten-weiter {
    right: 2rem;
}

.leuchtkasten-inhalt {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.leuchtkasten-inhalt img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.leuchtkasten-bildunterschrift {
    color: var(--color-white);
    margin-top: 1rem;
    font-size: 1.125rem;
}

.virtuelle-tour-aktion {
    text-align: center;
}

.aktion-inhalt-zentriert {
    max-width: 700px;
    margin: 0 auto;
}

.aktion-inhalt-zentriert i {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.aktion-inhalt-zentriert h2 {
    margin-bottom: 1rem;
}

.aktion-inhalt-zentriert p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.kontakt-karten {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.kontakt-karte {
    background: var(--color-dark);
    padding: 3rem 2rem;
    text-align: center;
    transition: 0.3s ease;
}

.kontakt-karte:hover {
    transform: translateY(-10px);
}

.kontakt-karte-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
}

.kontakt-karte-symbol i {
    font-size: 2rem;
    color: var(--color-gold);
}

.kontakt-karte h3 {
    margin-bottom: 1rem;
}

.kontakt-karte p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.kontakt-formular-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.kontakt-formular-intro h2 {
    margin-bottom: 1rem;
}

.kontakt-formular-intro > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.kontakt-info-liste {
    margin-top: 2rem;
}

.info-liste-element {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-liste-element i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.info-liste-element strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.info-liste-element p {
    color: var(--color-gray);
    margin: 0;
}

.kontakt-formular-box {
    background: var(--color-black);
    padding: 3rem;
}

.kontakt-formular .formular-reihe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.kontrollkaestchen-beschriftung {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.kontrollkaestchen-beschriftung input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.kontrollkaestchen-beschriftung span {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.kontrollkaestchen-beschriftung a {
    color: var(--color-gold);
    text-decoration: underline;
}

.google-karte iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.faq-raster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-element {
    background: var(--color-dark);
    padding: 2rem;
}

.faq-element h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.faq-element p {
    color: var(--color-gray);
    line-height: 1.8;
}
