/* Algemene typografie */
h1, h2 {
    color: #D4AF37;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

p {
    color: #e0e0e0;
    line-height: 1.8;
    text-align: justify;
    margin: 0 auto;
    max-width: 800px;
}

a {
    color: #D4AF37;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #f0f0f0;
    max-width: 700px;
    animation: fadeIn 2s ease-in-out;
}

.hero h1 {
    font-size: 3.5rem;
}

.hero p {
    font-size: 1.4rem;
    margin-top: 1rem;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: rgb(0, 0, 0);
    text-align: center;
}

.about img {
    width: 210px;
    height: 280px;
    border-radius: 50%;
    border: 5px solid #D4AF37;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.about h2 {
    margin-bottom: 1rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.about .quote {
    margin-top: 2rem;
    font-style: italic;
    color: #d4af37;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Call to Action Button */
.cta a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
    color: #121212;
    background: #D4AF37;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.cta a:hover {
    background: #f0c050;
    text-decoration: none;
}

/* MEDIA QUERIES */

/* Smartphones (max-width: 576px) */
@media (max-width: 576px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about img {
        width: 150px;
        height: 150px;
    }

    .about p {
        font-size: 0.9rem;
    }
}

/* Tablets (min-width: 577px) and (max-width: 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

    .about img {
        width: 180px;
        height: 180px;
    }

    .about p {
        font-size: 1rem;
    }

}

/* Kleine laptops (min-width: 769px) and (max-width: 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .about img {
        width: 200px;
        height: 250px;
    }

    .about p {
        font-size: 1.1rem;
    }

}

/* Desktops en grotere schermen (min-width: 993px) */
@media (min-width: 993px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .about img {
        width: 210px;
        height: 280px;
    }

    .about p {
        font-size: 1.2rem;
    }

}
