/* Base Styles */
:root {
    --lavender: #CDB4DB;
    --sage-green: #A8D5BA;
    --soft-ivory: #F7F4EF;
    --rose-quartz: #F2C6C2;
    --midnight-blue: #2E3A59;
    --light-lavender: #E9DFF2;
    --light-sage: #D6EDE0;
    --light-rose: #F8E6E4;
    --dark-sage: #7EB394;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--midnight-blue);
    background-color: var(--soft-ivory);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--lavender), var(--sage-green));
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--midnight-blue);
    transition: var(--transition);
}

ul {
    list-style-type: none;
}

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--lavender), var(--sage-green));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(205, 180, 219, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(205, 180, 219, 0.4);
}

.btn-nav {
    background-color: var(--light-lavender);
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--midnight-blue);
}

.btn-nav:hover {
    background-color: var(--lavender);
    color: white;
}

.btn-package {
    display: block;
    background-color: var(--midnight-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 10px;
    transition: var(--transition);
}

.btn-package:hover {
    background-color: var(--lavender);
    transform: translateY(-2px);
}

.btn-preview {
    display: block;
    text-align: center;
    color: var(--midnight-blue);
    text-decoration: underline;
    transition: var(--transition);
}

.btn-preview:hover {
    color: var(--lavender);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--sage-green), var(--lavender));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--lavender), var(--rose-quartz));
    transform: translateY(-2px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(247, 244, 239, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    gap: 1.5rem;
}

.menu li a {
    position: relative;
}

.menu li a:not(.btn-nav)::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--lavender);
    transition: var(--transition);
}

.menu li a:not(.btn-nav):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--midnight-blue);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Welcome Section Styles */
#welkom {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-lavender), var(--light-sage));
    margin-top: 70px;
}

.welcome-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.welcome-content h1 {
    margin-bottom: 1.5rem;
    color: var(--midnight-blue);
}

.subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--midnight-blue);
    opacity: 0.9;
}

.breathing-animation {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rose-quartz), var(--lavender));
    opacity: 0.4;
    animation: breathe 8s infinite ease-in-out;
    z-index: 1;
}

@keyframes breathe {
    0%, 100% {
        transform: translate(0, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(0, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Voor Wie Section Styles */
#voor-wie {
    background-color: white;
}

.target-groups {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.target-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    background-color: var(--light-lavender);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.target-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.target-card:nth-child(2) {
    background-color: var(--light-sage);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.target-card h3 {
    margin-bottom: 1.5rem;
}

.target-card ul {
    padding-left: 1rem;
}

.target-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.target-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage-green);
    font-weight: bold;
}

/* Voordelen Section Styles */
#voordelen {
    background: linear-gradient(to bottom, white, var(--soft-ivory));
    overflow: hidden;
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.benefit-cloud {
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    padding: 2rem;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.benefit-cloud::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-lavender);
    opacity: 0.5;
    z-index: 0;
}

.benefit-cloud:nth-child(2n)::before {
    background-color: var(--light-sage);
}

.benefit-cloud:nth-child(3n)::before {
    background-color: var(--light-rose);
}

.benefit-cloud:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-cloud h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.benefit-cloud p {
    font-size: 0.9rem;
    color: var(--midnight-blue);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Hoe Werkt Het Section Styles */
#hoe-werkt-het {
    background-color: white;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2rem;
    background-color: var(--soft-ivory);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--lavender);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--midnight-blue);
    opacity: 0.8;
}

.step img {
    border-radius: 10px;
    height: 150px;
    object-fit: cover;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-width: 100px;
}

/* Pakketten Section Styles */
#pakketten {
    background: linear-gradient(135deg, var(--light-lavender), var(--light-sage));
    position: relative;
    overflow: hidden;
}

.packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2.5rem;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(to right, var(--lavender), var(--sage-green));
}

.sleep-package::before {
    background: linear-gradient(to right, var(--lavender), var(--midnight-blue));
}

.stress-package::before {
    background: linear-gradient(to right, var(--sage-green), var(--dark-sage));
}

.combi-package::before {
    background: linear-gradient(to right, var(--rose-quartz), var(--lavender));
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.package-duration {
    font-style: italic;
    color: var(--midnight-blue);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.package-card ul {
    margin-bottom: 1.5rem;
}

.package-card ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage-green);
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--midnight-blue);
}

/* Reviews Section Styles */
#reviews {
    background-color: var(--soft-ivory);
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.review-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.review-content {
    position: relative;
    margin-bottom: 2rem;
}

.review-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: var(--lavender);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.reviewer p {
    font-size: 0.8rem;
    color: var(--midnight-blue);
    opacity: 0.7;
}

/* Uniek Section Styles */
#uniek {
    background-color: white;
}

.unique-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.unique-image {
    flex: 1;
    min-width: 300px;
}

.unique-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.unique-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.unique-text {
    flex: 2;
    min-width: 300px;
}

.unique-text h3 {
    color: var(--midnight-blue);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.unique-text h3:first-child {
    margin-top: 0;
}

.unique-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 25px;
    border-radius: 4px;
    background-color: var(--lavender);
}

.unique-text h3:nth-of-type(2)::before {
    background-color: var(--sage-green);
}

.unique-text h3:nth-of-type(3)::before {
    background-color: var(--rose-quartz);
}

/* Aanmelden Section Styles */
#aanmelden {
    background: linear-gradient(135deg, var(--light-sage), var(--light-lavender));
}

.signup-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.signup-text {
    flex: 1;
    min-width: 300px;
}

.signup-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: var(--light-sage);
    border-radius: 10px;
}

.security-icon {
    font-size: 1.5rem;
}

.security-note p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.signup-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input[type="email"]:focus {
    border-color: var(--lavender);
    outline: none;
    box-shadow: 0 0 0 3px rgba(205, 180, 219, 0.3);
}

.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-label input {
    margin-right: 0.5rem;
}

/* Contact Section Styles */
#contact {
    background-color: var(--soft-ivory);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    flex: 1;
    min-width: 150px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.faq {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq h3 {
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-weight: 500;
    margin-bottom: 0.8rem;
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--midnight-blue);
    opacity: 0.8;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 100%;
}

/* Footer Styles */
footer {
    background-color: var(--midnight-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-newsletter {
    flex: 1.5;
    min-width: 300px;
}

.footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 0.9rem;
}

.newsletter-form button {
    background-color: var(--lavender);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--sage-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .breathing-animation {
        width: 200px;
        height: 200px;
        right: 5%;
    }
    
    .signup-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: var(--soft-ivory);
        padding: 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    #welkom {
        height: auto;
        padding: 5rem 0;
    }
    
    .welcome-content {
        text-align: center;
        max-width: 100%;
    }
    
    .breathing-animation {
        display: none;
    }
    
    .unique-content, .contact-container {
        flex-direction: column;
    }
    
    .unique-image, .map-container {
        order: 1;
    }
    
    .unique-text, .contact-info {
        order: 2;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .target-card, .benefit-cloud, .step, .package-card, .review-card {
        min-width: 100%;
    }
    
    .signup-container {
        padding: 1.5rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}