/* Kompas pagina styling */
.kompas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    margin-top: -2rem;
}

/* Hero sectie met grote visual */
.hero-section {
    position: relative;
    height: 500px;
    margin: -2rem -2rem 4rem;
    background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

/* Floating kompas elementen */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 4rem;
    opacity: 0.2;
    animation: float 25s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: -5s; }
.floating-element:nth-child(2) { top: 60%; left: 80%; animation-delay: -10s; }
.floating-element:nth-child(3) { top: 80%; left: 30%; animation-delay: -15s; }

/* Feature cards met hover effecten */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(254, 111, 179, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--pink);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--pink);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Quote sectie aanpassen */
.quote-section {
    position: relative;
    padding: 6rem 2rem;
    margin: 6rem -2rem;
    background: transparent; /* Verwijder de gradient achtergrond */
    text-align: center;
    overflow: hidden;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-container::before,
.quote-container::after {
    content: '"';
    font-size: 8rem;
    color: var(--pink);
    opacity: 0.2;
    position: absolute;
    line-height: 1;
}

.quote-container::before {
    top: -3rem;
    left: -2rem;
}

.quote-container::after {
    bottom: -6rem;
    right: -2rem;
    transform: rotate(180deg);
}

.quote-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    color: var(--pink); /* Voeg kleur toe aan de tekst zelf */
}

/* Praktische info cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--pink);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(254, 111, 179, 0.2);
}

.info-card:hover::after {
    width: 80%;
}

.info-card h3 {
    font-size: 1.6rem;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Animaties */
@keyframes float {
    0% { 
        transform: translate(0, 0) rotate(0deg);
    }
    50% { 
        transform: translate(30px, -30px) rotate(180deg);
    }
    100% { 
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .quote-text {
        font-size: 1.4rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

.kompas-header {
    height: 300px; /* Reduced from 400px */
    background-color: var(--pink);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 4rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    width: 100%;
    overflow: hidden;
}

/* Specifieke styling voor kompas header icoontjes */
.kompas-header .floating-element {
    font-size: 15rem;
    opacity: 0.1;
}

.kompas-header .floating-element:nth-child(1) {
    top: 10%;
    left: -50px;
}

.kompas-header .floating-element:nth-child(2) {
    bottom: -50px;
    right: -50px;
}

.header-content {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-content h1 {
    font-size: 3rem; /* Reduced from 3.5rem */
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.2rem; /* Reduced from 1.4rem */
}

.intro-section {
    max-width: 900px;
    margin: 0 auto 6rem;
    padding: 3rem 4rem;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    box-shadow: 
        0 20px 50px rgba(254, 111, 179, 0.15),
        0 10px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(254, 111, 179, 0.08);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(254, 111, 179, 0.05) 0%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.intro-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.intro-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2.5rem;
}

.intro-vision {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--pink);
    font-style: italic;
}

.project-description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(254, 111, 179, 0.1);
}

.project-description p {
    margin-bottom: 2rem;
}

.project-description p:last-child {
    margin-bottom: 0;
}

.project-description .highlight-text {
    color: var(--pink);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2rem;
    font-style: italic;
}

.contact-footer {
    background: none;  /* Verwijder de gradient achtergrond */
    padding: 3rem 0.5rem;
    margin-top: 6rem;
    text-align: center;
    position: relative;
}

@media (max-width: 768px) {
    .intro-section {
        padding: 2rem;
        margin: 2rem 1rem 4rem;
    }

    .intro-main {
        font-size: 1rem;
        line-height: 1.7;
    }

    .intro-vision {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem; /* Vergroot de ruimte tussen de blokken */
    padding: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(254, 111, 179, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.description-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.description-text {
    flex: 2;
    min-width: 0;
}

.description-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.projecten-foto {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(254, 111, 179, 0.13);
}

@media (max-width: 900px) {
    .description-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .description-image {
        justify-content: center;
        margin-bottom: 1rem;
    }
    .projecten-foto {
        max-width: 320px;
    }
}