/* =========================
   EPK
========================= */

body {
    background-image:
            linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
            url("images/compressed/impressie-1.webp");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}



.epk {
    max-width: 1000px;
    margin: 0 auto;
    padding: 120px 25px 60px;
}

.epk-intro {
    text-align: center;
    margin-bottom: 50px;
}

.epk-intro h1 {
    font-size: 48px;
    margin-bottom: 5px;
}

.epk-intro p {
    font-size: 20px;
}

.epk section {
    margin-bottom: 60px;
}

.epk h2 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.epk-bio {
    max-width: 700px;
    line-height: 1.7;
}


/* =========================
   PERSFOTO
========================= */

.photo-card {
    width: 280px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 10px;
    overflow: hidden;
}

.photo-card img {
    display: block;
    width: 280px;
    height: 180px;
    object-fit: cover;
}

.epk-button {
    display: block;
    width: 100%;
    text-align: center;

    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: #dce8df;
    text-decoration: none;

    padding: 9px 16px;
    margin: 15em auto 0.2em;


    border: 1px solid rgba(140, 255, 79, 0.25);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.025);

    transition:
            color 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease,
            box-shadow 0.2s ease;
}

.epk-button:hover {
    color: #8cff4f;
    background: rgba(140, 255, 79, 0.07);
    border-color: rgba(140, 255, 79, 0.6);
    box-shadow: 0 0 14px rgba(140, 255, 79, 0.12);
}

.epk-photos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.epk-intro .hero-image {
    display: block;
    width: 300px;
    max-width: 80%;
    height: auto;
    margin: 4em auto 4em;
}