/* BASE */
body {
    margin: 0;
    font-family: 'Inclusive Sans', sans-serif;
    background: #f7e4d7;
    font-weight: 220;
}

/* NAVBAR */
nav {
    background: #54110F;
    color: #FEDEE1;
    display: flex;
    justify-content: space-between;
    padding: 12px 40px;
    align-items: center;
}

nav .menu a {
    color: #FEDEE1;
    margin-left: 25px;
    text-decoration: none;
}

/* HERO */
.hero {
    position: relative;
    text-align: center;
    padding: 80px 0 40px;
}

/* SOFT RADIAL GLOW */
.hero::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 700px;

    background: radial-gradient(ellipse at center,
            rgba(243, 159, 169, 0.6) 0%,
            rgba(243, 159, 169, 0.4) 25%,
            rgba(231, 184, 184, 0.2) 50%,
            rgba(231, 184, 184, 0.05) 70%,
            rgba(231, 184, 184, 0) 90%);
    z-index: -1;
}

/* TITLES */
.small-title {
    font-size: 18px;
    color: #54110F;
}

.main-title {
    font-size: 56px;
    font-family: 'La Belle Aurore', cursive;
    color: #54110F;
    margin: 10px 0 40px;
    font-weight: 300;
}

/* CARDS CONTAINER */
.cards {
    position: relative;
    width: 800px;
    height: 350px;
    margin: 0 auto;
}

/* CARD BASE */
.card {
    position: absolute;
    width: 260px;
    height: 280px;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card h2 {
    padding-left: 18px;
    text-align: left;
    font-family: 'La Belle Aurore', cursive;
    font-size: 50px;
    font-weight: 300;
    margin-top: 0;

}

/* CENTER CARD */
.card-center {
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    background: #F39Fa9;
    color: #54110F;
    z-index: 3;
    text-align: center;
    padding: 25px;
    text-align: left;
    padding-left: 18px;
}

/* LEFT CARD */
.card-left {
    left: -40px;
    top: 100px;
    background: #54110F;
    color: #FEDEE1;
    transform: rotate(-10deg);
    text-align: left;
    padding-left: 18px;
}

/* RIGHT CARD */
.card-right {
    right: -40px;
    top: 100px;
    background: #70020F;
    color: #FEDEE1;
    transform: rotate(10deg);
    text-align: left;
    padding-left: 18px;
}


/* TAPE */
.tape {
    width: 70px;
    height: 18px;
    background: #F39Fa9;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    border-radius: 3px;
    opacity: 0.9;
}

.tape.dark {
    background: #70020F;
}

/* ONTWERPVRAAG */
.ontwerpvraag {
    text-align: center;
    margin: 300px auto 80px auto;
    max-width: 1125px;
    background: rgba(243, 159, 169, 0.5);
    /* 0.5 = 50% opacity */
    padding: 0px 50px 50px 50px;
    border-radius: 20px;
}

.ontwerpvraag h2 {
    font-family: 'La Belle Aurore';
    font-size: 50px;
    color: #70020F;
    font-weight: 300;
}

.ontwerpvraag p {
    margin-top: 20px;
    line-height: 1.6;
}

/* SITUATIES */
.situaties {
    text-align: center;
    margin: 60px 0;
}

.box {
    display: inline-block;
    width: 35%;
    margin: 20px;
    background: #a56663;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
}

.box h2 {
    font-family: 'La Belle Aurore', cursive;
    font-size: 32px;
    color: #70020F;
}

.box ul {
    padding-left: 20px;
}

/* FOOTER */
footer {
    position: relative;
    margin-top: 100px;
    padding: 150px 0;
    text-align: center;
}

/* BIG SOFT GRADIENT (matches top style) */
footer::before {
    content: "";
    position: absolute;

    top: -100px;
    left: 0;
    right: 0;
    bottom: -200px;

    background: radial-gradient(ellipse at 50% 65%,
            rgba(243, 159, 169, 0.7) 0%,
            rgba(243, 159, 169, 0.5) 15%,
            rgba(231, 184, 184, 0.3) 35%,
            rgba(231, 184, 184, 0.15) 50%,
            rgba(231, 184, 184, 0) 70%);

    z-index: -1;
}

/* TEXT ABOVE GRADIENT */
footer p {
    position: relative;
    z-index: 1;

    font-family: 'La Belle Aurore', cursive;
    font-size: 36px;
    color: #70020F;
}

/* CONTENT SECTION */
.content {
    max-width: 900px;
    margin: 100px auto;
}

/* EACH BLOCK */
.content-block {
    margin-bottom: 80px;
}

/* TITLES */
.content-block h2 {
    font-family: 'La Belle Aurore', cursive;
    font-size: 36px;
    color: #70020F;
    margin-bottom: 10px;
    position: relative;
}

/* UNDERLINE LINE */
.content-block h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #30160F;
    margin-top: 10px;
}

/* TEXT */
.content-block p {
    margin: 20px 0;
    line-height: 1.6;
}

/* LISTS */
.content-block ul {
    padding-left: 20px;
    line-height: 1.6;
}

.content-block li {
    margin-bottom: 8px;
}