@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #F5F5DC;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

#zen-intro {
    background-image: url('./Images/firstbackground.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 50px;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#zen-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

#zen-intro * {
    color: white;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    z-index: 2;
}

a {
    color: #1a73e8;
    text-decoration: none;
    border-bottom: 1px solid #1a73e8;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

a:hover {
    color: #0c47a1;
    border-bottom-color: #0c47a1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #0c47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#zen-supporting {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#zen-supporting:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
#zen-intro h1, #zen-intro h2, #zen-intro p,
#zen-summary, #zen-preamble, #zen-supporting h3, #zen-supporting p {
    color: #FFFFFF; /* Maak de tekst wit */
    font-weight: 400; /* Maak de tekst bold */
}

h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

#zen-explanation,
#zen-participation,
#zen-benefits,
#zen-requirements {
    position: relative;
    padding: 20px;
    margin-bottom: 40px;
    background-color:rgba(0, 0, 0, 0.5);
    background-image: url('./Images/Group\ 1.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    color: white;
}

#zen-explanation::before,
#zen-participation::before,
#zen-benefits::before,
#zen-requirements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Donkere overlay voor betere leesbaarheid */
    z-index: -1;
}

#zen-requirements p[role="contentinfo"] {
    font-size: 0.875rem;
    color: #777;
    margin-top: 40px;
    text-align: center;
}

abbr {
    border-bottom: 1px dotted #999;
    cursor: help;
}



@media (max-width: 768px) {
    #zen-intro {
        padding: 30px 20px;
    }

    #zen-intro h1 {
        font-size: 2rem;
    }

    #zen-intro h2 {
        font-size: 0.875rem;
    }

    #zen-intro p {
        font-size: 1rem;
    }

    #zen-supporting {
        padding: 40px 20px;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    #zen-intro {
        padding: 20px 10px;
    }

    #zen-intro h1 {
        font-size: 1.8rem;
    }

    #zen-intro h2 {
        font-size: 0.75rem;
    }

    #zen-intro p {
        font-size: 0.875rem;
    }

    #zen-supporting {
        padding: 30px 15px;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.75rem;
    }
}
