/* ==========================================================================
   ELEGANT & LUXURIOUS DARK THEME (PURE CSS & WEB-SAFE FONTS)
   ========================================================================== */

:root {
    /* Farbpalette */
    --bg-primary: #0f1115;       /* Tiefes, edles Dunkelgrau/Schwarz */
    --bg-secondary: #161920;     /* Etwas helleres Schwarz für Karten & Header */
    --bg-card: #1c2029;          /* Kontrast-Hintergrund für Boxen */
    
    --text-primary: #f2f3f5;     /* Sanftes Cremeweiß für Fließtext */
    --text-muted: #a0a5b1;       /* Gedämpftes Grau für Sekundärtexte */
    
    /* Gold-Akkzente & Verläufe */
    --gold-primary: #c79f5e;     /* Klassisches Gold */
    --gold-light: #f3e5ab;       /* Hellgold für Highlights & Hover */
    --gold-dark: #aa820a;        /* Dunkelgold für Kanten & Borders */
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #aa820a 100%);
    
    /* System-Schriftarten (Web Safe & System Native) */
    --font-heading: 'Cinzel', 'Georgia', 'Garamond', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Layout & Abstände */
    --max-width: 1200px;
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
}

/* Base Reset & Globale Stile */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-standard);
}

a:hover {
    color: var(--gold-light);
}

/* Goldene Trennlinie */
hr, .gold-divider {
    border: none;
    height: 1px;
    background: var(--gold-gradient);
    margin: 2.5rem auto;
    width: 60%;
    opacity: 0.6;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   HEADER & NAVIGATION (ZENTRIERT & LUXURIÖS)
   ========================================================================== */

.site-header {
    background-color: var(--bg-secondary);
    border-bottom: var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2rem 0 1.2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo & Titel oben */
.site-header .logo {
    text-align: center;
}

.site-header .logo a {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold-primary);
    letter-spacing: 0.25em;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

.site-header .logo .sub-logo {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* Subtile Trennlinie zwischen Logo und Menü */
.logo-divider {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 1.2rem 0 1.2rem 0;
    opacity: 0.5;
}

/* Navigation darunter */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-primary);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0;
    position: relative;
    font-weight: 300;
    opacity: 0.85;
    transition: var(--transition-standard);
}

.main-nav a:hover,
.main-nav li.active a {
    color: var(--gold-primary);
    opacity: 1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition-standard);
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    width: 100%;
}

/* ==========================================================================
   BLOG / JOURNAL ARTICLE (WARMER SAND-LOOK)
   ========================================================================== */

/* Der helle Inhaltsbereich für Blog-Beiträge */
.blog-article-wrapper {
    background-color: #f4efeb;    /* Warmes Sand-Creme */
    color: #2b2825;               /* Sanftes Dunkelgrau/Braun für perfekte Lesbarkeit */
    padding: 5rem 0;
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
}

/* Artikel-Header & Typografie im hellen Bereich */
.blog-article-wrapper h1 {
    color: #1a1816;
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.blog-article-wrapper .article-meta {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8c7355;             /* Warmes Bronze/Gold */
    margin-bottom: 1.5rem;
}

.blog-article-wrapper .gold-line {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
}

.blog-article-hero-img img, .blog-article-content img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border: 1px solid #e2dad2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Fließtext-Gestaltung für optimale Lesbarkeit */
.blog-article-content {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #2b2825;
    max-width: 750px;
    margin: 2.5rem auto 0 auto;
}

.blog-article-content p {
    color: #2b2825;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.blog-article-content h2, 
.blog-article-content h3 {
    color: #8c6808;             /* Dunkelgold für Zwischenüberschriften */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Links im Artikeltext */
.blog-article-content a {
    color: #a37b08;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog-article-content a:hover {
    color: #1a1816;
}

/* Blockquotes / Hervorhebungen im Text */
.blog-article-content blockquote {
    background-color: #eae3dc;
    border-left: 3px solid #d4af37;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: #423d38;
}

/* Zurück-Button Styling für helle Hintergründe */
.btn-blog-back {
    background: transparent;
    color: #2b2825;
    border: 1px solid #8c7355;
}

.btn-blog-back:hover {
    background: #2b2825;
    color: #f4efeb;
}

/* ==========================================================================
   BUTTONS (LUXURY STYLE)
   ========================================================================== */

.btn, button, input[type="submit"] {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold-gradient);
    border: 1px solid var(--gold-primary);
    cursor: pointer;
    transition: var(--transition-standard);
    font-weight: 600;
    border-radius: 0px; /* Puristischer, eleganter Look ohne abgerundete Ecken */
}

.btn:hover, button:hover, input[type="submit"]:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: var(--border-gold);
}

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

/* ==========================================================================
   FOTO-RASTER & GALERIE (KÜCHE, WOHNUNG, SAUNA)
   ========================================================================== */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border: var(--border-gold);
    background-color: var(--bg-card);
    aspect-ratio: 4/3;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* ==========================================================================
   CALL TO ACTION BANNER (EDLER GOLD/DUNKEL-KONTRAST)
   ========================================================================== */

.cta-banner {
    padding: 4rem 0;
    background-color: var(--gold-primary);
}

.cta-box {
    background: linear-gradient(135deg, #1c2029 0%, #161920 100%);
    border: 1px solid var(--gold-primary);
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

/* Subtile edle Eck-Akzente */
.cta-box::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.cta-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
}

.cta-divider {
    width: 50px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0 auto 1.5rem auto;
    opacity: 0.8;
}

.cta-box p {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Button-Spezialstil für maximale Aufmerksamkeit */
.btn-cta {
    background: var(--gold-gradient);
    color: #0f1115;
    padding: 1rem 2.8rem;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: var(--transition-standard);
}

.btn-cta:hover {
    background: #ffffff;
    color: #0f1115;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* ==========================================================================
   SITE FOOTER (EDEL, RESPONSIVE & DUNKEL)
   ========================================================================== */

.site-footer {
    background-color: #0b0c0f;
    border-top: var(--border-gold);
    padding: 4.5rem 0 2.5rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Oberer Bereich */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.08em;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-primary);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: color 0.2s ease;
}

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

.nav-divider {
    color: var(--gold-primary);
    opacity: 0.5;
    font-size: 0.75rem;
}

/* Mittlerer Bereich (Kontakt) */
.footer-middle h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-contact-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

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

.contact-item svg {
    color: var(--gold-primary);
}

/* Unterer Bereich (Copyright) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
    margin-bottom: 0;
}

.tagline {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-primary);
    opacity: 0.7;
}

/* RESPONSIVE ANPASSUNGEN */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        gap: 0.6rem 0.8rem;
    }

    .nav-divider {
        display: none; /* Auf Mobilgeräten Trennstriche ausblenden für sauberen Umbruch */
    }

    .footer-nav a {
        display: inline-block;
        margin-right: 1rem;
    }

    .footer-contact-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

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

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 1rem;
        position: inherit;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2, .site-header .logo a, .cta-box h2, .blog-article-wrapper h1 {
        font-size: 1.6rem;
    }
}
/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */

/* 1. HERO BANNER */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.6) 0%, rgba(15, 17, 21, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem 1rem;
}

.sub-heading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* 2. WILLKOMMEN BAND (GOLD-DUNKEL ACCENT) */
.welcome-banner {
    background-color: var(--gold-primary);
    color: #0f1115;
    padding: 8rem 0;
    text-align: center;
}

.welcome-inner h2 {
    color: #0f1115;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.welcome-inner p {
    color: #1a1d24;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 950px;
    margin: 0 auto;
    font-weight: 400;
}

/* 3. VORSCHAU GRID */
.preview-section {
    padding: 5rem 0 2rem 0;
}

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

.preview-card {
    background-color: var(--bg-card);
    border: var(--border-gold);
    transition: var(--transition-standard);
}

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

.card-img-wrapper {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 1.8rem;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--gold-primary);
}

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

/* 4. SPLIT BOX (NORDSEE LAGE) */
.location-section {
    padding: 5rem 0;
}

.split-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-secondary);
    border: var(--border-gold);
    align-items: center;
}

.split-img {
    height: 100%;
    min-height: 350px;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-text {
    padding: 3.5rem;
}

.gold-line {
    width: 50px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 1rem 0 1.5rem 0;
}

.gold-line.center {
    margin: 1rem auto 2rem auto;
}

/* 5. STATISTIKEN (EXKLUSIVITÄT IN ZAHLEN) */
.stats-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
    text-align: center;
}

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

.stat-item {
    padding: 2rem;
    background-color: var(--bg-primary);
    border: var(--border-gold);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* 6. PREISE & KONTAKT */
.pricing-section {
    padding: 5rem 0 2rem 0;
}

.pricing-box {
    background: var(--bg-card);
    border: var(--border-gold);
    padding: 3.5rem;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.price-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.price-details {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.contact-info {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 2rem;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--gold-primary);
    font-weight: 500;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .split-box {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   FEATURE CARDS & SUB-PAGES (WOCHNUNG, SAUNA, KÜCHE)
   ========================================================================== */

.details-hero {
    padding: 3rem 0;
}

.features-section {
    padding: 5rem 0;
}

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

.bg-secondary {
    background-color: var(--bg-secondary);
    border-top: var(--border-gold);
    border-bottom: var(--border-gold);
}

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

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-card);
    border: var(--border-gold);
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition-standard);
}

.feature-card.card-dark {
    background: var(--bg-secondary);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
}

.feature-card p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0;
}

@media (max-width: 850px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SAUNA PAGE SPECIFIC ACCENTS
   ========================================================================== */

/* Luxuriöse Italic-Auszüge für Hauptüberschriften */
.font-italic-luxury {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: 0.05em;
}

/* Icons innerhalb der Vorteilskarten */
.feature-stat-card .stat-icon {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-stat-card {
    transition: var(--transition-standard);
}

.feature-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}
/* ==========================================================================
   BLOG GRID & CARDS (2-SPALTIG & RESPONSIVE)
   ========================================================================== */

/* 2-Spalten Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
}

/* Einzelne Karte */
.blog-card {
    background-color: #ffffff;
    border: 1px solid #e2dad2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Bildbereich */
.blog-card-img-link {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #eae3dc;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}

.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eae3dc 0%, #dcd3c9 100%);
}

/* Karten-Inhalt */
.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-body h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.blog-card-body h2 a {
    color: #1a1816;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-body h2 a:hover {
    color: #8c6808;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #55504a;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.blog-card-footer {
    margin-top: auto;
}

.btn-blog-readmore {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8c6808;
    background: transparent;
    border: 1px solid #8c6808;
    transition: var(--transition-standard);
}

.btn-blog-readmore:hover {
    background: #8c6808;
    color: #ffffff;
}

/* Responsive: Auf kleinen Bildschirmen (unter 800px) auf 1 Spalte wechseln */
@media (max-width: 800px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card-body {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   BOOKING.COM AWARD BADGE (ELEGANT & LUXURIÖS)
   ========================================================================== */

.award-badge {
    background: rgba(15, 17, 21, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 1.8rem 2rem;
    max-width: 550px;
    margin: 0 auto 2rem auto;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
}

.award-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #f3e5ab;
    margin-bottom: 0.5rem;
}

.award-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
    margin: 0.4rem 0;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.score-max {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #d4af37;
}

.award-text {
    font-size: 0.9rem !important;
    color: #e0e0e0 !important;
    margin-bottom: 0 !important;
    font-style: italic;
    font-weight: 300;
}

/* ==========================================================================
   CTA BUTTONS (STACKED / PORTAL LINKS)
   ========================================================================== */

.cta-subnote {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
    font-weight: 300;
}

/* Container für die 2 untereinander liegenden Buttons */
.cta-buttons-stacked {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin: 2.5rem 0 1.5rem 0;
}

.cta-buttons-stacked .btn-cta {
    width: 100%;
    max-width: 420px;
    text-align: center;
    padding: 1.1rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
}

/* Subtiler Unterschied beim Hover-Effekt für zweites Portal */
.btn-fewodirekt {
    background: transparent;
    color: var(--gold-primary);
    border: var(--border-gold);
}

.btn-fewodirekt:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-direct-email {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 1rem;
}

.cta-direct-email a {
    color: var(--gold-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* ==========================================================================
   GALLERY STATS-BOX CARDS
   ========================================================================== */

.gallery-category-grid {
    gap: 2.5rem !important;
}

.gallery-card {
    display: block;
    text-decoration: none !important;
    padding: 1.2rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
}

.gallery-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

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

/* Hover Overlay mit Lupen-Icon */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 21, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .zoom-icon {
    transform: scale(1);
}

/* Überschrift-Anpassung innerhalb der Karten */
.gallery-title {
    font-size: 1.6rem !important;
    margin-bottom: 0.4rem !important;
}
/* ==========================================================================
   GALLERY MULTI-SECTION STYLES
   ========================================================================== */

.gallery-section-desc {
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}

.gallery-triple-grid {
    gap: 1.8rem !important;
}

.gallery-photo-card {
    padding: 0.6rem !important;
    display: block;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 15px rgba(212, 175, 55, 0.2);
}

.gallery-photo-card .gallery-card-img {
    margin-bottom: 0 !important;
}