/* =========================
   HERO / PAGINA TEKST
   ========================= */

.hero {
    max-width: 1200px;   /* was 900px → meer ruimte voor foto's */
    margin: 80px auto;
    padding: 0 80px;    /* extra binnenruimte links & rechts */
    text-align: center;
    position: relative; /* nodig voor de zwevende foto's */
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-intro h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 56px;
    margin-bottom: 20px;
}

.hero-intro p {
    margin-bottom: 12px;
    font-size: 18px;
}

/* =========================
   EVENTS – stijl (referentie)
   ========================= */

.events-page p,
.events-page li {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
}

/* =========================
   ABOUT – zelfde grootte & dikte als Events
   zonder gouden bolletjes
   ========================= */

.about-page .hero-intro p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* =========================
   CTA
   ========================= */

.cta {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.cta:hover {
    background: #d4af37;
    color: #000;
}

/* =========================
   CONTACT FORM
   ========================= */

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    background-color: #111;
    border: 1px solid #333;
    color: #d4af37;
}

.contact-form button {
    padding: 12px;
    background-color: #d4af37;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
/* =========================
   HEADER TITEL
   ========================= */
.header-title h1 {
    font-family: 'Great Vibes', cursive;
}
/* =========================
   LOGO FALL-IN ANIMATION
   ========================= */

.header-logo img {
    animation: logoFall 1.2s ease-out forwards;
    transform: translateY(-120px);
    opacity: 0;
}

@keyframes logoFall {
    0% {
        transform: translateY(-120px);
        opacity: 0;
    }
    60% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===============================
   HERO met zijfoto’s
================================ */

.hero-with-images {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Zij-afbeeldingen */
.hero-side-image {
    position: absolute;
    top: 50%;
    width: 260px;
    max-width: 35vw;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-radius: 10px;
    z-index: 1;
}

/* Links */
.hero-side-image.left {
    left: -60px;
    transform: translateY(-50%) rotate(-8deg);
}

/* Rechts */
.hero-side-image.right {
    right: -60px;
    transform: translateY(-50%) rotate(8deg);
}
/* ============================
   HERO SIDE IMAGES (HOME)
============================ */

.hero-with-images {
    position: relative;
    overflow: hidden;
}

/* Container voor absolute foto's */
.hero-images {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Tekst erboven */
.hero-content {
    position: relative;
    z-index: 5;
}

/* Afbeeldingen */
.hero-side-image {
    position: absolute;
    top: 50%;
    width: 420px;
    max-width: 40vw;
    transform: translateY(-50%);
    opacity: 0.95;
}

.hero-side-image.left {
    left: -180px; /* verder naar links */
    transform: translateY(-50%) rotate(-10deg);
}

.hero-side-image.right {
    right: -180px; /* verder naar rechts */
    transform: translateY(-50%) rotate(10deg);
}

/* Mobiel */
@media (max-width: 768px) {
    .hero-side-image {
        width: 160px;
        opacity: 0.5;
    }

    .hero-side-image.left {
        left: -40px;
    }

    .hero-side-image.right {
        right: -40px;
    }
}

