/* Homepagina specifieke stijlen (hero + CTA) */

.hero-section {
    position: relative;
    background: linear-gradient(to bottom right, #1d1d1f, rgba(45, 95, 63, 0.2), #424245);
    color: white;
    padding: 6rem 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero-blob-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #2D5F3F;
}

.hero-blob-2 {
    bottom: 0;
    left: 0;
    width: 18rem;
    height: 18rem;
    background-color: #3A6B4F;
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.text-accent {
    color: #3A6B4F;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: black;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.03) translateX(-5px);
}

.hero-image img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: white;
    color: #171717;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #2D5F3F, #3A6B4F);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: #525252;
}

/* CTA sectie met golf */

.cta-section {
    position: relative;
    padding: 8rem 0 6rem 0;
    background: #3A6B4F;
    color: white;
    overflow: hidden;
    text-align: center;
}

.cta-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: #ffffff;
    transform: rotate(180deg);
}

.cta-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.cta-wave .shape-fill {
    fill: #396a4e;
}

.cta-patterns {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.cta-pattern {
    position: absolute;
    border: 4px solid white;
}

.cta-circle-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.cta-circle-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
}

.cta-square {
    top: 50%;
    left: 33.33%;
    width: 6rem;
    height: 6rem;
    border-radius: 0.5rem;
    transform: rotate(45deg);
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-title {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

