/* 
  Design für Desiree Solano OnePager
  Farben: #9b6d96, #c895a5, #a57498, #bb88a1
*/

@font-face {
    font-family: 'Source Sans 3';
    src: url('assets/fonts/SourceSans3-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: normal;
}

@font-face {
    font-family: 'Source Sans 3';
    src: url('assets/fonts/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 900;
    font-style: italic;
}

@font-face {
    font-family: 'Wiesbaden Swing LT Regular';
    src: url('assets/fonts/Wiesbaden Swing LT Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary: #9b6d96;
    --primary-light: #c895a5;
    --secondary: #a57498;
    --secondary-light: #bb88a1;
    --text: #4a4a4a;
    --bg-white: #ffffff;
    --bg-soft: #fff9fb;
    /* Ganz zartes Rosa */

    --font-heading: 'Wiesbaden Swing LT Regular', cursive;
    --font-body: 'Source Sans 3', sans-serif;

    --shadow: 0 10px 30px rgba(155, 109, 150, 0.15);
    --radius: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg-soft);
    overflow-x: hidden;
}

/* --- Typografie --- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 400;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* --- Header & Nav --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary);
    /* Support white text on primary background */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Makes the logo white */
}

.header-name {
    font-family: var(--font-heading);
    color: white;
    font-size: 2rem;
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* --- Hero Section --- */
.hero {
    padding: 180px 20px 100px;
    background: linear-gradient(135deg, #f4ebf2 0%, #e6d0e0 100%);
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-profile-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 8px solid white;
    object-fit: cover;
}

/* --- Sections --- */
section {
    padding: 80px 20px;
    position: relative;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.bg-white {
    background: white;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    padding-top: 100px;
}

.bg-soft {
    background-color: #f7eff5;
}

.bg-accent {
    background-color: var(--primary);
    color: white;
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    padding-top: 100px;
    padding-bottom: 80px;
}

.bg-accent h2,
.bg-accent h3,
.bg-accent p {
    color: white;
}

/* Ensure price list inside accent section is readable */
.bg-accent .price-list {
    background: white;
    color: var(--text);
}

.bg-accent .price-name {
    color: var(--primary);
}

.bg-accent .price-value {
    color: var(--secondary);
}

.bg-accent .price-item {
    border-bottom: 1px solid #eee;
}

/* --- About Grid Layout --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.about-profile-img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border-top: 5px solid var(--primary-light);
}

.card:hover {
    transform: translateY(-5px);
}

/* --- Accordion (FAQ) --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary);
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

details[open] summary:after {
    content: '-';
}

.accordion-content p {
    margin-bottom: 10px;
}

.accordion-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.accordion-content li {
    margin-bottom: 5px;
}

/* --- Price List --- */
.price-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.price-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    align-items: center;
}

.price-item:last-child {
    border-bottom: none;
}

/* --- Contact Form --- */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

/* --- Footer --- */
footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 50px;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Parallax --- */
.parallax-section {
    background-image: url('assets/images/Solano-39_500px.jpg');
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -50px;
    position: relative;
    z-index: 0;
}

/* --- Organetik Image --- */
.organetik-img-float {
    width: 100%;
    max-width: 350px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 20px auto;
}

@media (min-width: 768px) {
    .organetik-img-float {
        float: right;
        margin: 0 0 20px 40px;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    header {
        position: relative;
    }

    .nav-container {
        flex-direction: column;
        padding: 15px;
    }

    .header-name {
        font-size: 1.5rem;
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-links {
        margin-top: 20px;
        gap: 10px;
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-image-container {
        order: 1;
        margin-bottom: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image-container {
        margin-bottom: 20px;
    }

    .parallax-section {
        background-attachment: scroll;
        height: 250px;
    }

    .wave-divider svg {
        height: 40px;
    }

    .wave-white {
        margin-top: -40px;
    }

    .about-grid,
    .features-grid,
    .hero-grid {
        gap: 20px;
    }

    .hero {
        padding-top: 120px;
    }
}

/* --- Wave Dividers --- */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

.wave-white {
    margin-top: -70px;
}

.wave-white-top {
    margin-top: -1px;
    transform: rotate(180deg);
}

.wave-white-top .shape-fill {
    fill: white;
}

/* Anpassung der Sektionsabstände bei Wellen */
#organetik {
    padding-top: 50px;
}

#leistungen {
    padding-top: 50px;
}

/* --- Read More Styling --- */
.read-more {
    margin-top: 15px;
    background: transparent;
    box-shadow: none;
    border: none;
}

.read-more summary {
    display: inline-block !important;
    padding: 10px 25px !important;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 30px !important;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: background 0.3s;
    list-style: none;
    text-align: center;
}

.read-more summary:after {
    display: none;
}

.read-more summary:hover {
    background: var(--secondary);
}

.read-more[open] summary {
    margin-bottom: 20px;
}

.read-more-content {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}