/* =========================================
   1. FARBEN, VARIABLEN & GRUNDLAGEN
   ========================================= */
:root {
    --bg-body: #FDFBF8;       /* Helles Creme */
    --bg-card: #FFFFFF;
    --primary: #94A89A;       /* Salbei Grün */
    --primary-dark: #7A8F80;  /* Dunkleres Grün für Hover */
    --primary-light: #E8EFE9; 
    --secondary: #F2EFE9;
    --text-dark: #5C5550;     /* Grau-Braun */
    --text-light: #8A8580;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(148, 168, 154, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

section { scroll-margin-top: 100px; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background: rgba(255,255,255,0.98);
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

header.hide-nav { transform: translateY(-100%); opacity: 0; }

/* Logo Styling für die Navbar */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none; /* Keine Unterstreichung beim Link */
    cursor: pointer;      /* Zeigt Hand-Symbol beim Drüberfahren */
}

/* Logo Grösse angepasst auf ca 50% (40px) */
.logo img {
    max-height: 40px; 
    width: auto;
    transition: transform 0.3s ease; /* Netter kleiner Effekt */
}

/* Optional: Logo wird beim Drüberfahren minmal grösser */
.logo:hover img {
    transform: scale(1.05);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: 0.3s; }
nav a:hover { color: var(--primary); }

.nav-btn, .main-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-btn:hover, .main-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 143, 128, 0.3);
}

.full-width { width: 100%; margin-top: 10px;}

.secondary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.secondary-btn:hover { border-color: var(--primary); color: var(--primary); background-color: #fff; }

/* Mobile Menu */
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle .bar { width: 25px; height: 3px; background-color: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

@media (max-width: 768px) {
    header { padding: 15px 20px; }
    .menu-toggle { display: flex; }
    nav ul {
        position: absolute; top: 70px; left: 0; width: 100%; background-color: #fff;
        flex-direction: column; align-items: center; gap: 30px; padding: 40px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); transform: translateY(-150%);
        transition: transform 0.4s ease; z-index: -1;
    }
    nav ul.active { transform: translateY(0); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* =========================================
   3. HERO SECTION & ANIMATIONEN
   ========================================= */
.hero {
    background-color: var(--secondary);
    padding: 140px 20px 100px 20px;
    text-align: center;
    border-radius: 0 0 50% 50% / 20px; 
    scroll-margin-top: 0;
}
.gender-badge {
    display: inline-block; background-color: #fff; color: var(--primary-dark);
    padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 20px; border: 1px solid var(--primary); font-weight: 600;
}
.hero h1 { font-size: 3rem; color: var(--primary-dark); margin-bottom: 10px; font-weight: 300; }
@media (max-width: 600px) { .hero h1 { font-size: 2.2rem; } }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content .gender-badge, .hero-content h1, .hero-content p, .hero-content .main-btn {
    opacity: 0; animation: fadeInUp 1s ease-out forwards;
}
.hero-content .gender-badge { animation-delay: 0.2s; }
.hero-content h1 { animation-delay: 0.4s; }
.hero-content p { animation-delay: 0.6s; }
.hero-content .main-btn { animation-delay: 0.8s; }
.hero-content .main-btn:hover { transform: translateY(-3px) scale(1.02); opacity: 1; transition: all 0.3s ease; }

/* =========================================
   4. SERVICES & ABOUT
   ========================================= */
.container { max-width: 1100px; margin: 60px auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--bg-card); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform 0.3s ease; border: 1px solid #f0f0f0; display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.service-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.service-img { width: 100%; height: 200px; object-fit: cover; object-position: center; border-bottom: 1px solid #f0f0f0; cursor: pointer; }
.card-content { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.service-card h3 { color: var(--primary-dark); margin-top: 0; margin-bottom: 10px; cursor: pointer; }
.card-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 15px; border-top: 1px solid #f9f9f9; }
.tag { display: inline-block; background: var(--secondary); color: var(--primary-dark); padding: 4px 10px; border-radius: 4px; font-size: 0.8rem; margin-bottom: 15px; align-self: flex-start; font-weight: bold; }

/* About */
.about-section { margin-top: 100px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-gallery { display: flex; flex-direction: column; gap: 15px; }
.main-image img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 1/1; }
.small-images { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.small-images img { width: 100%; height: 100px; object-fit: cover; border-radius: 8px; transition: transform 0.3s, opacity 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.small-images img:hover { transform: translateY(-3px); opacity: 0.9; }
.about-text h2 { color: var(--primary-dark); font-size: 2.5rem; margin-bottom: 25px; margin-top: 0; }
.about-text p { margin-bottom: 15px; font-size: 1.05rem; }
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; } .about-gallery { order: -1; margin-bottom: 30px; }
    .main-image img { aspect-ratio: 4/3; } .small-images img { height: 80px; }
}

/* =========================================
   5. STANDORT & KONTAKT
   ========================================= */
.location-section { margin-top: 80px; margin-bottom: 50px; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.location-map iframe { border-radius: var(--radius); }
.contact-list { list-style: none; padding: 0; margin: 25px 0; }
.contact-list li { display: flex; align-items: center; margin-bottom: 15px; font-size: 1.05rem; }
.contact-icon { width: 24px; height: 24px; margin-right: 15px; color: var(--primary); flex-shrink: 0; }
.contact-list a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color 0.3s; }
.contact-list a:hover { color: var(--primary); }
@media (max-width: 768px) { .location-grid { grid-template-columns: 1fr; } }

/* =========================================
   6. MODAL (Soft Design) & SLIDE PANEL
   ========================================= */
.slide-panel { position: fixed; top: 0; right: 0; width: 100%; max-width: 500px; height: 100%; background: white; z-index: 300; box-shadow: -5px 0 30px rgba(0,0,0,0.1); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); overflow-y: auto; }
.slide-panel.open { transform: translateX(0); }
.overlay-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); backdrop-filter: blur(2px); z-index: 290; display: none; opacity: 0; transition: opacity 0.3s; }
.overlay-bg.visible { display: block; opacity: 1; }
.slide-content { position: relative; padding-bottom: 50px; }
.close-slide-btn { position: absolute; top: 20px; right: 20px; background: white; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 24px; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.1); z-index: 10; color: var(--text-dark); }
.info-hero-img { width: 100%; height: 300px; background-color: #eee; background-size: cover; background-position: center; }
.info-text-wrapper { padding: 30px; }
.long-text { margin-top: 20px; color: var(--text-dark); font-size: 1rem; line-height: 1.8; }
.long-text p { margin-bottom: 15px; }
.info-footer { margin-top: 40px; }

/* Booking Modal */
.modal { display: none; position: fixed; z-index: 1200; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.4); backdrop-filter: blur(5px); overflow-y: auto; }
.modal-content { background-color: var(--bg-card); margin: 5% auto; padding: 40px; border-radius: 20px; width: 90%; max-width: 550px; position: relative; box-shadow: 0 25px 50px rgba(0,0,0,0.15); }
.close-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: var(--text-light); transition: color 0.3s; }
.close-btn:hover { color: var(--primary); }

.booking-placeholder label { display: block; margin-bottom: 10px; font-size: 0.95rem; font-weight: 600; color: var(--primary-dark); }
/* Soft Select Input */
.booking-placeholder select { width: 100%; padding: 15px; margin: 0 0 20px 0; border: 2px solid var(--secondary); border-radius: 12px; font-family: inherit; background: #fff; font-size: 1rem; color: var(--text-dark); transition: all 0.3s ease; cursor: pointer; }
.booking-placeholder select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-light); }

.info-box { background-color: var(--primary-light); padding: 15px; border-radius: 12px; margin: 25px 0; font-size: 0.95rem; color: var(--primary-dark); display: flex; align-items: center; }
.info-box::before { content: 'ℹ'; margin-right: 10px; font-size: 1.2rem; }
.variant-container { display: flex; flex-direction: column; gap: 12px; margin-bottom: 15px; max-height: 300px; overflow-y: auto; padding: 5px; }
/* Soft Options */
.variant-option { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 2px solid transparent; border-radius: 12px; cursor: pointer; background: #fff; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 2px 5px rgba(0,0,0,0.03); }
.variant-option:hover { background-color: rgba(148, 168, 154, 0.08); border-color: rgba(148, 168, 154, 0.3); transform: translateY(-2px); }
.variant-option.selected { border-color: var(--primary); background-color: var(--primary-light); box-shadow: 0 8px 20px rgba(148, 168, 154, 0.25); transform: translateY(-2px); }
.variant-option.selected .variant-name, .variant-option.selected .variant-info { color: var(--primary-dark); }
.variant-name { font-weight: 600; color: var(--text-dark); font-size: 1rem; }
.variant-info { font-weight: bold; color: var(--primary); font-size: 0.95rem; }
.modal .main-btn { border-radius: 12px; padding: 15px; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(148, 168, 154, 0.2); }
.modal .main-btn:hover { box-shadow: 0 15px 30px rgba(148, 168, 154, 0.3); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: white; box-shadow: 0 -5px 20px rgba(0,0,0,0.1); padding: 20px; z-index: 1000; display: none; border-top: 3px solid var(--primary); }
.cookie-content { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.cookie-actions { display: flex; align-items: center; gap: 15px; }

/* Footer */
footer { text-align: center; padding: 40px; color: var(--text-light); font-size: 0.9rem; border-top: 1px solid #eee; margin-top: 50px; }
.footer-logo { max-width: 100px; height: auto; margin-bottom: 20px; display: inline-block; }
.legal-links a { color: var(--text-light); text-decoration: none; margin: 0 10px; }
.legal-links a:hover { color: var(--primary); text-decoration: underline; }