* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;

    font-family: "DM Sans", sans-serif;

    color: #403b36;

    background:
        radial-gradient(
            circle at top left,
            #f8e9df 0%,
            transparent 35%
        ),

        radial-gradient(
            circle at bottom right,
            #eee4d7 0%,
            transparent 35%
        ),

        #f7f3ee;
}


.plan-page {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    padding: 35px 25px 60px;
}


/* =========================
   TERUG KNOP
========================= */

.back-link {
    display: inline-block;

    margin-bottom: 25px;

    color: #806e63;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.2s ease;
}


.back-link:hover {
    color: #a96955;
}


/* =========================
   HERO
========================= */

.plan-hero {
    position: relative;

    height: 500px;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 15px 45px rgba(70, 55, 40, 0.15);
}


.plan-hero > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.hero-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 90px 45px 45px;

    color: white;

    background:
        linear-gradient(
            transparent,
            rgba(35, 28, 23, 0.78)
        );
}


.plan-label {
    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.hero-overlay h1 {
    margin-bottom: 8px;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 7vw, 62px);

    font-weight: 600;
	color: #ffffff
}


.hero-subtitle {
    font-size: 17px;
}


/* =========================
   ALGEMENE SECTIES
========================= */

.plan-intro,
.schedule,
.plan-ending {
    padding: 65px 35px;
}


h2 {
    margin-bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: 34px;

    color: #40362f;
}


p {
    line-height: 1.8;
}


.plan-intro p {
    max-width: 700px;

    color: #716a63;

    font-size: 17px;
}


/* =========================
   INFORMATIE
========================= */

.info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    padding: 0 35px 55px;
}


.info-box {
    padding: 25px 20px;

    text-align: center;

    background: #fffdfa;

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(70, 55, 40, 0.07);
}


.info-icon {
    display: block;

    margin-bottom: 12px;

    font-size: 27px;
}


.info-box h3 {
    margin-bottom: 7px;

    font-size: 16px;
}


.info-box p {
    color: #716a63;

    font-size: 14px;
}


/* =========================
   TIJDLIJN
========================= */

.timeline {
    position: relative;

    margin-top: 35px;

    padding-left: 75px;
}


.timeline::before {
    content: "";

    position: absolute;

    top: 5px;
    bottom: 5px;
    left: 20px;

    width: 2px;

    background: #dfc9bc;
}


.timeline-item {
    position: relative;

    display: flex;

    gap: 25px;

    margin-bottom: 38px;
}


.timeline-item::before {
    content: "";

    position: absolute;

    left: -62px;
    top: 4px;

    width: 12px;
    height: 12px;

    border: 4px solid #f7f3ee;

    border-radius: 50%;

    background: #a96955;
}


.time {
    flex-shrink: 0;

    width: 55px;

    color: #a96955;

    font-size: 14px;

    font-weight: 600;
}


.timeline-content h3 {
    margin-bottom: 7px;

    font-size: 17px;
}


.timeline-content p {
    color: #716a63;

    font-size: 15px;
}


/* =========================
   EXTRA FOTO
========================= */

.photo-section {
    width: 100%;

    padding: 0 35px;
}


.photo-section img {
    display: block;

    width: 100%;
    height: 380px;

    object-fit: cover;

    border-radius: 22px;
}


/* =========================
   KIES-DEZE-OPTIE BLOK
========================= */

.choose-plan {
    margin: 20px 35px 60px;

    padding: 45px 30px;

    text-align: center;

    background: #fffdfa;

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(70, 55, 40, 0.07);
}


.choose-plan h2 {
    margin-bottom: 12px;

    font-size: 30px;
}


.choose-plan > p {
    max-width: 550px;

    margin: 0 auto;

    color: #716a63;
}


/* =========================
   MOOIE KEUZEKNOP
========================= */

.choose-button {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 230px;

    margin-top: 25px;

    padding: 16px 28px;

    border: 1px solid #d9b9aa;

    border-radius: 14px;

    background: #fffaf7;

    color: #8f5d4c;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 4px 12px rgba(70, 55, 40, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

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


.choose-button span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 50%;

    background: #f2ddd3;

    color: #a96955;

    font-size: 15px;

    transition:
        transform 0.3s ease,
        background 0.25s ease,
        color 0.25s ease;
}


/* Hover */

.choose-button:hover {
    transform: translateY(-3px);

    background: #fff7f3;

    border-color: #cfa596;

    box-shadow:
        0 10px 25px rgba(70, 55, 40, 0.10);
}


.choose-button:hover span {
    transform: scale(1.12);

    background: #ead2c5;
}


/* Klik */

.choose-button:active {
    transform: translateY(-1px);
}


/* Opslaan */

.choose-button:disabled {
    cursor: wait;

    opacity: 0.75;

    transform: none;
}


/* Gekozen */

.choose-button.selected {
    background: #eee9e1;

    border-color: #c8bcae;

    color: #6d6259;

    box-shadow: none;
}


.choose-button.selected span {
    background: #d9e2d4;

    color: #66805f;
}


/* Bericht */

.choice-message {
    display: none;

    margin-top: 18px !important;

    color: #6d8064 !important;

    font-size: 14px;

    font-weight: 500;
}


.choice-message.visible {
    display: block;

    animation: messageAppear 0.35s ease;
}


@keyframes messageAppear {

    from {
        opacity: 0;

        transform:
            translateY(-5px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================
   ANDERE PLANNEN
========================= */

.plan-ending {
    text-align: center;
}


.plan-ending p {
    color: #716a63;
}


.button {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    margin-top: 28px;

    padding: 15px 25px;

    border-radius: 50px;

    background: #a96955;

    color: white;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    box-shadow:
        0 8px 20px rgba(169, 105, 85, 0.20);

    transition: 0.2s ease;
}


.button:hover {
    background: #925944;

    transform: translateY(-2px);
}


.button span {
    font-size: 20px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding-top: 10px;

    text-align: center;

    color: #9a8e84;

    font-family: "Playfair Display", serif;

    font-size: 15px;
}


/* =========================
   MOBIEL
========================= */

@media (max-width: 650px) {

    .plan-page {
        padding: 20px 12px 40px;
    }


    .plan-hero {
        height: 420px;

        border-radius: 22px;
    }


    .hero-overlay {
        padding: 80px 25px 30px;
    }


    .hero-overlay h1 {
        font-size: 40px;
    }


    .plan-intro,
    .schedule,
    .plan-ending {
        padding: 45px 15px;
    }


    h2 {
        font-size: 29px;
    }


    .info-grid {
        grid-template-columns: 1fr;

        padding: 0 15px 40px;
    }


    .timeline {
        padding-left: 55px;
    }


    .timeline-item {
        display: block;
    }


    .time {
        margin-bottom: 5px;
    }


    .photo-section {
        padding: 0 15px;
    }


    .photo-section img {
        height: 280px;

        border-radius: 18px;
    }


    .choose-plan {
        margin: 20px 15px 45px;

        padding: 35px 20px;
    }


    .choose-button {
        width: 100%;

        min-width: 0;

        padding: 17px 22px;
    }

}