/* 
 * mystovellan.shop - Sportprogramma's
 * Hoofdstijlblad
 */

/* ==== ALGEMENE STIJLEN ==== */
:root {
    /* Hoofdkleuren */
    --primary-orange: #FF6B35;
    --primary-blue: #2B3F6B;
    --accent-mint: #41B3A3;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    
    /* Lettertypes */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Inter', sans-serif;
    
    /* Breedtes */
    --container-width: 1200px;
    --container-padding: 2rem;
    
    /* Overgangseffecten */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
    text-align: center;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 1rem auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    padding: 5rem 0;
    position: relative;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--heading-font);
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #E55A24;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* ==== HEADER & NAVIGATIE ==== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

#header.scrolled {
    padding: 0.5rem 0;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    max-width: 180px;
}

.logo {
    width: 100%;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
}

.btn-contact:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-blue);
    border-radius: 10px;
    transition: var(--transition);
}

/* ==== WELKOM SECTIE ==== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    padding-top: 5rem;
    text-align: center;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-orange));
    z-index: -1;
    overflow: hidden;
}

.animated-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.4) 0%, rgba(43, 63, 107, 0.4) 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.subheading {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

/* ==== OVER ONS SECTIE ==== */
.about {
    background-color: var(--white);
    position: relative;
}

.timeline {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background-color: var(--accent-mint);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin-right: 2rem;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.2);
}

.timeline-content {
    flex: 1;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
    overflow: hidden;
    border-radius: 10px;
}

.rounded-image {
    border-radius: 10px;
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.05);
}

/* ==== PROGRAMMA'S SECTIE ==== */
.programs {
    background-color: var(--light-gray);
    position: relative;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 1.5rem;
    background-color: rgba(255, 107, 53, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card:nth-child(2) .card-icon {
    background-color: rgba(65, 179, 163, 0.1);
}

.program-card:nth-child(3) .card-icon {
    background-color: rgba(43, 63, 107, 0.1);
}

.program-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.program-card:nth-child(2) h3 {
    color: var(--accent-mint);
}

.program-card:nth-child(3) h3 {
    color: var(--primary-blue);
}

.card-image {
    margin: 1.5rem 0;
    overflow: hidden;
    border-radius: 10px;
    max-height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.program-card:hover .card-image img {
    transform: scale(1.1);
}

.btn-card {
    margin-top: auto;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
}

.program-card:nth-child(2) .btn-card {
    background-color: var(--accent-mint);
}

.program-card:nth-child(3) .btn-card {
    background-color: var(--primary-blue);
}

.btn-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

/* ==== VOORDELEN SECTIE ==== */
.benefits {
    background-color: var(--white);
    position: relative;
}

.flower-benefits {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 3rem auto;
    max-width: 900px;
    height: 700px;
}

.center-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.center-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.petal {
    position: absolute;
    width: 300px;
    transition: var(--transition);
    z-index: 2;
}

.petal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.petal:hover .petal-content {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.petal-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.petal-2 {
    top: 30%;
    right: 0;
    transform: translateX(20%);
}

.petal-3 {
    bottom: 10%;
    right: 15%;
}

.petal-4 {
    bottom: 10%;
    left: 15%;
}

.petal-5 {
    top: 30%;
    left: 0;
    transform: translateX(-20%);
}

.petal h3 {
    margin: 1rem 0;
    font-size: 1.2rem;
}

.petal p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==== HOE WERKT HET SECTIE ==== */
.how-it-works {
    background-color: var(--light-gray);
    position: relative;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 3rem auto 0;
}

.step {
    display: flex;
    gap: 2rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    background-color: var(--primary-orange);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.step:nth-child(2) .step-number {
    background-color: var(--accent-mint);
    box-shadow: 0 5px 15px rgba(65, 179, 163, 0.3);
}

.step:nth-child(3) .step-number {
    background-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(43, 63, 107, 0.3);
}

.step-content {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-image {
    width: 100%;
    border-radius: 10px;
    margin-top: 1.5rem;
    height: 200px;
    object-fit: cover;
}

/* ==== TEAM SECTIE ==== */
.team-section {
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-orange);
    font-weight: 600;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.member-bio {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* ==== ABONNEMENTEN SECTIE ==== */
.pricing {
    background-color: var(--light-gray);
    position: relative;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.toggle-option {
    padding: 0 1rem;
    cursor: pointer;
}

.toggle-option.active {
    color: var(--primary-orange);
    font-weight: 600;
}

.discount {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 0.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-orange);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-orange);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-orange);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
}

.card-header {
    padding: 2rem;
    text-align: center;
    background-color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-container {
    margin: 1.5rem 0;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: none;
}

.price.monthly {
    display: block;
}

.per {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.features {
    margin-bottom: 2rem;
    flex: 1;
}

.features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-mint);
    font-weight: 700;
}

.features li.not-included {
    color: #999;
}

.features li.not-included::before {
    content: '✕';
    color: #999;
}

.btn-pricing {
    display: block;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.btn-pricing:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.pricing-card.featured .btn-pricing {
    background-color: var(--primary-orange);
}

.pricing-card.featured .btn-pricing:hover {
    background-color: var(--primary-blue);
}

/* ==== INSCHRIJVEN SECTIE ==== */
.registration {
    background-color: var(--white);
    position: relative;
}

.registration-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.registration-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    margin-top: 2rem;
}

.quote-mark {
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--primary-orange);
    opacity: 0.2;
    font-family: var(--heading-font);
}

.testimonial-author {
    font-style: italic;
    text-align: right;
    color: var(--primary-blue);
    font-weight: 600;
}

.registration-form {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input,
textarea,
select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.toggle-switch-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toggle-label {
    font-weight: 500;
}

.location-switch {
    width: 50px;
    height: 24px;
}

.location-switch .slider:before {
    height: 16px;
    width: 16px;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 5px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-orange);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #E55A24;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.2);
}

/* ==== CONTACT & KAART SECTIE ==== */
.contact {
    background-color: var(--light-gray);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.whatsapp-link {
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
}

.whatsapp-link:hover {
    color: var(--primary-orange);
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.contact-hours h4 {
    margin-bottom: 0.5rem;
}

.contact-hours p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-contact-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-contact-submit:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 63, 107, 0.2);
}

.map-container {
    margin-top: 3rem;
}

.google-map {
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ==== FOOTER ==== */
#footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    width: 160px;
    filter: brightness(1.2);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-nav-column h4 {
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
}

.footer-nav-column ul li {
    margin-bottom: 0.8rem;
}

.footer-nav-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-nav-column ul li a:hover {
    color: var(--primary-orange);
}

.newsletter h4 {
    color: var(--white);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-newsletter:hover {
    background-color: #E55A24;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ==== RESPONSIVE STIJLEN ==== */
@media (max-width: 1200px) {
    .flower-benefits {
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }

    .center-circle {
        position: relative;
        margin-bottom: 2rem;
    }

    .petal {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 1rem;
        transform: none !important;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .registration-container, 
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        transition: var(--transition);
        text-align: center;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pricing-cards {
        gap: 3rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}