/*
Theme Name: Estelle Exclusive Escort
Theme URI: https://estelle-exclusive.com
Author: Estelle
Author URI: https://estelle-exclusive.com
Description: Elegantes WordPress Theme für Estelle's Exclusive Escort Service - Luxus, Diskretion und Stil
Version: 1.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: estelle
Tags: luxury, escort, elegant, custom-menu, custom-logo, featured-images, responsive-layout, translation-ready

This theme, like WordPress, is licensed under the GPL.
*/

/* ==========================================
   ESTELLE EXCLUSIVE ESCORT - STYLESHEET V4
   Harmonische Luxus-Palette: Champagner, Nude & Bronze
   ========================================== */

@font-face {
    font-family: 'Scriptina Pro';
    src: url('fonts/ScriptinaPro.otf') format('opentype'),
         url('../fonts/ScriptinaPro.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Harmonische, luxuriöse Farbpalette */
    --bronze-accent: #B8956A;      /* Edles Bronze statt Rosa */
    --champagne: #F4EAE0;          /* Helles Champagner */
    --warm-nude: #E8DDD1;          /* Warmes Nude */
    --soft-taupe: #D4C4B0;         /* Weiches Taupe */
    --deep-brown: #4A3F35;         /* Tiefes Braun für Text */
    --warm-brown: #6B5D52;         /* Warmes Braun */
    --light-cream: #F9F5F0;        /* Helles Creme */
    --white: #FFFFFF;
    --ivory: #FFFCF7;              /* Elfenbein statt Cream */
    
    /* Typography */
    --font-heading: 'Lora', serif;
    --font-script: 'Great Vibes', cursive;
    --font-body: 'Questrial', sans-serif;
    --font-elegant: 'Italiana', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--deep-brown);
    line-height: 1.8;
    background-color: var(--ivory);
    overflow-x: hidden;
    font-weight: 300;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--deep-brown);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: var(--spacing-sm);
}

.script-text-elegant {
    font-family: var(--font-script);
    font-weight: 400;
    color: var(--bronze-accent);
    font-size: clamp(1.5rem, 1.5vw, 1.5rem) !important;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

/* ==========================================
   HEADER & NAVIGATION - DEFINITIVER FIX
   ========================================== */

/* 1. Grundzustand: IMMER WEISS */
header.header, 
#header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 2px 20px rgba(184, 149, 106, 0.15);
}


/* Scroll-Zustand: Weißer Hintergrund für alle Browser */
header#header.scrolled {
    background-color: #FFFFFF !important;
    background: #FFFFFF !important;
    box-shadow: 0 2px 20px rgba(184, 149, 106, 0.15) !important;
    border-bottom: none;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo-Größe & Animation */
.logo .custom-logo-link img,
.logo-img {
    height: 60px !important;
    width: auto !important;
    transition: height 0.3s ease;
    display: block;
}

header#header.scrolled .logo-img,
header#header.scrolled .custom-logo-link img {
    height: 48px !important;
}

/* Nav-Links: IMMER DUNKEL (Header ist immer weiß) */
.nav-menu li a {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative;
    padding: 10px 0;
    color: #4A3F35 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}


/* Nav-Links: Dunkel beim Scrollen */
header#header.scrolled .nav-menu li a {
    color: #4A3F35 !important;
}


/* Hover-Linie */
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0; 
    height: 1px;
    background-color: #B8956A;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover & Aktiv-Zustand */
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: #B8956A !important;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}

/* Mobile Toggle */
.menu-toggle span {
    background: #FFFFFF;
}

header#header.scrolled .menu-toggle span {
    background: #4A3F35;
}

/* HOVER & AKTIV */
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--bronze-accent) !important;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after {
    width: 100%;
}
.header.scrolled .logo-img {
    height: 45px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

/* --- Navigation Links Basis --- */
.nav-link {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    position: relative; /* Wichtig für die Linie */
    padding: 8px 0;
    color: #FFFFFF; /* Standardfarbe auf dem Video */
    transition: color 0.3s ease;
}

/* --- Die elegante Linie (Hover-Effekt) --- */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0; /* Startet bei Null für die Animation */
    height: 1px;
    background-color: var(--bronze-accent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

/* --- Hover & Aktiv Zustand --- */
/* Wichtig: Das !important stellt sicher, dass die Farbe wirklich wechselt */
.nav-link:hover,
.nav-link.active,
.current-menu-item > a {
    color: var(--bronze-accent) !important;
}

.nav-link:hover::after,
.nav-link.active::after,
.current-menu-item > a::after {
    width: 100%; /* Linie fährt aus */
}

/* --- Anpassung wenn Header gescrollt (Weißer Hintergrund) --- */
.header.scrolled .nav-link {
    color: var(--deep-brown); /* Text wird dunkel auf weißem Grund */
}

.header.scrolled .nav-link:hover {
    color: var(--bronze-accent) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer; /* Sicherstellen, dass es als Link erkannt wird */
    z-index: 1100;    /* Höher als der Rest des Headers */
    position: relative; 
    padding: 10px;    /* Vergrößert die Klickfläche */
    margin: -10px;    /* Gleicht das Padding optisch wieder aus */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--deep-brown);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled .menu-toggle span {
    background: var(--deep-brown);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   Hero Section - HELL & ELEGANT
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Support - Optimiert für HOCHFORMAT (Portrait) Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

@media (min-width: 1400px) {
    .hero-video {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-background.show {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(74, 63, 53, 0.35) 40%,
        rgba(74, 63, 53, 0.45) 70%,
        rgba(74, 63, 53, 0.55) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 3rem 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.hero-handwriting {
    font-family: 'Scriptina Pro', cursive;
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 2px;
    line-height: 1.6;
    text-shadow: 
        0 0 12px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(184, 149, 106, 0.5);
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
    padding: 0 20px;
}

.hero-handwriting .char {
    display: inline-block;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 4px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0; top: 8px; }
    50% { opacity: 1; top: 16px; }
}

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

/* Hero Small (für Unterseiten) */
.hero-small {
    height: 60vh;
    min-height: 400px;
}

.hero-title-small {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 8px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-small {
    font-family: var(--font-script);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #FFFFFF;
    margin-top: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Section Styling */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title-script {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--bronze-accent);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--bronze-accent);
    margin-bottom: 0.5rem;
}

.section-line {
    width: 80px;
    height: 2px;
    background: var(--bronze-accent);
    margin: 1rem auto;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--warm-brown);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Welcome Section */
.welcome {
    background: var(--ivory);
    padding: var(--spacing-xl) 0;
}

.welcome-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.welcome-quote {
    font-family: var(--font-script);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--bronze-accent);
    margin: 2rem 0;
    line-height: 1.4;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.9;
}

/* About Section */
.about {
    background: var(--champagne);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(74, 63, 53, 0.15);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

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

.btn-minimal {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid var(--bronze-accent);
    color: var(--bronze-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    background: transparent;
}

.btn-minimal:hover {
    background: var(--bronze-accent);
    color: var(--white);
}

/* Services Section */
.services {
    background: var(--ivory);
}

/* 1. Das Grid für 4 Spalten */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: stretch; /* Zwingt alle Boxen auf die gleiche Höhe */
}

/* 2. Die Boxen als Flex-Container */
.service-item {
    background: var(--white);
    padding: 3rem 1.5rem; /* Etwas mehr Luft nach oben/unten */
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 63, 53, 0.08);
    transition: var(--transition-smooth);
    border-top: 3px solid transparent;

    /* Wichtig für die vertikale Ausrichtung */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Zentriert den gesamten Inhalt vertikal */
}

/* 3. Einheitliche Höhe für die Überschriften */
.service-item h3 {
    color: var(--deep-brown);
    margin-bottom: 1.2rem;
    font-family: var(--font-heading);
    
    /* Zwingt alle Titel auf den Platz von 2 Zeilen */
    min-height: 4rem; 
    display: flex;
    align-items: center; /* Zentriert den Text innerhalb dieser 4rem */
    justify-content: center;
}

/* 4. Der Beschreibungstext */
.service-item p {
    color: var(--warm-brown);
    line-height: 1.7;
    margin: 0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(74, 63, 53, 0.15);
    border-top-color: var(--bronze-accent);
}

.service-number {
    font-family: var(--font-elegant);
    font-size: 3rem;
    color: var(--bronze-accent);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--warm-brown);
    line-height: 1.7;
}

/* Destinations Section */
.destinations {
    background: var(--champagne);
}

.destinations-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.destination-group {
    margin-bottom: 3rem;
}

.destination-group h3 {
    font-family: var(--font-elegant);
    color: var(--bronze-accent);
    margin-bottom: 1rem;
    text-align: center;
}

.destination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.destination-item {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--warm-brown);
    box-shadow: 0 2px 10px rgba(74, 63, 53, 0.08);
    transition: var(--transition-fast);
}

.destination-item:hover {
    background: var(--bronze-accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    background: var(--ivory);
}

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

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 63, 53, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

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

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

/* Contact Section */
.contact {
    background: var(--champagne);
}

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

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(74, 63, 53, 0.08);
}

.contact-method h3 {
    color: var(--bronze-accent);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method p {
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--deep-brown);
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-method a:hover {
    color: var(--bronze-accent);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bronze-accent) 0%, var(--warm-brown) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--bronze-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #0d7a8f 0%, #0f2b30 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    font-family: 'Scriptina Pro', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal;
    color: #ffffff;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: nowrap;
    position: relative;
    left: -1.5rem;
    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.9),
        0 4px 30px rgba(0, 0, 0, 0.7),
        0 8px 45px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .footer-logo {
        font-size: clamp(1.4rem, 7vw, 2rem);
        white-space: normal;
        letter-spacing: 0;
        left: 0;
    }
}

.footer-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.footer-links li {
    list-style: none;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--bronze-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 234, 224, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Salaire Sections */
.salaire-intro {
    padding: var(--spacing-lg) 0;
    background: var(--ivory);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.salaire-elegant-section {
    padding: var(--spacing-xl) 0;
    background: var(--champagne);
}

.salaire-elegant-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(74, 63, 53, 0.1);
    margin-bottom: 3rem;
}

.salaire-header {
    text-align: center;
    margin-bottom: 3rem;
}

.salaire-header h2 {
    font-family: var(--font-elegant);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--deep-brown);
}

.salaire-note {
    color: var(--warm-brown);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.salaire-elegant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.salaire-price-card {
    background: var(--light-cream);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.salaire-price-card:hover {
    transform: translateY(-5px);
    border-color: var(--bronze-accent);
    background: var(--white);
}

.salaire-price-card.highlight {
    background: var(--warm-nude);
}

.salaire-price-card.special {
    background: var(--bronze-accent);
    color: var(--white);
}

.price-duration {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--deep-brown);
    margin-bottom: 0.8rem;
}

.salaire-price-card.special .price-duration {
    color: var(--white);
}

.price-duration small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

.price-amount {
    display: block;
    font-family: var(--font-elegant);
    font-size: 2rem;
    font-weight: 600;
    color: var(--bronze-accent);
}

.salaire-price-card.special .price-amount {
    color: var(--white);
}

.salaire-special-offer {
    background: linear-gradient(135deg, var(--bronze-accent), var(--warm-brown));
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    color: var(--white);
}

.special-icon {
    flex-shrink: 0;
}

.special-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.special-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-duration {
    font-size: 1.2rem;
    font-weight: 500;
}

.special-price {
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--ivory);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(74, 63, 53, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-cream);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--deep-brown);
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: var(--bronze-accent);
    line-height: 1;
    transition: var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--warm-brown);
    line-height: 1.8;
}

/* Sedcard Professional Section */
.sedcard-professional {
    padding: var(--spacing-xl) 0;
    background: var(--champagne);
}

.sedcard-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 63, 53, 0.15);
}

.profile-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-details {
    background: #FDFAF6;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(184, 149, 106, 0.15);
}

.profile-name {
    font-family: var(--font-elegant);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--deep-brown);
    margin-bottom: 2rem;
}

.details-table-modern {
    margin: 2rem 0;
}

.detail-row {
    display: flex;
    border-bottom: 1px solid var(--warm-nude);
    padding: 20px 0;
}

.detail-item {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.detail-item:first-child {
    padding-left: 0;
}

.detail-item .key {
    font-family: var(--font-heading);
    color: var(--warm-brown);
    font-weight: 500;
}

.detail-item .val {
    font-family: var(--font-body);
    color: var(--deep-brown);
    font-weight: 400;
}

.languages-box-modern {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.languages-box-modern h3 {
    font-size: 1.3rem;
    color: var(--bronze-accent);
    margin-bottom: 1rem;
}

.language-list p {
    margin-bottom: 0.8rem;
    color: var(--warm-brown);
}

.language-list strong {
    color: var(--deep-brown);
}

.profile-tags-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.profile-tags-modern span {
    background: var(--bronze-accent);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
}

.sedcard-hobbies-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.hobbies-content {
    background: #FDFAF6;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(184, 149, 106, 0.15);
}

.hobbies-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 63, 53, 0.15);
}

.hobbies-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.sedcard-preferences-modern {
    background: #FDFAF6;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(184, 149, 106, 0.15);
}

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

.pref-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pref-item h4 {
    font-family: var(--font-heading);
    color: var(--bronze-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.pref-item p {
    color: var(--warm-brown);
    line-height: 1.6;
}

.centered {
    text-align: center;
}

.personality-section {
    padding: var(--spacing-xl) 0;
    background: var(--ivory);
}

.personality-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.personality-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.closing-quote {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--bronze-accent);
    margin-top: 2rem;
}

/* Language Flags */
.language-flags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
}

.language-flags img {
    width: 22px !important;
    max-width: 22px !important;
    min-width: 22px !important;
    height: auto !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
    pointer-events: none;
}

/* Booking Requirements Section */
.booking-requirements-section {
    padding: 3rem 0;
    background: var(--ivory);
}

.requirements-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.requirements-box {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(74, 63, 53, 0.06);
    border-top: 2px solid var(--bronze-accent);
    transition: var(--transition-smooth);
}

.requirements-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(74, 63, 53, 0.1);
}

.requirements-header h2 {
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-family: var(--font-elegant);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.section-line-small {
    width: 50px;
    height: 1.5px;
    background: var(--bronze-accent);
    margin: 0.8rem 0 1.5rem 0;
}

.requirements-list {
    margin: 1.2rem 0;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--light-cream);
    transition: var(--transition-fast);
}

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

.requirement-item:hover {
    padding-left: 0.3rem;
}

.requirement-location {
    font-family: var(--font-body);
    color: var(--warm-brown);
    font-size: 0.9rem;
    flex: 1;
}

.requirement-duration {
    font-family: var(--font-heading);
    color: var(--bronze-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-left: 1rem;
}

.requirements-footer {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bronze-accent);
    font-size: 0.85rem;
    color: var(--warm-brown);
    text-align: center;
}

.requirements-footer strong {
    color: var(--bronze-accent);
    font-weight: 600;
}

.payment-info {
    line-height: 1.7;
}

.payment-info p {
    margin-bottom: 1rem;
    color: var(--warm-brown);
    font-size: 0.9rem;
}

.payment-info strong {
    color: var(--bronze-accent);
    font-weight: 600;
}

.payment-highlight {
    background: var(--light-cream);
    padding: 0.8rem 1rem;
    border-left: 2px solid var(--bronze-accent);
    border-radius: 4px;
    font-style: italic;
    color: var(--deep-brown);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Travel & Cancellation Section */
.travel-cancellation-section {
    padding: 3rem 0;
    background: var(--champagne);
}

.travel-cancellation-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.info-box {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(74, 63, 53, 0.06);
    border-top: 2px solid var(--bronze-accent);
    transition: var(--transition-smooth);
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(74, 63, 53, 0.1);
}

.info-header h2 {
    font-size: 1.8rem;
    color: var(--deep-brown);
    margin-bottom: 0.5rem;
    font-family: var(--font-elegant);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.info-content {
    line-height: 1.7;
}

.info-content p {
    margin-bottom: 1rem;
    color: var(--warm-brown);
    font-size: 0.9rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.travel-note,
.cancellation-highlight {
    background: var(--light-cream);
    padding: 0.8rem 1rem;
    border-left: 2px solid var(--bronze-accent);
    border-radius: 4px;
    font-weight: 500;
    color: var(--deep-brown);
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

.cancellation-highlight {
    font-style: italic;
    border-left-color: var(--bronze-accent);
}

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

@media (max-width: 1200px) {
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem 2rem 4rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-menu.active {
right: 0 !important;
    }

    .nav-link {
        font-size: 1.1rem;
        color: var(--deep-brown);
    }

    .about-content,
    .sedcard-profile,
    .sedcard-hobbies-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sedcard-hobbies-modern {
        display: grid;
        grid-template-rows: auto auto;
    }
    
    .sedcard-hobbies-modern .hobbies-content {
        order: 1;
    }
    
    .sedcard-hobbies-modern .hobbies-image-wrapper {
        order: 2;
    }

    .preferences-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .requirements-wrapper,
    .travel-cancellation-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }

    .hero {
        min-height: 600px;
    }

    .hero-small {
        min-height: 350px;
    }

    .container,
    .container-wide {
        padding: 0 1.5rem;
    }

    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .service-item {
        width: 100%;
        padding: 40px 20px;
    }

    .salaire-elegant-grid {
        grid-template-columns: 1fr;
    }

    .salaire-elegant-box {
        padding: 2rem 1.5rem;
    }

    .salaire-special-offer {
        flex-direction: column;
        text-align: center;
    }

    .special-content {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-details,
    .hobbies-content,
    .sedcard-preferences-modern {
        padding: 2rem 1.5rem;
    }

    .nav-menu .language-flags img {
        width: 18px !important;
        max-width: 18px !important;
        min-width: 18px !important;
        height: auto !important;
    }

    .nav-flags {
        justify-content: center;
        padding: 10px 0 !important;
    }

    .language-flags {
        gap: 6px !important;
    }

    .booking-requirements-section,
    .travel-cancellation-section {
        padding: 2rem 0;
    }

    .requirements-box,
    .info-box {
        padding: 1.5rem;
    }

    .requirement-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.6rem 0;
    }

    .requirement-duration {
        margin-left: 0;
        font-size: 0.95rem;
    }

    .requirements-header h2,
    .info-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-handwriting {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-links li {
        list-style: none;
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    /* Dots auf Mobile ausblenden */
    .footer-links li::before,
    .footer-links li::marker {
        display: none !important;
        content: none !important;
    }

    .requirements-box,
    .info-box {
        padding: 1.2rem;
    }

    .payment-info p,
    .info-content p {
        font-size: 0.85rem;
    }

    .requirement-location {
        font-size: 0.85rem;
    }

    .payment-highlight,
    .travel-note,
    .cancellation-highlight {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
}

/* WordPress Specific Classes */
.alignleft {
    float: left;
    margin: 0 1.5rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--warm-brown);
    margin-top: 0.5rem;
}

.sticky {
    /* Styles for sticky posts */
}

.bypostauthor {
    /* Styles for posts by post author */
}

/* ==========================================
   HERO - INTRO VIDEO & SUBTITLE
   Version 2.1
   ========================================== */

/* Intro-Video (Glitzer-Animation) - läuft VOR dem Hintergrund */
.hero-intro-video-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;                        /* über overlay (z:2) und content (z:3) */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-intro-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    /* Das schwarze Video selbst wird "transparent" indem wir mix-blend-mode nutzen */
    mix-blend-mode: screen;            /* Schwarz = unsichtbar, Gold bleibt sichtbar */
}

/* Subtitle / Caption unter dem Haupttitel */
.hero-subtitle-wrap {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
    max-width: 760px;
    padding: 0 2rem;
    text-align: center;
}

.hero-subtitle {
    font-family: var(--font-body, 'Questrial', sans-serif);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    text-shadow:
        0 1px 6px rgba(0, 0, 0, 0.7),
        0 2px 12px rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Wenn Intro-Video aktiv: hero-content ausblenden (via inline style),
   scroll-indicator noch etwas weiter nach unten schieben */
.hero:has(.hero-intro-video-wrap) .scroll-indicator {
    bottom: 1.5rem;
}

/* Wenn BEIDE (Intro + Subtitle) aktiv: Subtitle weiter oben */
.hero:has(.hero-intro-video-wrap) .hero-subtitle-wrap {
    bottom: 3.5rem;
}

/* Responsive: Intro-Video auf Mobile etwas kleiner */
@media (max-width: 768px) {
    .hero-intro-video-wrap {
        width: 85% !important;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .hero-subtitle-wrap {
        bottom: 4rem;
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-intro-video-wrap {
        width: 95% !important;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }
}
/* ==========================================
   LUXURY SERVICE BOXEN V5.0 - PURISTISCHER LUXUS
   Ohne Icons, mit sanften Animationen
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 1.5rem;
}

.service-item {
    background: #FFFFFF;
    padding: 3rem 2.2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(74, 63, 53, 0.04);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
    border: 1px solid rgba(184, 149, 106, 0);
    backdrop-filter: blur(10px);
}

/* Sanfter Rahmen beim Hover */
.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(145deg, rgba(184, 149, 106, 0.6), rgba(139, 111, 71, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-item:hover::before {
    opacity: 1;
}

/* Sanfter Schatten */
.service-item:hover {
    box-shadow: 0 30px 60px -20px rgba(184, 149, 106, 0.2);
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(184, 149, 106, 0.15);
}

/* Eleganter Zähler */
.service-counter {
    font-family: 'Italiana', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(184, 149, 106, 0.4);
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.service-item:hover .service-counter {
    color: rgba(184, 149, 106, 0.8);
    letter-spacing: 6px;
}

/* Haupttitel - Luxuriöse Typografie */
.service-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #4A3F35;
    margin: 0 0 1.8rem 0;
    letter-spacing: 1.2px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
    transition: all 0.4s ease;
}

/* Minimalistische Linie */
.service-item h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #B8956A;
    opacity: 0.3;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-item:hover h3::after {
    width: 60px;
    opacity: 0.8;
    background: #B8956A;
}

/* Text Container */
.service-item .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 0.5rem;
}

/* Beschreibungstext - Sehr luftig und elegant */
.service-item p {
    font-family: 'Questrial', sans-serif;
    font-size: 0.95rem;
    line-height: 2;
    color: #6B5D52;
    margin: 0;
    text-align: center;
    letter-spacing: 0.4px;
    font-weight: 300;
    padding: 0 0.3rem;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.service-item:hover p {
    color: #4A3F35;
    opacity: 1;
}

/* Dezente Sichtbarkeits-Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-item:nth-child(2) {
    animation-delay: 0.1s;
}

.service-item:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        gap: 1.8rem;
        padding: 0 1.5rem;
    }
    
    .service-item {
        padding: 2.8rem 1.8rem;
    }
    
    .service-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2.5rem 1.8rem;
        border-radius: 20px;
    }
    
    .service-item h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.9;
    }
    
    .service-counter {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .service-item {
        padding: 2.2rem 1.5rem;
    }
    
    .service-item h3 {
        font-size: 1.6rem;
    }
}
/* ==========================================
   LUXURY SERVICE BOXEN V6.0 - FORCIERT GLEICHE HÖHE
   Mit !important und eindeutiger ID
   ========================================== */

body .services-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 auto !important;
    max-width: 1400px !important;
    padding: 0 1.5rem !important;
    align-items: stretch !important;
    justify-items: center !important;
}

/* Für Seiten mit nur 3 Boxen - zentriert anzeigen */
body .services-grid:has(.service-item:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr) !important;
    justify-content: center !important;
}

body .service-item {
    background: #FFFFFF !important;
    padding: 1.6rem 1.4rem !important;
    border-radius: 18px !important;
    text-align: center !important;
    box-shadow: 0 10px 40px -10px rgba(74, 63, 53, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    position: relative !important;
    border: 1px solid rgba(184, 149, 106, 0) !important;
    margin: 0 !important;
    width: 100% !important;
    justify-self: stretch !important;
}

body .service-item .service-content {
    flex: 0 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin: 0 !important;
    justify-content: flex-start !important;
}

body .service-item p {
    font-family: 'Questrial', sans-serif !important;
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
    color: #6B5D52 !important;
    margin: 0 !important;
    text-align: center !important;
    letter-spacing: 0.3px !important;
    font-weight: 300 !important;
    padding: 0 !important;
    word-break: break-word !important;
}

body .service-counter {
    font-family: 'Italiana', serif !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: rgba(184, 149, 106, 0.4) !important;
    letter-spacing: 4px !important;
    margin-bottom: 1.2rem !important;
    display: inline-block !important;
    line-height: 1 !important;
}

body .service-item h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: #4A3F35 !important;
    margin: 0 0 0.8rem 0 !important;
    letter-spacing: 1px !important;
    position: relative !important;
    display: inline-block !important;
    line-height: 1.2 !important;
}

body .service-item h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 30px !important;
    height: 1px !important;
    background: #B8956A !important;
    opacity: 0.3 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    body .service-item {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 1.4rem 1.2rem !important;
    }
}

@media (max-width: 992px) {
    body .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    body .service-item {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}

@media (max-width: 768px) {
    body .services-grid {
        grid-template-columns: 1fr !important;
        max-width: 450px !important;
    }
    body .service-item {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 1.2rem 1rem !important;
    }
    body .service-item h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
}
/* ==========================================
   DESTINATION CARDS - LUXUS EDITION
   ========================================== */

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    padding: 0 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -10px rgba(184, 149, 106, 0.3);
}

.destination-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, 
        rgba(74, 63, 53, 0.95), 
        rgba(74, 63, 53, 0.7),
        transparent);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.destination-tag {
    font-family: 'Questrial', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.destination-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: white;
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.destination-preview {
    font-family: 'Questrial', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.8rem;
    opacity: 0.9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.destination-card:hover .destination-preview {
    max-height: 200px;
    opacity: 1;
}

.destination-link {
    font-family: 'Questrial', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 0.3rem;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.destination-link:hover {
    border-bottom-color: #B8956A;
    color: #B8956A;
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}
/* Grunddesign (Desktop) */
.estelle-travel-section {
    background-color: #F4EAE0 !important; /* Nutzt dein Champagner */
    padding: 60px 20px;
    text-align: center;
    color: #4A3F35;
}

.estelle-travel-title {
    font-family: 'Lora', serif; /* */
    font-size: 36px;
    margin-bottom: 15px;
}

.estelle-travel-line {
    width: 60px;
    height: 1px;
    background-color: #B8956A; /* Dein Bronze-Accent */
    margin: 20px auto 30px;
}

.estelle-travel-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-size: 16px;
}

.estelle-cards-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.estelle-travel-card {
    background: #F9F5F0; /* Dein Light-Cream */
    border-radius: 20px;
    padding: 30px 20px;
    flex: 1;
    min-width: 280px; /* Verhindert zu breite Boxen */
    max-width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.estelle-card-title {
    color: #B8956A;
    font-family: 'Italiana', serif; /* */
    font-size: 24px;
    margin-bottom: 15px;
}

.estelle-card-list {
    font-size: 15px;
    line-height: 2;
    color: #4A3F35;
}

/* --- MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .estelle-travel-section {
        padding: 40px 15px; /* Weniger Platz am Rand auf dem Handy */
    }

    .estelle-travel-title {
        font-size: 26px; /* Kleinere Überschrift */
    }

    .estelle-travel-intro {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .estelle-cards-grid {
        gap: 15px; /* Engere Abstände zwischen den Boxen */
    }

    .estelle-travel-card {
        min-width: 100%; /* Boxen nehmen die volle Breite ein */
        padding: 25px 15px;
        border-radius: 15px;
    }

    .estelle-card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}
/* ==========================================
   ELEGANTE SERVICE SECTION - FÜR ELEMENTOR
   Diese CSS-Regeln in die style.css des Themes einfügen
   ODER in Elementor unter: Einstellungen > Custom CSS
   ========================================== */

.services-elegant-inline {
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.service-row-inline {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row-inline:hover {
    transform: translateX(10px);
}

.service-number-inline {
    font-family: 'Italiana', serif;
    font-size: 4rem;
    line-height: 1;
    color: #B8956A;
    opacity: 0.25;
    font-weight: 300;
    min-width: 80px;
    transition: all 0.4s ease;
}

.service-row-inline:hover .service-number-inline {
    opacity: 0.6;
    transform: scale(1.05);
}

.service-content-inline {
    flex: 1;
}

.service-title-inline {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    color: #4A3F35;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.service-desc-inline {
    color: #6B5D52;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.service-divider-inline {
    height: 1px;
    background: linear-gradient(to right, transparent, #B8956A 20%, #B8956A 80%, transparent);
    opacity: 0.2;
    margin: 0 auto;
    max-width: 600px;
}

@media (max-width: 768px) {
    .service-row-inline {
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .service-number-inline {
        font-size: 3rem;
        min-width: 60px;
    }
    
    .service-title-inline {
        font-size: 1.3rem;
    }
    
    .service-desc-inline {
        font-size: 0.95rem;
    }
    
    .service-row-inline:hover {
        transform: translateX(5px);
    }
}

@media (max-width: 480px) {
    .services-elegant-inline {
        padding: 0 1rem;
    }
    
    .service-row-inline {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }
    
    .service-number-inline {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
}
/* ==========================================
   ESTELLE GRADIENT BACKGROUNDS
   Wiederverwendbare Klassen für elegante Farbverläufe
   ========================================== */

/* ==========================================
   HAUPT-GRADIENT - Wie im "Meine Services" Widget
   ========================================== */

.estelle-gradient-elegant {
    background: linear-gradient(135deg, #F9F5F0 0%, #FFFCF7 50%, #F4EAE0 100%);
}

/* Alternative: Von links nach rechts */
.estelle-gradient-elegant-horizontal {
    background: linear-gradient(90deg, #F9F5F0 0%, #FFFCF7 50%, #F4EAE0 100%);
}

/* Alternative: Von oben nach unten */
.estelle-gradient-elegant-vertical {
    background: linear-gradient(180deg, #F9F5F0 0%, #FFFCF7 50%, #F4EAE0 100%);
}

/* ==========================================
   SUBTILE VARIANTEN
   ========================================== */

/* Sehr subtil - Fast unsichtbar */
.estelle-gradient-subtle {
    background: linear-gradient(135deg, #FFFCF7 0%, #FFF8F0 100%);
}

/* Warm - Mit mehr Champagner-Ton */
.estelle-gradient-warm {
    background: linear-gradient(135deg, #F4EAE0 0%, #FFFCF7 50%, #FFF8F0 100%);
}

/* Cool - Mit mehr Ivory */
.estelle-gradient-cool {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFCF7 50%, #F9F5F0 100%);
}

/* ==========================================
   MIT GOLD-AKZENT
   ========================================== */

/* Zarter Gold-Schimmer von unten */
.estelle-gradient-gold-bottom {
    background: linear-gradient(180deg, #FFFCF7 0%, #FFFCF7 80%, rgba(184, 149, 106, 0.05) 100%);
}

/* Gold-Schimmer von oben */
.estelle-gradient-gold-top {
    background: linear-gradient(180deg, rgba(184, 149, 106, 0.05) 0%, #FFFCF7 20%, #FFFCF7 100%);
}

/* Gold-Schimmer diagonal */
.estelle-gradient-gold-diagonal {
    background: linear-gradient(135deg, 
        rgba(184, 149, 106, 0.03) 0%, 
        #FFFCF7 30%, 
        #FFFCF7 70%, 
        rgba(184, 149, 106, 0.03) 100%
    );
}

/* ==========================================
   RADIAL GRADIENTS - Spotlight Effekt
   ========================================== */

/* Zentrum heller */
.estelle-gradient-radial-center {
    background: radial-gradient(ellipse at center, #FFFFFF 0%, #FFFCF7 50%, #F4EAE0 100%);
}

/* Links heller */
.estelle-gradient-radial-left {
    background: radial-gradient(ellipse at left, #FFFFFF 0%, #FFFCF7 50%, #F4EAE0 100%);
}

/* Rechts heller */
.estelle-gradient-radial-right {
    background: radial-gradient(ellipse at right, #FFFFFF 0%, #FFFCF7 50%, #F4EAE0 100%);
}

/* ==========================================
   MESH GRADIENTS - Modern & Komplex
   ========================================== */

/* Multi-Punkt Gradient - Sehr elegant */
.estelle-gradient-mesh {
    background: 
        radial-gradient(at 20% 30%, rgba(244, 234, 224, 0.8) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255, 248, 240, 0.8) 0px, transparent 50%),
        radial-gradient(at 50% 50%, #FFFCF7 0px, transparent 50%);
    background-color: #F9F5F0;
}

/* Goldener Mesh - Mit Gold-Akzenten */
.estelle-gradient-mesh-gold {
    background: 
        radial-gradient(at 20% 20%, rgba(184, 149, 106, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(184, 149, 106, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 50%, #FFFCF7 0px, transparent 50%);
    background-color: #F9F5F0;
}

/* ==========================================
   SECTION DIVIDERS - Mit Gradient-Übergang
   ========================================== */

/* Gradient Fade-Out nach unten */
.estelle-gradient-fade-bottom {
    position: relative;
}

.estelle-gradient-fade-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #FFFCF7 100%);
    pointer-events: none;
}

/* Gradient Fade-Out nach oben */
.estelle-gradient-fade-top {
    position: relative;
}

.estelle-gradient-fade-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, transparent 0%, #FFFCF7 100%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================
   ANIMIERTE GRADIENTS
   ========================================== */

/* Sanft bewegter Gradient */
.estelle-gradient-animated {
    background: linear-gradient(135deg, #F9F5F0, #FFFCF7, #F4EAE0, #FFF8F0);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Pulsierender Gradient */
.estelle-gradient-pulse {
    background: linear-gradient(135deg, #F9F5F0 0%, #FFFCF7 50%, #F4EAE0 100%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.95;
    }
}

/* ==========================================
   OVERLAYS - Für Bilder/Sections
   ========================================== */

/* Gradient Overlay über Bildern */
.estelle-gradient-overlay {
    position: relative;
}

.estelle-gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(249, 245, 240, 0.9) 0%, 
        rgba(255, 252, 247, 0.7) 50%, 
        rgba(244, 234, 224, 0.9) 100%
    );
    z-index: 1;
}

.estelle-gradient-overlay > * {
    position: relative;
    z-index: 2;
}

/* ==========================================
   SPEZIAL: "MEINE SERVICES" EXAKT
   ========================================== */

/* Exakt wie im About Me Widget */
.estelle-gradient-services {
    background: linear-gradient(135deg, 
        #F4EAE0 0%,      /* Champagner links oben */
        #FFFCF7 25%,     /* Ivory */
        #FFF8F0 50%,     /* Hellstes in der Mitte */
        #FFFCF7 75%,     /* Ivory */
        #F9F5F0 100%     /* Light Cream rechts unten */
    );
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

/* Volle Breite */
.gradient-full-width {
    width: 100%;
}

/* Volle Viewport Höhe */
.gradient-full-height {
    min-height: 100vh;
}

/* Mit Padding */
.gradient-with-padding {
    padding: 80px 20px;
}

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

@media (max-width: 968px) {
    .gradient-with-padding {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .gradient-with-padding {
        padding: 50px 15px;
    }
}

/* ==========================================
   KOMBINATIONEN - Ready to Use
   ========================================== */

/* Perfekt für Gallery Section */
.estelle-gallery-gradient {
    background: linear-gradient(135deg, #F9F5F0 0%, #FFFCF7 50%, #F4EAE0 100%);
    padding: 80px 20px;
    width: 100%;
}

/* Perfekt für About Section */
.estelle-about-gradient {
    background: linear-gradient(135deg, #F4EAE0 0%, #FFFCF7 50%, #FFF8F0 100%);
    padding: 80px 20px;
    width: 100%;
}

/* Perfekt für Services Section */
.estelle-services-gradient {
    background: linear-gradient(135deg, 
        #F4EAE0 0%, 
        #FFFCF7 25%, 
        #FFF8F0 50%, 
        #FFFCF7 75%, 
        #F9F5F0 100%
    );
    padding: 80px 20px;
    width: 100%;
}

/* ==========================================
   DARK MODE VARIANTS (Optional)
   ========================================== */

@media (prefers-color-scheme: dark) {
    .estelle-gradient-elegant {
        background: linear-gradient(135deg, #2a2520 0%, #1a1a1a 50%, #352f2a 100%);
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    [class*="estelle-gradient"] {
        background: #FFFFFF !important;
    }
}
/* Fix: Reisebegleitung Hero Container - Mobile Höhe reduzieren */
@media (max-width: 768px) {
    .elementor-element-2f5774e {
        min-height: 60vh !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .elementor-element-2f5774e {
        min-height: 50vh !important;
        height: auto !important;
    }
}
/* Fix: Multilingual Content Widget - Mobile Padding */
@media (max-width: 768px) {
    .estelle-multilingual-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Impressum & Datenschutz - nur mobil anzeigen */
.nav-menu li a[href*="impressum"] {
    display: none;
}

.nav-menu li.nav-legal {
    display: none !important;
}

@media (max-width: 992px) {
    .nav-menu {
        overflow-y: auto;
    }

    .nav-menu li.nav-legal {
        display: block !important;
        margin-top: 8px;
        padding-top: 20px;
        border-top: 1px solid rgba(184,149,106,0.25);
        width: 100%;
    }

    .nav-legal-link,
    .nav-menu li.nav-legal a,
    .nav-menu li.nav-legal a:visited {
        display: inline-block !important;
        font-size: 11px !important;
        letter-spacing: 0.15em !important;
        text-transform: uppercase !important;
        color: #a89070 !important;
        line-height: 2 !important;
        text-decoration: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu li.nav-legal a:hover {
        color: #B8956A !important;
    }
}
/* ==========================================
   GALERIE SPLIT HEADER
   Zweispaltiges Layout: Quote links (75%), Titel rechts (25%)
   ========================================== */

.galerie-split-header {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Linke Seite: Zitat ── */
.split-quote {
    padding-right: 2rem;
    border-right: 1px solid rgba(184, 149, 106, 0.25);
}

.split-quote .section-title-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #B8956A;
    line-height: 1.6;
    font-weight: normal;
    margin: 0;
}

/* ── Rechte Seite: Label + Titel + Linie ── */
.split-title {
    padding-left: 1rem;
}

.split-label {
    display: block;
    font-family: 'Questrial', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #B8956A;
    margin-bottom: 1rem;
}

.split-text {
    font-family: 'Lora', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 400;
    color: #2C2118;
    line-height: 1.35;
    margin: 0 0 1.2rem 0;
}

.split-underline {
    width: 48px;
    height: 2px;
    background: #B8956A;
}

/* ==========================================
   RESPONSIVE – TABLET & MOBILE
   ========================================== */

@media (max-width: 900px) {
    .galerie-split-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .split-quote {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(184, 149, 106, 0.25);
        padding-bottom: 2rem;
    }

    .split-title {
        padding-left: 0;
    }
}

@media (max-width: 600px) {
    .galerie-split-header {
        padding: 2rem 1rem;
    }

    .split-quote .section-title-script {
        font-size: clamp(1rem, 4.5vw, 1.3rem);
    }

    .split-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* ============================================================
   HERO TITEL FIX – Buchstaben horizontal, nicht vertikal
   ============================================================ */

.hero-handwriting {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.hero-handwriting .title-line-1,
.hero-handwriting .title-line-2 {
    display: block !important;
    white-space: nowrap !important;
    width: 100% !important;
    text-align: center !important;
}

.hero-handwriting .char {
    display: inline !important;
    white-space: pre !important;
}

.hero-handwriting.animate-handwriting.is-animating .char {
    display: inline-block !important;
    opacity: 0;
    animation: writeChar 0.3s ease-out forwards;
}

/* ============================================================
   HERO TITEL – Zeilenabstand kleiner
   ============================================================ */
.hero-handwriting {
    gap: 0 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
}

.hero-handwriting .title-line-1 {
    margin-bottom: -0.1em !important;
}

.hero-handwriting .title-line-2 {
    margin-top: 0 !important;
}

/* ============================================================
   HERO SUBTITLE BOX – sicherstellen dass sie sichtbar ist
   ============================================================ */
.hero-subtitle-box {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
