/* =========================================================
   MA.SH.ERI - HAUPT STYLESHEET
   Alle Farben werden durch die Variablen gesteuert.
   ========================================================= */

:root {
    --primary-color: #d4a373; /* Gold/Beige */
    --secondary-color: #333333; /* Dunkelgrau */
    --bg-color: #fdfbf7; /* Creme Hintergrund */
    --footer-color: #404b3b; /* Dunkelgrün für Footer etc. */
    --white: #ffffff;
    --nav-height: 80px;
}

/* =========================================================
   1. BASIS & RESET
   ========================================================= */
* { box-sizing: border-box; }

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-color);
    color: var(--secondary-color);
    overflow-x: hidden;
    padding-top: var(--nav-height); 
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }


/* =========================================================
   2. HEADER & NAVIGATION
   ========================================================= */
header {
    background-color: var(--white);
    height: var(--nav-height);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%;
    transition: top 0.3s ease;
}

nav {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.nav-links {
    display: flex;
    gap: 15px; 
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.75rem; 
    letter-spacing: 0.5px; 
    font-weight: 700;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--primary-color); }

.nav-left { 
    flex: 1; 
    display: flex; 
    justify-content: flex-start; 
    padding-right: 90px; 
}

.nav-right { 
    flex: 1; 
    display: flex; 
    justify-content: flex-end; 
    padding-left: 90px; 
}

/* Logo Setup */
.logo-container {
    position: absolute;
    left: 50%;
    top: 15px; 
    transform: translateX(-50%); 
    width: 130px; 
    height: 130px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    border: 2px solid var(--primary-color);
    overflow: hidden; 
    animation: zoomInLogo 1.2s ease-out forwards;
}

@keyframes zoomInLogo {
    80% { transform: translateX(-50%) scale(1.1); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.logo-container img {
    position: absolute; 
    top: 50%;           
    left: 50%;          
    transform: translate(-50%, -50%); 
    width: 145%;        
    height: auto;       
    object-fit: contain; 
}

/* Hamburger (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 3px 0;
    transition: 0.4s;
}

.mobile-cat { display: none; }

/* Mobile Header Anpassungen */
@media screen and (max-width: 900px) {
    .nav-left, .nav-right { display: none; }
    .hamburger { display: flex; position: absolute; right: 20px; top: 28px; }
    .logo-container { width: 90px; height: 90px; top: 10px; z-index: 1001; }
    
    /* Geöffnetes Menü */
    nav.active {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100vh;
        background-color: var(--white);
        display: flex; flex-direction: column; justify-content: flex-start; align-items: center;
        padding-top: 0; z-index: 999; overflow-y: auto; 
    }
    nav.active .nav-left, nav.active .nav-right {
        display: flex; flex-direction: column; width: 100%; background-color: var(--white);
        padding: 0; position: relative; top: auto; left: auto; align-items: center; border: none;
    }
    nav.active .nav-left { margin-top: 130px; margin-bottom: 0; padding-bottom: 20px; border-bottom: 1px solid #eee; width: 60%; }
    nav.active .nav-right { margin-top: 0; padding-top: 20px; padding-bottom: 20px; width: 60%; justify-content: flex-start; }
    nav.active .nav-links { flex-direction: column; gap: 20px; width: 100%; text-align: center; }
    nav.active .nav-right a { color: var(--primary-color); font-weight: 700; }
}


/* =========================================================
   3. HERO SECTION (Banner)
   ========================================================= */
.hero {
    position: relative;
    height: 60vh; 
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('../images/Banner.png');    
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    margin-bottom: 60px; 
}

.hero-content {
    position: static; 
}

.hero-title-overlap {
    position: absolute;
    bottom: -15px; 
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color); 
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    margin: 0;
    z-index: 10;
    white-space: nowrap;
    font-size: 9rem; 
    text-shadow: 0px 5px 15px rgba(0,0,0,0.1);
}

.hero-subtitle {
    position: absolute;
    bottom: -50px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    color: var(--secondary-color); 
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    z-index: 9;
}

.content-spacer {
    height: 40px; 
}

/* Mobile Hero Anpassungen */
@media screen and (max-width: 1024px) {
    .hero-title-overlap { font-size: 6rem; bottom: -40px; }
}

@media screen and (max-width: 900px) {
    .hero { height: 50vh; margin-bottom: 50px; } 
    .hero-title-overlap { font-size: 18vw; bottom: -10px; }
    .hero-subtitle { font-size: 0.8rem; letter-spacing: 1.5px; bottom: -40px; width: 90%; }
}


/* =========================================================
   4. SERVICES PREVIEW (Startseite)
   ========================================================= */
.services-preview {
    padding: 80px 20px;
    max-width: 1400px; 
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 1px;
}

/* --- FLEXBOX STATT GRID FÜR PERFEKTE ZENTRIERUNG --- */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Zentriert die Elemente der zweiten Reihe! */
    gap: 20px; 
}

.service-card {
    /* Desktop: 3 Karten pro Reihe. Die 4. und 5. Karte rutschen mittig darunter. */
    /* Die 14px Abzug berechnen exakt den Spalt (gap) zwischen den Karten */
    width: calc(33.333% - 14px); 
    position: relative;
    display: block; 
    height: 450px; 
    overflow: hidden; 
    text-decoration: none;
    border-radius: 4px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease; 
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 2;
    transition: background 0.3s;
}

.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    padding: 30px;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.3s;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; 
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.card-content p {
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    opacity: 0.9;
    font-weight: 300;
}

.btn-more {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color); 
    padding-bottom: 5px;
    width: fit-content;
    transition: color 0.3s, border-color 0.3s;
}

.service-card:hover .card-bg { transform: scale(1.1); }
.service-card:hover .card-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7)); }
.service-card:hover .btn-more { color: var(--primary-color); border-color: var(--white); }

/* --- RESPONSIVE ANPASSUNGEN --- */
@media screen and (max-width: 1024px) {
    /* Tablet (iPad etc.): 2 Karten nebeneinander. Die 5. Karte ist ganz unten mittig. */
    .service-card { width: calc(50% - 10px); }
}

@media screen and (max-width: 600px) {
    /* Handy: Alle untereinander in voller Breite */
    .service-card { width: 100%; height: 350px; }
}


/* =========================================================
   5. WELCOME & REVIEWS
   ========================================================= */
.welcome-section { padding: 80px 20px; text-align: center; }
.container-narrow { max-width: 800px; margin: 0 auto; }

.sub-headline {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.welcome-section h2 { font-size: 2.5rem; color: var(--secondary-color); margin: 0 0 25px 0; }
.gold-separator { width: 60px; height: 3px; background-color: var(--primary-color); margin: 0 auto 30px auto; }
.welcome-section p { font-size: 1.1rem; line-height: 1.8; color: #666; margin-bottom: 30px; }

.btn-text-gold {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.btn-text-gold:hover { color: var(--secondary-color); }

.reviews-section { padding: 80px 20px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 40px auto 0 auto; }
.review-card { background: var(--white); padding: 40px; text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); border-radius: 4px; }
.stars { color: var(--primary-color); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 20px; }
.review-text { font-style: italic; color: #555; line-height: 1.6; margin-bottom: 20px; }
.review-author { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; color: var(--secondary-color); letter-spacing: 1px; }

@media screen and (max-width: 768px) {
    .welcome-section h2 { font-size: 2rem; }
    .welcome-section { padding: 60px 20px; }
}


/* =========================================================
   6. LOCATIONS (Standorte)
   ========================================================= */
.location-split { display: flex; height: 500px; width: 100%; margin-top: 50px; }
.location-box { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; color: var(--white); text-decoration: none; transition: all 0.5s ease; }

.loc-zurich { background: url('../images/Zurich.webp') center/cover no-repeat; border-right: 2px solid var(--white); }
.loc-slovakia { background: url('../images/Slowakei.webp') center/cover no-repeat; filter: grayscale(100%); }
.loc-slovakia:hover { filter: grayscale(0%); }

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); transition: background 0.3s; }
.location-box:hover .overlay { background: rgba(0,0,0,0.2); }

.loc-content { position: relative; z-index: 2; text-align: center; }
.loc-content h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.active-marker { background-color: var(--primary-color); padding: 5px 15px; margin-top: 15px; display: inline-block; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

@media screen and (max-width: 900px) {
    .location-split { flex-direction: column; height: auto; }
    .location-box { height: 250px; width: 100%; border-right: none; border-bottom: 2px solid var(--white); }
}


/* =========================================================
   7. SPLIT LAYOUTS (Kontakt, Team, Services)
   ========================================================= */
.contact-split-wrapper, .team-split-wrapper, .service-split-wrapper { display: flex; flex: 1; width: 100%; min-height: 600px; }
.team-split-wrapper, .service-split-wrapper { overflow: hidden; }

/* Linke Seite / Bild Seiten */
.contact-info-side, .team-content-side, .service-content-side { flex: 1; background-color: var(--bg-color); display: flex; justify-content: center; align-items: center; padding: 60px; }
.team-image-side, .service-image-side { flex: 1; position: relative; background-color: var(--bg-color); overflow: hidden; }

.team-image-side img, .service-image-side img {
    position: absolute; top: 40px; bottom: 40px; left: 40px; right: 40px;
    width: calc(100% - 80px); height: calc(100% - 80px);
    object-fit: cover; border: 2px solid var(--primary-color); box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background-color: var(--white); border-radius: 4px;
}
.team-image-side img { object-position: center top; }
.service-image-side img { object-position: center; }

.sub-title {
    display: block;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}
/* Spezifisch Kontakt Map */
.contact-map-side { flex: 1; position: relative; background-color: var(--bg-color); padding: 40px; display: flex; justify-content: center; align-items: center; }
.contact-map-side iframe { width: 100%; height: 100%; border: 2px solid var(--primary-color) !important; box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-radius: 4px; background-color: var(--white); }

/* Inhalts-Boxen */
.info-content { max-width: 500px; width: 100%; }
.team-text-box, .service-text-box { max-width: 550px; width: 100%; }

.info-content h1 { font-size: 3rem; margin: 0 0 20px 0; color: var(--secondary-color); }
.gold-divider { width: 50px; height: 3px; background-color: var(--primary-color); margin-bottom: 30px; }

/* Kontakt Spezifisch */
.intro-text { font-size: 1.1rem; color: #555; line-height: 1.6; margin-bottom: 40px; }
.contact-block { display: flex; align-items: flex-start; margin-bottom: 30px; }
.icon-gold { color: var(--primary-color); font-size: 1.5rem; margin-right: 20px; margin-top: 5px; }
.contact-block h3 { font-family: 'Lato', sans-serif; font-size: 0.9rem; text-transform: uppercase; margin: 0 0 5px 0; color: #999; letter-spacing: 1px; }
.contact-block p { font-size: 1.2rem; line-height: 1.5; margin: 0; color: var(--secondary-color); }
.phone-link { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--secondary-color); font-weight: 700; transition: color 0.3s; }
.text-link { font-size: 1.2rem; color: var(--secondary-color); }
.phone-link:hover, .text-link:hover { color: var(--primary-color); }
.small-note { font-size: 0.9rem; color: #777; margin-top: 5px; }

/* Team Spezifisch */
.team-quote { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-style: italic; color: var(--primary-color); margin-bottom: 25px; line-height: 1.4; }
.team-description, .service-description { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 35px; }
.skills-container { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.skill-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid var(--primary-color); padding: 8px 15px; color: var(--secondary-color); border-radius: 20px; }
.signature { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--secondary-color); margin-top: 20px; }

/* Buttons Allgemein */
.btn-book { display: inline-block; padding: 12px 30px; background-color: var(--primary-color); color: var(--white); text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; font-weight: 700; border-radius: 2px; transition: background 0.3s, transform 0.3s; }
.btn-book:hover { background-color: var(--secondary-color); transform: translateY(-2px); }

/* Mobile Split Layouts */
@media screen and (max-width: 900px) {
    .contact-split-wrapper { flex-direction: column-reverse; height: auto; }
    .contact-map-side { height: 450px; width: 100%; padding: 20px; }
    .contact-info-side { padding: 40px 20px; }
    
    .team-split-wrapper, .service-split-wrapper { flex-direction: column; height: auto !important; }
    .team-image-side, .service-image-side { width: 100%; height: 320px; flex: none; order: 1; }
    .team-content-side, .service-content-side { width: 100%; padding: 40px 20px; order: 2; }
    .team-image-side img, .service-image-side img { top: 15px; bottom: 15px; left: 15px; right: 15px; width: calc(100% - 30px); height: calc(100% - 30px); box-shadow: none !important; }
    
    .service-text-box h1, .team-text-box h1, .info-content h1 { font-size: 2rem; }
    .phone-link { font-size: 1.5rem; }
}


/* =========================================================
   8. PREISLISTEN (Scrollbare Seiten)
   ========================================================= */
.scrollable-side { overflow-y: auto; display: block; padding: 0; }
.price-page-box { max-width: 600px; margin: 0 auto; padding: 60px 40px; }
.price-category { margin-bottom: 50px; }
.price-category h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--primary-color); border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 20px; }

.price-list { margin-bottom: 40px; width: 100%; }
.price-item { display: flex; align-items: flex-end; margin-bottom: 15px; font-size: 1rem; color: var(--secondary-color); }
.price-label { font-weight: 700; white-space: nowrap; }
.price-dots { flex: 1; border-bottom: 2px dotted #ccc; margin: 0 10px 5px 10px; }
.price-value { font-weight: 700; color: var(--primary-color); white-space: nowrap; }

.scrollable-side::-webkit-scrollbar { width: 6px; }
.scrollable-side::-webkit-scrollbar-track { background: #f1f1f1; }
.scrollable-side::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }
.scrollable-side::-webkit-scrollbar-thumb:hover { background: var(--primary-color); }

@media screen and (max-width: 900px) {
    .service-split-wrapper { display: block !important; height: auto !important; }
    .scrollable-side { height: auto !important; overflow-y: visible !important; display: block !important; }
    .price-page-box { padding: 40px 20px 80px 20px; }
    .service-image-side { height: 300px !important; position: relative !important; }
    .price-label { white-space: normal; max-width: 70%; line-height: 1.3; }
}


/* =========================================================
   9. RECHTSTEXTE (Impressum & Co.)
   ========================================================= */
.legal-page-wrapper { padding: 80px 20px; background-color: var(--bg-color); min-height: 60vh; }
.legal-container { max-width: 800px; margin: 0 auto; background-color: var(--white); padding: 60px; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border-radius: 4px; }
.legal-container h1 { text-align: center; font-size: 2.5rem; color: var(--secondary-color); margin-bottom: 20px; }
.legal-container .gold-divider { margin: 0 auto 50px auto; }
.legal-section { margin-bottom: 40px; }
.legal-section h3 { font-family: 'Lato', sans-serif; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary-color); margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.legal-section p { font-size: 1rem; line-height: 1.6; color: #555; margin-bottom: 15px; hyphens: auto; text-align: justify; text-justify: inter-word; }
.legal-section a { color: var(--secondary-color); text-decoration: underline; transition: color 0.3s; }
.legal-section a:hover { color: var(--primary-color); }

@media screen and (max-width: 768px) {
    .legal-container { padding: 30px 20px; }
    .legal-container h1 { font-size: 2rem; }
}


/* =========================================================
   10. SPECIALS (Banners, Animations)
   ========================================================= */
/* Team Bild Animation */
@keyframes imageFade {
  0%, 45% { opacity: 1; }
  55%, 95% { opacity: 0; }
  100% { opacity: 1; }
}
.img-serious { z-index: 1; }
.img-fun { z-index: 2; animation: imageFade 12s ease-in-out infinite; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(30, 30, 30, 0.95); color: var(--white); z-index: 10000; padding: 15px 20px; box-shadow: 0 -2px 10px rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; }
.cookie-content { max-width: 1200px; width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; font-family: 'Lato', sans-serif; }
.cookie-content a { color: var(--primary-color); text-decoration: underline; margin-left: 5px; }
.cookie-btn { background-color: var(--primary-color); color: var(--white); border: none; padding: 5px 15px; border-radius: 2px; cursor: pointer; font-weight: 700; margin-left: 20px; font-size: 0.8rem; transition: background 0.3s; }
.cookie-btn:hover { background-color: var(--white); color: var(--secondary-color); }

@media screen and (max-width: 600px) {
    .cookie-content { flex-direction: column; text-align: center; gap: 10px; }
    .cookie-btn { margin-left: 0; width: 100%; }
}

/* Construction Banner */
.construction-bar { position: fixed; top: 0; left: 0; width: 100%; height: auto; min-height: 40px; z-index: 2000; background-color: #fff8e1; color: #856404; border-bottom: 1px solid #ffeeba; display: flex; justify-content: center; align-items: center; box-shadow: 0 1px 3px rgba(0,0,0,0.1); padding: 10px 50px 10px 20px; box-sizing: border-box; }
.const-content { font-size: 0.85rem; font-family: 'Lato', sans-serif; text-align: center; white-space: normal; line-height: 1.4; }
.const-close { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 1.5rem; color: #856404; cursor: pointer; padding: 5px; z-index: 2001; }


/* =========================================================
   11. FOOTER
   ========================================================= */
.site-footer { margin-top: auto; background-color: var(--footer-color); color: var(--white); border-top: 15px solid var(--primary-color); padding: 35px 0; font-family: 'Lato', sans-serif; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-col { flex: 1; display: flex; }

.footer-col.left { justify-content: flex-start; gap: 30px; }
.footer-col.left a { color: var(--white); text-decoration: none; font-size: 1.1rem; font-weight: 400; transition: color 0.3s; }
.footer-col.left a:hover { color: var(--primary-color); }

.footer-col.center { justify-content: center; flex-direction: column; text-align: center; }
.brand-name { font-family: 'Lato', sans-serif; font-size: 2rem; font-weight: 400; line-height: 1; }
.date-range { font-size: 1rem; margin-top: 5px; font-weight: 300; opacity: 0.9; }

.footer-col.right { justify-content: flex-end; gap: 20px; }
.social-icon { margin: 0 8px; font-size: 1.8rem; color: var(--white); transition: transform 0.3s, color 0.3s; }
.social-icon:hover { color: var(--primary-color); transform: translateY(-3px); }

.footer-bottom-credit { width: 100%; text-align: center; font-size: 0.7rem; padding-top: 15px; margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); opacity: 0.6; font-weight: 300; color: var(--white); }
.footer-bottom-credit a { color: inherit; border-bottom: 1px dotted #ccc; transition: color 0.3s; }
.footer-bottom-credit a:hover { color: var(--primary-color); }

@media screen and (max-width: 900px) {
    .site-footer { padding: 30px 20px; border-top-width: 10px; }
    .footer-inner { flex-direction: column; gap: 30px; }
    .footer-col.left { flex-direction: column; align-items: center; gap: 15px; order: 2; }
    .footer-col.center { order: 1; }
    .footer-col.right { order: 3; gap: 30px; }
}



/* =========================================================
   X. EINHEITLICHE SEKTIONS-KÖPFE (Philosophie, Behandlungen, Reviews)
   ========================================================= */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-headline {
    display: block;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px; /* Nah an der Überschrift */
}

.section-title {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
}

.gold-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 25px auto;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .section-header { padding: 0 20px; }
}

/* =========================================================
   Y. BEWERTUNGEN & FORMULAR (Startseite)
   ========================================================= */
.reviews-section { padding: 80px 20px; text-align: center; background-color: var(--bg-color); }
.reviews-container { max-width: 1100px; margin: 0 auto; }

/* Slider für die Bewertungskarten */
.reviews-slider-container { display: flex; justify-content: center; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x mandatory; gap: 20px; padding: 20px 10px 40px 10px; scrollbar-width: none; }
.reviews-slider-container::-webkit-scrollbar { display: none; }

.review-slide { flex: 0 0 320px; scroll-snap-align: center; background: var(--white); padding: 35px 25px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-top: 4px solid var(--primary-color); text-align: left; display: flex; flex-direction: column; }
.review-stars i { color: var(--primary-color); font-size: 14px; margin-bottom: 15px; }
.review-slide-text { color: #555; font-style: italic; line-height: 1.6; font-size: 0.95rem; margin-bottom: 20px; flex-grow: 1; }
.review-slide-author { font-family: 'Playfair Display', serif; font-weight: bold; color: var(--secondary-color); font-size: 1.1rem; margin: 0; }
.review-slide-ort { color: #999; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* "Neu eröffnet" Info-Box */
.new-opening-box { max-width: 700px; margin: 0 auto 50px auto; padding: 40px 30px; background: var(--white); border-radius: 15px; border-top: 4px solid var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.new-opening-box h3 { font-family: 'Playfair Display', serif; margin-bottom: 20px; color: var(--secondary-color); font-size: 1.8rem; }
.new-opening-box p { font-size: 1.1rem; color: #666; line-height: 1.6; margin: 0; }

/* Formular Buttons & Layout */
.btn-toggle-review { background: var(--white); border: 1px solid var(--primary-color); color: var(--secondary-color); padding: 12px 30px; border-radius: 50px; cursor: pointer; font-weight: bold; transition: 0.3s; font-family: 'Lato', sans-serif; }
.btn-toggle-review:hover { background: var(--primary-color); color: var(--white); }
.btn-submit-review { width: 100%; border: none; cursor: pointer; padding: 15px; font-size: 1.1rem; border-radius: 8px; background-color: var(--primary-color); color: var(--white); font-weight: bold; transition: 0.3s; text-transform: uppercase; }
.btn-submit-review:hover { background-color: var(--secondary-color); }

.review-form-wrapper { max-width: 600px; margin: 0 auto; text-align: center; }
#review-form-content { display: none; margin-top: 30px; }
.review-form-box { background: var(--white); padding: 40px 30px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; text-align: left; }

.form-group { margin-bottom: 20px; text-align: left; }
.text-center { text-align: center; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; font-size: 0.9rem; color: #444; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Lato', sans-serif; box-sizing: border-box; }
.form-row-split { display: flex; gap: 15px; flex-wrap: wrap; }
.form-row-split .form-group { flex: 1; min-width: 200px; }

/* Sterne Input (Radio Buttons) */
.star-rating-input { display: flex; flex-direction: row-reverse; justify-content: center; gap: 10px; margin-bottom: 10px; }
.star-rating-input input { display: none; }
.star-rating-input label { font-size: 30px; color: #ddd; cursor: pointer; transition: 0.2s; }
.star-rating-input input:checked ~ label, .star-rating-input label:hover, .star-rating-input label:hover ~ label { color: var(--primary-color); }

.checkbox-group { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 25px; text-align: left; }
.checkbox-group label { font-size: 0.85rem; color: #666; line-height: 1.4; }

/* Erfolgsmeldung & Info Text */
.alert-success { background: var(--white); color: var(--secondary-color); padding: 40px 20px; border-radius: 15px; border-top: 4px solid var(--primary-color); box-shadow: 0 10px 30px rgba(0,0,0,0.05); font-weight: bold; }
.alert-success i { font-size: 30px; color: var(--primary-color); margin-bottom: 15px; display: block; }
.already-reviewed-text { color: #999; font-style: italic; margin-top: 20px; }


/* Mobile & Tablet Anpassungen für Slider */
@media (max-width: 1024px) {
    .reviews-slider-container { 
        /* Zwingt den Slider, am linken Rand zu starten, damit man auf dem iPad scrollen kann */
        justify-content: flex-start; 
        padding-left: 20px; 
        padding-right: 20px; 
    }
}

@media (max-width: 600px) {
    .review-slide { flex: 0 0 calc(100% - 20px); }
    .review-form-box { padding: 30px 20px; }
}