/* --- 1. FARBEN & VARIABLEN --- */
:root {
    --primary-color: #9b2c96;   
    --secondary-color: #f3c6e2; 
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
}

/* --- 2. GRUNDEINSTELLUNGEN --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.text-center { text-align: center; }

/* --- 3. KOPFZEILE & NAVIGATION --- */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-img {
    height: 80px; 
    width: auto;  
    display: block;
    border-radius: 50%; 
}

nav ul {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    font-weight: 500;
    transition: color 0.3s;
}

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

/* --- TOP-BAR (Hinweis ganz oben) --- */
.top-bar {
    background-color: var(--secondary-color); /* Zartes GynBeauty Rosa */
    color: var(--text-dark);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(155, 44, 150, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.top-bar-link {
    background-color: #25D366;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.85rem;
    transition: background-color 0.2s;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

.top-bar-link:hover {
    background-color: #1ebc57;
}

/* --- UPDATE FÜR DEN HERO-BUTTON --- */
.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 10px;
}

.btn-whatsapp-hero:hover {
    transform: scale(1.02);
    background-color: #1ebc57;
    color: white;
}

.hero-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

/* --- 4. BUTTONS --- */
.btn-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #7a2276;
}

/* --- 5. STARTBILD (HERO) --- */
.hero {
    background: linear-gradient(rgba(155, 44, 150, 0.2), rgba(155, 44, 150, 0.2)), url('img/hero-treatment.jpg') no-repeat center center/cover;
    background-color: var(--secondary-color); 
    height: 80vh; 
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
}

/* --- 6. LAYOUT & SEKTIONEN --- */
.section-padding { padding: 60px 0; }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--bg-light); }

.two-column-grid, .tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.profile-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 10px 10px 0px var(--secondary-color); 
}

.machine-img {
    width: 100%;
    max-width: 350px;
    display: block;
    margin: 0 auto;
}

/* --- 7. BEHANDLUNGSZONEN & PAKETE --- */
.section-intro {
    margin-bottom: 40px;
    color: var(--text-light);
}

.price-grid-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.price-category {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    border: 1px solid #eee;
}

.price-category h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.price-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.price-list li:last-child { border-bottom: none; }

.packages-full-width {
    display: flex;
    justify-content: center;
}

.package-card-large {
    width: 100%;
    max-width: 900px; 
    border: 2px solid var(--primary-color) !important;
    background: linear-gradient(135deg, var(--white) 0%, #fdfbfd 100%);
    padding: 40px !important;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header .badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    list-style: none;
    padding: 0;
}

.package-list-grid li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd;
    font-weight: 500;
}

.package-list-grid li::before {
    content: "✦";
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- 8. BUCHUNG & KONTAKT (WHATSAPP FOCUS) --- */
.booking-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.whatsapp-hero-card {
    background: linear-gradient(135deg, var(--white) 0%, #fdfbfd 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(155, 44, 150, 0.1);
    border-top: 5px solid #25D366; 
}

.whatsapp-hero-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.whatsapp-hero-card p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    width: 100%;
}

.btn-whatsapp-large:hover {
    transform: scale(1.02);
    background-color: #1ebc57;
}

.contact-sidebar-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: none;
}

.small-text { font-size: 0.85rem; color: #666; font-style: italic; }

/* --- 9. RECHTLICHE SEITEN --- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.legal-content h2 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

/* --- 10. COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
}

.btn-cookie {
    background-color: var(--primary-color); 
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* --- 11. FOOTER --- */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0 10px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* --- 12. RESPONSIVE (Fürs Handy) --- */
@media (max-width: 992px) {
    /* DAS HIER IST NEU: Löst das Menü auf dem Handy vom oberen Rand */
    header { position: relative; }

    .two-column-grid, .tech-showcase, .booking-wrapper-new {
        grid-template-columns: 1fr; 
        text-align: center;
    }
    
    .price-grid-top { grid-template-columns: 1fr; }
    .package-list-grid { grid-template-columns: 1fr; }
    
    .two-column-grid img, .tech-showcase img { margin: 20px auto; }
    
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .cookie-banner { flex-direction: column; text-align: center; }
}