html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}
body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f5f7fb;
    color: #111827;
}

/* HERO SECTION */

.hero {
    min-height: 100vh;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background:
        radial-gradient(circle at top left, #dbeafe, transparent 40%),
        radial-gradient(circle at bottom right, #ede9fe, transparent 40%),
        #ffffff;
}

/* TITLE */

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;

    max-width: 900px;
}

/* INTRO TEXT */

.intro {
    font-size: 22px;
    line-height: 1.7;
    color: #4b5563;

    max-width: 700px;
    margin-bottom: 50px;
}


/* MOBILE */


@media (max-width: 768px) {

    .hero {
        padding: 60px 16px;
    }

    .hero h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .intro {
        font-size: 17px;
        line-height: 1.6;
    }

       .hero-image {
        width: 90%;
        max-width: 300px;

        height: auto;

        object-fit: cover;

        margin-top: 30px;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }
}
a {
    background-color: transparent;
    color: #308282;
    text-decoration: underline;
}

a:hover {
    color: #ea1b10;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

svg:not(:root) {
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}

.logo {
    width: 150px;
    margin-inline-end: 20px;
}

.logo a {
    display: block;
}

.figure-logo {
    max-width: 150px;
    max-height: 55.1px;
}

.release-notes {
    font-size: 14px;
}

.main {
    padding: 40px 0;
    margin: 0 auto;
    text-align: center;
}

.figure-space {
    max-width: 265px;
}

@keyframes pos {
    0%, 100% {
        transform: rotate(-6deg);
    }
    50% {
        transform: rotate(6deg);
    }
}

.egg {
    fill: #43b1b0;
    animation: pos 3s ease infinite;
    transform: translateY(50px);
    transform-origin: 50% 80%;
}

.main-text {
    max-width: 400px;
    margin: 5px auto;
}

.main-text h1 {
    font-size: 22px;
}

.main-text p {
    margin: 15px auto 0;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #e6e6e6;
    padding: 10px;
}

.option {
    display: block;
    padding: 10px 10px 10px 34px;
    position: relative;
    text-decoration: none;
}

.option svg {
    width: 24px;
    height: 24px;
    fill: gray;
    border: 1px solid #d9d9d9;
    padding: 5px;
    border-radius: 100%;
    top: 10px;
    inset-inline-start: 0;
    position: absolute;
}

.option h2 {
    font-size: 19px;
    text-decoration: underline;
}

.option p {
    padding-top: 3px;
    color: #231f20;
    font-size: 15px;
    font-weight: 300;
}

@media (max-width: 996px) {
    body {
        max-width: 780px;
    }
}

@media (max-width: 767px) {
    .option {
        flex: 0 0 50%;
    }
}

@media (max-width: 599px) {
    .main {
        padding: 20px 0;
    }

    .figure-space {
        max-width: 200px;
    }

    .footer {
        display: block;
        width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 360px) {
    .header-link {
        max-width: 100px;
    }
}
.hero-button {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 32px;

    background: #111827;
    color: white;

    text-decoration: none;

    border-radius: 14px;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.hero-button:hover {
    background: #1f2937;
    transform: translateY(-2px);
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 320px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.close {
    font-size: 28px;
    cursor: pointer;
    color: #ef4444; /* rood */
    float: right;
    font-weight: bold;
    transition: 0.2s;
}

.close:hover {
    color: #b91c1c; /* donker rood */
}
.contact-wrapper {
    position: relative;
    display: inline-block;
}
.video-wrapper {
    position: relative;

    width: 100%;
    max-width: 900px;

    margin-top: 40px;

    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;

    border: none;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
