/*
Theme Name: jbeautys.de
Theme URI: https://jbeautys.de
Author: jbeautys.de
Author URI: https://jbeautys.de
Description: Ein elegantes Rose Gold Beauty-Theme für jbeautys.de
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jbeautys
Tags: beauty, elegant, rose-gold, responsive
*/

/* =============================================
   VARIABLEN & RESET
   ============================================= */
:root {
    --cream: #FFF5F7;
    --blush: #FFE8ED;
    --white: #FFFFFF;
    --rose-gold: #B76E79;
    --rose-gold-dark: #9D5C66;
    --rose-gold-light: #E8B4BE;
    --deep-rose: #8B4F5C;
    --charcoal: #2C2C2C;
    --soft-black: #1A1A1A;
    --accent-gold: #D4AF37;
}

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

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    width: 100%;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   LAYOUT
   ============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 245, 247, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--rose-gold-light);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--rose-gold);
    text-transform: lowercase;
    text-decoration: none;
    flex-shrink: 0;
}

.custom-logo-wrapper { display: flex; align-items: center; }
.custom-logo-link    { display: block; max-width: 180px; line-height: 0; }
.custom-logo         { height: auto; max-height: 55px; width: auto; max-width: 180px; }

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--rose-gold);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { width: 100%; }

/* Desktop Dropdown */
.nav-dropdown { position: relative; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 0.75rem; /* unsichtbarer Puffer – schließt die Lücke */
    background: transparent;
    z-index: 1001;
    min-width: 210px;
    list-style: none;
}

/* Der eigentliche sichtbare Kasten */
.dropdown-menu::after {
    display: none;
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li:first-child { border-radius: 6px 6px 0 0; }
.dropdown-menu li:last-child  { border-radius: 0 0 6px 6px; }

/* Wrapper-Stil auf die ul selbst via einem inneren div-Trick nicht möglich,
   daher stylen wir den Hintergrund direkt auf die li-Elemente */
.dropdown-menu li {
    background: rgba(255, 245, 247, 0.99);
    border-left: 1px solid var(--rose-gold-light);
    border-right: 1px solid var(--rose-gold-light);
}

.dropdown-menu li:first-child {
    border-top: 1px solid var(--rose-gold-light);
    border-radius: 6px 6px 0 0;
}

.dropdown-menu li:last-child {
    border-bottom: 1px solid var(--rose-gold-light);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 24px rgba(183,110,121,0.12);
}

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.03em;
    text-transform: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover { background: var(--blush); color: var(--rose-gold); }
.dropdown-menu li a::after { display: none; }

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--rose-gold);
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    flex-shrink: 0;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    margin-top: 80px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: min(600px, 90vw);
    height: min(600px, 90vw);
    background: radial-gradient(circle, rgba(183,110,121,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(-20px, -20px) scale(1.04); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-subtitle {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    color: var(--rose-gold-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
    word-break: break-word;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--rose-gold);
    letter-spacing: 1px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold-light), var(--rose-gold), var(--rose-gold-light));
    margin: 1.5rem auto;
    animation: expandWidth 1s ease-out 0.9s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to   { width: 60px; }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.9rem 2.2rem;
    min-height: 50px;
    background-color: transparent;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 1.2s both;
    white-space: nowrap;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background-color: var(--rose-gold);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before { left: 0; }
.cta-button:hover { color: white; }

/* =============================================
   SECTIONS – GEMEINSAM
   ============================================= */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--rose-gold);
}

.section-subtitle {
    text-align: center;
    color: var(--rose-gold-dark);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* =============================================
   TRUST
   ============================================= */
.trust {
    padding: 4rem 0;
    background: var(--cream);
    text-align: center;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.trust-item {
    background: var(--white);
    border: 1px solid var(--rose-gold-light);
    color: var(--charcoal);
    padding: 0.7rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
    padding: 5rem 0;
    background-color: var(--cream);
}

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

.service-card {
    background: linear-gradient(145deg, var(--white) 0%, var(--blush) 100%);
    padding: 2.5rem 2rem;
    border: 1px solid var(--rose-gold-light);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rose-gold), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(183,110,121,0.18); }

.service-icon { font-size: 2rem; margin-bottom: 1.25rem; color: var(--rose-gold); }

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--deep-rose);
}

.service-card p { color: var(--charcoal); line-height: 1.8; margin-bottom: 1rem; }

.service-list { list-style: none; margin-top: 1rem; }

.service-list li {
    padding: 0.35rem 0 0.35rem 1.2rem;
    color: var(--rose-gold-dark);
    font-size: 0.88rem;
    position: relative;
}

.service-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--rose-gold);
    font-size: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Service Card als Link */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--rose-gold);
    font-size: 0.82rem;
    border-bottom: 1px solid var(--rose-gold-light);
}

/* Kombipakete Teaser */
.kombipakete-teaser {
    margin-top: 3.5rem;
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--blush);
    border-radius: 12px;
}

.kombipakete-teaser h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--rose-gold);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.kombipakete-teaser p { font-size: 0.95rem; opacity: 0.8; }

.paket-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.paket-teaser-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    border: 1px solid var(--rose-gold-light);
}

.paket-teaser-card .paket-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }

.paket-teaser-card strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--rose-gold);
    margin-bottom: 0.3rem;
}

.paket-teaser-card p { font-size: 0.82rem; opacity: 0.72; margin: 0; }

/* =============================================
   ÜBER MICH
   ============================================= */
.about {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: min(500px, 80vw);
    height: min(500px, 80vw);
    background: radial-gradient(circle, rgba(183,110,121,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews {
    padding: 5rem 0;
    background: var(--white);
}

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

.review-card {
    background: var(--cream);
    border-left: 3px solid var(--rose-gold);
    padding: 1.4rem;
    border-radius: 0 8px 8px 0;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0.1em;
}

.review-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--charcoal);
    font-style: italic;
    margin: 0;
}

/* =============================================
   KONTAKT
   ============================================= */
.contact {
    padding: 5rem 0;
    background-color: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    color: var(--rose-gold);
}

.contact-details { margin-top: 2rem; }

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item-icon { color: var(--rose-gold); font-size: 1.1rem; margin-top: 0.15rem; }
.contact-item-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--rose-gold-dark); margin-bottom: 0.2rem; }
.contact-item-value { color: var(--charcoal); font-size: 1rem; }

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-float::after {
    content: '';
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
}

.contact-form {
    background: linear-gradient(145deg, var(--white) 0%, var(--blush) 100%);
    padding: 2.5rem;
    border: 1px solid var(--rose-gold-light);
}

.form-group { margin-bottom: 1.5rem; }

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--rose-gold);
    cursor: pointer;
}
.form-group-checkbox label {
    font-size: 0.83rem;
    line-height: 1.5;
    color: var(--charcoal);
    opacity: 0.8;
    cursor: pointer;
}
.form-group-checkbox label a {
    color: var(--rose-gold);
    text-decoration: underline;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--rose-gold-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--rose-gold-light);
    background-color: var(--white);
    font-family: 'Lato', sans-serif;
    font-size: 1rem; /* 16px – verhindert Zoom auf iOS */
    transition: border-color 0.3s, box-shadow 0.3s;
    color: var(--charcoal);
    border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: 0 0 0 3px rgba(183,110,121,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.submit-button {
    width: 100%;
    padding: 1rem;
    min-height: 50px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-dark) 100%);
    color: var(--white);
    border: none;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    border-radius: 2px;
}

.submit-button:hover {
    background: linear-gradient(135deg, var(--rose-gold-dark) 0%, var(--deep-rose) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(183,110,121,0.35);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: linear-gradient(135deg, var(--deep-rose) 0%, var(--rose-gold-dark) 100%);
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
}

footer p { font-size: 0.85rem; letter-spacing: 1px; }

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}
footer a:hover { color: #fff; }

/* =============================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================= */
.legal-content { padding: 3rem 0 5rem; }

.legal-box {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 14px;
    padding: 3rem;
    box-shadow: 0 4px 24px rgba(183,110,121,0.08);
}

.legal-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--rose-gold);
    font-weight: 500;
    margin: 2rem 0 0.6rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--blush);
}

.legal-box h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 600;
    margin: 1.25rem 0 0.4rem;
}

.legal-box p {
    font-size: 0.93rem;
    line-height: 1.8;
    color: var(--charcoal);
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.legal-box a {
    color: var(--rose-gold);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-box { padding: 1.75rem 1.25rem; }
}

/* =============================================
   SCROLL ANIMATIONEN
   ============================================= */
.fade-in-section {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   PAGE HERO (Unterseiten)
   ============================================= */
.page-hero {
    padding: 8rem 2rem 3rem;
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
    text-align: center;
    border-bottom: 1px solid var(--rose-gold-light);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--rose-gold);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.page-hero-sub {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.7;
}

.breadcrumb { font-size: 0.82rem; color: var(--rose-gold); opacity: 0.7; margin-bottom: 0.4rem; }
.breadcrumb a { color: var(--rose-gold); text-decoration: none; }

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.tab-btn {
    padding: 0.55rem 1.35rem;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    text-decoration: none;
    border-radius: 2rem;
    font-size: 0.85rem;
    transition: all 0.25s;
    white-space: nowrap;
}

.tab-btn:hover, .tab-btn.active { background: var(--rose-gold); color: var(--white); }

/* =============================================
   BEHANDLUNG – INTRO GRID
   ============================================= */
.treatment-intro { padding: 4rem 0; background: var(--white); }

.treatment-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

.treatment-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.3;
}

.treatment-text p { margin-bottom: 1rem; line-height: 1.8; }

.treatment-vorteile h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--rose-gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.vorteile-list { list-style: none; padding: 0; }
.vorteile-list li { padding: 0.45rem 0; border-bottom: 1px solid var(--blush); font-size: 0.93rem; }
.vorteile-list li:last-child { border-bottom: none; }

/* =============================================
   BEHANDLUNG – ABLAUF
   ============================================= */
.treatment-ablauf { padding: 4rem 0; background: var(--cream); }

.ablauf-steps {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.ablauf-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--white);
    padding: 1.1rem 1.4rem;
    border-radius: 8px;
    border-left: 3px solid var(--rose-gold);
}

.step-number {
    background: var(--rose-gold);
    color: var(--white);
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
    font-family: 'Cormorant Garamond', serif;
}

.step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--rose-gold);
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.step-content p { font-size: 0.88rem; margin: 0; opacity: 0.85; }

.ablauf-dauer { text-align: center; margin-top: 1.25rem; font-style: italic; color: var(--rose-gold); font-size: 0.9rem; }

/* =============================================
   BEHANDLUNG – PFLEGE
   ============================================= */
.treatment-pflege { padding: 4rem 0; background: var(--blush); }

.pflege-box { margin-top: 2rem; background: var(--blush); padding: 2rem 0; }
.pflege-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--rose-gold); margin-bottom: 1rem; font-weight: 400; }

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

.pflege-item {
    background: var(--white);
    padding: 0.9rem 1.1rem;
    border-radius: 8px;
    font-size: 0.88rem;
    border: 1px solid var(--rose-gold-light);
}

/* =============================================
   BEHANDLUNG – FÜR WEN
   ============================================= */
.treatment-fuer-wen { padding: 4rem 0; background: var(--white); text-align: center; }

.fuer-wen-list {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
    gap: 0.4rem;
    text-align: left;
}

.fuer-wen-list li { font-size: 0.95rem; padding: 0.25rem 0; }

/* =============================================
   BEHANDLUNG – KOMBINATION
   ============================================= */
.treatment-kombi { padding: 3rem 0; background: var(--cream); }

.kombi-box {
    background: var(--white);
    border: 1px solid var(--rose-gold-light);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.kombi-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--rose-gold); margin-bottom: 0.75rem; font-weight: 400; }

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.75rem 1.75rem;
    min-height: 46px;
    border: 1px solid var(--rose-gold);
    color: var(--rose-gold);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s;
}

.cta-button-outline:hover { background: var(--rose-gold); color: var(--white); }

/* =============================================
   FAQ ACCORDION
   ============================================= */
.treatment-faq { padding: 4rem 0; background: var(--cream); }

.faq-list {
    max-width: 760px;
    margin: 1.75rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--rose-gold-light);
}

.faq-question {
    padding: 1.1rem 3rem 1.1rem 1.4rem;
    cursor: pointer;
    color: var(--rose-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    user-select: none;
    transition: background 0.2s;
    line-height: 1.4;
}

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

.faq-question::after {
    content: '＋';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--rose-gold-light);
    font-size: 1.1rem;
    line-height: 1;
}

.faq-item.open .faq-question::after { content: '－'; color: var(--rose-gold); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1.4rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.faq-item.open .faq-answer { padding: 0 1.4rem 1.1rem; }

/* =============================================
   CTA SEKTION
   ============================================= */
.treatment-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
    text-align: center;
}

.treatment-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    color: var(--rose-gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* =============================================
   TREATMENT BLOCK (Hautbehandlungen)
   ============================================= */
.treatment-block { padding: 4rem 0; }
.treatment-block:nth-child(even) { background: var(--cream); }
.treatment-block:nth-child(odd)  { background: var(--white); }

/* Section / card images */
.treatment-section-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 1.75rem 0;
    display: block;
}

.paket-card-img {
    width: calc(100% + 2.8rem);
    margin: -1.4rem -1.4rem 1.2rem -1.4rem;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
    max-width: none;
}

.vip-section-img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin: 1.5rem 0 2rem;
    display: block;
}

.treatment-block-header { text-align: center; margin-bottom: 2.5rem; }

.treatment-block-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--rose-gold);
    font-weight: 400;
}

.treatment-block-sub { max-width: 620px; margin: 0.6rem auto 0; opacity: 0.8; font-size: 0.95rem; }

.treatment-divider { border: none; border-top: 1px solid var(--rose-gold-light); margin: 0; }

.sub-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--rose-gold);
    font-weight: 400;
    margin: 2.5rem 0 1rem;
}

/* =============================================
   KOMBIPAKETE SEITE
   ============================================= */
.paket-block { padding: 4.5rem 0; }
.paket-block:nth-child(even) { background: var(--cream); }
.paket-block:nth-child(odd)  { background: var(--white); }
.paket-vip { background: linear-gradient(135deg, #fff8f9 0%, var(--blush) 100%) !important; }

.paket-header { text-align: center; margin-bottom: 2rem; }
.paket-icon-large { font-size: 2.8rem; margin-bottom: 0.4rem; }

.paket-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--rose-gold);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.paket-inhalt-label { color: var(--accent-gold); font-size: 0.95rem; margin-top: 0.4rem; font-style: italic; }

.paket-inhalt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.paket-inhalt-card {
    background: var(--white);
    border: 1px solid var(--rose-gold-light);
    border-radius: 10px;
    padding: 1.4rem;
}

.paket-inhalt-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--rose-gold); font-weight: 500; margin-bottom: 0.4rem; }

.link-more {
    display: inline-block;
    margin-top: 0.6rem;
    color: var(--rose-gold);
    text-decoration: none;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--rose-gold-light);
    transition: border-color 0.2s;
}

.link-more:hover { border-color: var(--rose-gold); }

.paket-vip-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 2rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.vip-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: var(--white);
    padding: 1.1rem 1.3rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.vip-icon { color: var(--accent-gold); font-size: 1.1rem; flex-shrink: 0; }
.vip-item strong { font-family: 'Cormorant Garamond', serif; font-size: 1rem; display: block; color: var(--charcoal); }
.vip-item p { font-size: 0.82rem; margin: 0.15rem 0 0; opacity: 0.7; }

/* =============================================
   HERO DIVIDER (Über mich)
   ============================================= */
.hero-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold-light), var(--rose-gold), var(--rose-gold-light));
    margin: 1.5rem auto;
}

/* =============================================
   TABLET – max 1024px
   ============================================= */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .reviews-grid  { grid-template-columns: 1fr 1fr; }
    .nav-links { gap: 1.5rem; }
}

/* =============================================
   MOBIL – max 768px
   ============================================= */
@media (max-width: 768px) {

    /* Layout */
    .container { padding: 0 1.1rem; }

    /* Navigation */
    nav { padding: 0.9rem 1.1rem; }

    .mobile-menu-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(255, 245, 247, 0.99);
        flex-direction: column;
        padding: 0.75rem 0 1rem;
        gap: 0;
        border-top: 1px solid var(--rose-gold-light);
        box-shadow: 0 6px 20px rgba(183,110,121,0.1);
        z-index: 999;
        list-style: none;
    }

    .nav-links.active { display: flex; }

    .nav-links > li { border-bottom: 1px solid var(--blush); }
    .nav-links > li:last-child { border-bottom: none; }
    .nav-links > li > a { display: block; padding: 0.85rem 1.25rem; font-size: 0.9rem; }
    .nav-links > li > a::after { display: none; }

    /* Dropdown Mobil */
    .nav-dropdown:hover .dropdown-menu { display: none; }

    .dropdown-menu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--blush);
        border-radius: 0;
        min-width: unset;
        padding: 0;
    }

    .nav-dropdown.open .dropdown-menu { display: block; }

    .dropdown-menu li { border: none; }
    .dropdown-menu li a { padding: 0.65rem 1.25rem 0.65rem 2rem; font-size: 0.85rem; }

    /* Hero */
    .hero { margin-top: 60px; min-height: 75vh; padding: 1rem; }
    .hero-content { padding: 1.5rem 1rem; }
    .hero h1 { font-size: clamp(1.8rem, 9vw, 2.8rem); margin-bottom: 1rem; }
    .hero-subtitle { font-size: 0.7rem; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
    .hero-divider { margin: 1rem auto; }
    .cta-button { padding: 0.85rem 1.75rem; font-size: 0.78rem; letter-spacing: 1.5px; }

    /* Trust */
    .trust { padding: 2.5rem 0; }
    .trust-grid { flex-direction: column; align-items: stretch; gap: 0.5rem; }
    .trust-item { text-align: left; font-size: 0.88rem; padding: 0.75rem 1rem; }

    /* Services */
    .services { padding: 3rem 0; }
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.5rem 1.25rem; }
    .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
    .section-subtitle { font-size: 0.78rem; letter-spacing: 1px; margin-bottom: 1.75rem; }

    /* Kombipakete Teaser */
    .kombipakete-teaser { padding: 1.75rem 1rem; margin-top: 2rem; }
    .paket-teaser-grid { grid-template-columns: 1fr; gap: 0.75rem; }

    /* Über mich */
    .about { padding: 3rem 0; }
    .about-content p { font-size: 0.95rem; line-height: 1.8; }

    /* Reviews */
    .reviews { padding: 3rem 0; }
    .reviews-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .review-card { padding: 1.1rem 1rem; }

    /* Kontakt */
    .contact { padding: 3rem 0; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form { padding: 1.4rem 1.1rem; }
    .contact-info h3 { font-size: 1.5rem; }
    .form-group input,
    .form-group textarea { font-size: 16px; /* iOS Zoom verhindern */ }

    /* Page Hero */
    .page-hero { padding: 5.5rem 1.1rem 2rem; }
    .page-hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
    .page-hero-sub { font-size: 0.92rem; }
    .tab-nav { gap: 0.4rem; margin-top: 1.25rem; }
    .tab-btn { font-size: 0.78rem; padding: 0.45rem 0.9rem; }

    /* Behandlung Intro */
    .treatment-intro { padding: 2.5rem 0; }
    .treatment-intro-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .treatment-text h2 { font-size: 1.4rem; }

    /* Ablauf */
    .treatment-ablauf { padding: 2.5rem 0; }
    .ablauf-step { padding: 0.9rem 1rem; gap: 0.9rem; }
    .step-content h4 { font-size: 0.95rem; }
    .step-content p { font-size: 0.83rem; }

    /* Pflege */
    .treatment-pflege { padding: 2.5rem 0; }
    .pflege-grid { grid-template-columns: 1fr; gap: 0.6rem; }
    .pflege-item { font-size: 0.85rem; padding: 0.8rem 1rem; }
    .pflege-box { padding: 1.5rem 0; }

    /* Für wen */
    .treatment-fuer-wen { padding: 2.5rem 0; }
    .fuer-wen-list { width: 100%; padding: 0 0.25rem; }

    /* Kombination */
    .treatment-kombi { padding: 2rem 0; }
    .kombi-box { padding: 1.5rem 1rem; }

    /* FAQ */
    .treatment-faq { padding: 2.5rem 0; }
    .faq-question { font-size: 0.95rem; padding: 1rem 2.8rem 1rem 1.1rem; }
    .faq-question::after { right: 1rem; font-size: 1rem; }
    .faq-answer { font-size: 0.85rem; padding: 0 1.1rem; }
    .faq-item.open .faq-answer { padding: 0 1.1rem 1rem; }

    /* CTA */
    .treatment-cta { padding: 3rem 1.1rem; }
    .treatment-cta h2 { font-size: 1.6rem; }
    .cta-button-outline { padding: 0.75rem 1.5rem; font-size: 0.78rem; }

    /* Hautbehandlungen */
    .treatment-block { padding: 2.5rem 0; }
    .treatment-block-header h2 { font-size: 1.8rem; }
    .treatment-block-sub { font-size: 0.88rem; }
    .sub-section-title { font-size: 1.3rem; margin: 2rem 0 0.75rem; }

    /* Kombipakete */
    .paket-block { padding: 2.5rem 0; }
    .paket-header h2 { font-size: 1.7rem; }
    .paket-inhalt-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .paket-vip-list { grid-template-columns: 1fr; gap: 0.65rem; }
    .vip-item { padding: 0.9rem 1rem; }
    .paket-inhalt-card { padding: 1.1rem; }

    /* Footer */
    footer { padding: 2rem 1.1rem; }
}

/* =============================================
   KLEINE PHONES – max 390px (iPhone SE, etc.)
   ============================================= */
@media (max-width: 390px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.65rem; letter-spacing: 1px; }
    .cta-button { padding: 0.8rem 1.4rem; font-size: 0.75rem; }
    .section-title { font-size: 1.6rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .trust-item { font-size: 0.83rem; }
}
