/* 
* Mystolonixae - Myofasciaal Pilates
* Hoofdstijlblad
*/

/* Algemene stijlen en reset */
:root {
    --primary-color: #6D4C41;
    --secondary-color: #F3ECE7;
    --accent-color: #D7CCC8;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-background: #3E2723;
    --light-background: #EFEBE9;
    --transition-slow: all 0.5s ease;
    --transition-medium: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--dark-background);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
}

/* Header en navigatie */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
}

#header.scrolled {
    padding: 10px 0;
    background-color: #ffffff;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-link {
    margin: 0 15px;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* Hero Sectie */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.7s;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-medium);
    opacity: 0;
    animation: fadeInUp 1s forwards 1.1s;
}

.cta-button:hover {
    background-color: var(--dark-background);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: var(--light-text);
}

/* Sectie Introducties */
.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
}

.divider.light {
    background-color: var(--light-text);
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.section-intro.light {
    color: var(--light-text);
}

/* Over Ons Sectie */
.about-section {
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #fff;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.key-points {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.key-point {
    flex: 1;
    min-width: 200px;
    background-color: #fff;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
}

.key-point:hover {
    transform: translateY(-5px);
}

.key-point h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Voordelen Sectie */
.benefits-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    position: relative;
}

.benefits-section::before,
.benefits-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100px;
    background-color: var(--light-background);
}

.benefits-section::before {
    top: -50px;
    clip-path: ellipse(55% 50% at 50% 100%);
}

.benefits-section::after {
    bottom: -50px;
    clip-path: ellipse(55% 50% at 50% 0%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 70px;
    height: 70px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Diensten Sectie */
.services-section {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 10px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: -20px;
    font-weight: bold;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition-medium);
}

.service-button:hover {
    background-color: var(--dark-background);
    color: var(--light-text);
}

/* Even/odd styling voor diensten */
.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Ervaringen Sectie */
.testimonials-section {
    background-color: var(--dark-background);
    color: var(--light-text);
    position: relative;
}

.testimonials-slider {
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    height: 400px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide.active {
    opacity: 1;
    z-index: 1;
}

.testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    max-width: 800px;
}

.quote-icon {
    font-size: 6rem;
    position: absolute;
    top: -30px;
    left: 20px;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Playfair Display', serif;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--light-text);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.prev-testimonial,
.next-testimonial {
    background-color: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-medium);
    margin: 0 15px;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--light-text);
    color: var(--dark-background);
}

.testimonial-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.dot.active {
    background-color: var(--light-text);
}

/* Contact Sectie */
.contact-section {
    background-color: #fff;
    position: relative;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-medium);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-icon img {
    width: 40px;
    height: 40px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.map-container {
    grid-column: 1 / -1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-top: 20px;
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    background-color: var(--light-background);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(109, 76, 65, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-medium);
}

.submit-button:hover {
    background-color: var(--dark-background);
}

/* Footer */
.site-footer {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-legal h3,
.footer-newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    padding: 0 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-right: 20px;
}

#acceptCookies {
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-fast);
}

#acceptCookies:hover {
    background-color: var(--dark-background);
}

/* Media Queries voor Responsief Ontwerp */
@media screen and (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        background-color: var(--light-background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-medium);
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        margin: 15px 0;
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-content {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .key-point {
        padding: 20px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-slide {
        height: auto;
    }
    
    .testimonials-slider {
        height: 500px;
    }
}