:root {
    /* Fonts */
    /* Regular */
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: italic;

    /* Medium */
    font-family: "poppins", sans-serif;
    font-weight: 500;
    font-style: normal;

    /* Bold */
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;

    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
    /* Extrabold */
    font-family: "poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    /* Black */
    font-family: "poppins", sans-serif;
    font-weight: 900;
    font-style: normal;

    /* Font Size */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Border Radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;

    /* Colors */
    --strawberry-red: #fb3640ff;
    --muted-teal: #7a9e7eff;
    --white-smoke: #f4f2f3ff;
    --deep-mocha: #362c28ff;
    --turf-green: #04724dff;

    /* Site max-width */
    --site-max-width: 1300px;

    /* Line height Body */
    --line-height-body: 1.5;

}

html,
body {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
    background-image: url("../images/bg/bg-02.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#overlay {
    display: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

img {
    width: 100%;
}

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

header {
    background-color: var(--turf-green);
    width: 100%;
}

.nav-logo {
    width: 250px;
    height: 60px;
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 785px) {
    header .navbar {
        flex-direction: column;
    }

    .nav-menu {
        margin-top: 1rem;
        gap: 0;
    }
}

/* @media (max-width: 375px) {
    header .nav-menu {
        display: none;
    }
} */

.navbar .nav-menu {
    display: flex;
    gap: 10px;
}


.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    color: var(--white-smoke);
    transition: 0.2s ease-out;
}

.navbar .nav-menu .nav-link:hover {
    background: var(--muted-teal);
}

.links-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

@media (min-width: 500px) {
    .links-container {
        display: none;
    }
}

#sidebar-active {
    display: none;
}

.open-sidebar-button,
.close-sidebar-button {
    display: none;
    padding: 0 20px;
    height: 32px;
    width: 32px;
}

@media (max-width: 500px) {
    #overlay {
        display: block;
    }

    .welcome {
        display: none;
    }

    .nav-link {
        display: none;
    }


    .links-container {
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 150px;
        background-color: var(--turf-green);
        height: auto;
        box-shadow: -5px 0 5px rgba(0, 0, 0, .25);
        transition: .5s ease-out;
        opacity: 0;
    }

    .links-container a {
        height: auto;
        width: 100%;
        padding: 20px 30px;
        justify-content: flex-start;
        color: var(--white-smoke);
    }

    .open-sidebar-button,
    .close-sidebar-button {
        display: block;
    }

    #sidebar-active:checked~.links-container {
        right: 0;
        opacity: 100%;
    }

    #sidebar-active:checked~#overlay {
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
}

.hero-section {
    margin: 100px 50px;
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 70vh;
    color: var(--deep-mocha);
    justify-content: space-between;
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
}

.hero-section .hero-details {
    margin: 2rem;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--turf-green);
    font-family: "ltc-goudy-heavyface-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-l);
    font-weight: 500;
    position: relative;
}

.hero-section .hero-details .description {
    font-size: var(--font-size-m);
    max-width: 60%;
    margin: 24px 0 40px;
    line-height: var(--line-height-body);
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button {
    padding: 14px 26px;
    border-radius: var(--border-radius-m);
    background: var(--strawberry-red);
    color: black;
    font-weight: 500;
    border: 2px solid transparent;
    transition: .2s ease-out;
}

.hero-section .hero-details .button:hover {
    color: var(--deep-mocha);
    border-color: var(--strawberry-red);
    background: transparent;
}

.hero-section .hero-img-wrapper {
    max-width: 600px;
}

@media (max-width: 1233px) {
    .hero-section .section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    .hero-section .hero-details .subtitle {
        max-width: 100%;
    }

    .hero-section .hero-details .description {
        max-width: 100%;
    }

    .hero-section .hero-details .buttons {
        justify-content: center;
    }

}

.welcome {
    max-width: 200px;
    margin-left: 10rem;
}

.introduction-section {
    margin: 100px 50px;

}

.introduction-section .introduction-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    padding: 0 20px;
    max-width: var(--site-max-width);
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
}

.introduction-section .introduction-details {
    font-size: var(--font-size-m);
    max-width: 60%;
    line-height: var(--line-height-body);
    margin: 2rem;
    height: fit-content;

}

.introduction-details .title {
    font-size: var(--font-size-xxl);
    font-family: "ltc-goudy-heavyface-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--turf-green);
}

.introduction-details .subtitle {
    margin-top: 0px;
    max-width: 70%;
    padding-left: 0.3rem;
    font-size: var(--font-size-l);
    font-weight: 500;
}

.introduction-details .description {
    font-size: var(--font-size-m);
    margin: 24px 0 40px;
    padding-left: 0.3rem;
    max-width: 80%;
    line-height: var(--line-height-body);
}

.introduction-section .introduction-details .buttons {
    display: flex;
    gap: 23px;
}

.introduction-section .introduction-details .button {
    padding: 10px 26px;
    border-radius: var(--border-radius-m);
    background: var(--strawberry-red);
    color: black;
    font-weight: 500;
    border: 2px solid transparent;
    transition: .2s ease-out;
}

.introduction-section .introduction-details .button:hover {
    color: var(--deep-mocha);
    border-color: var(--strawberry-red);
    background: transparent;
}

@media (max-width: 1233px) {
    .introduction-section .introduction-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    .introduction-section .introduction-details .subtitle {
        max-width: 100%;
    }

    .introduction-section .introduction-details .description {
        max-width: 100%;
        text-align: left;
    }

    .introduction-section .introduction-details .button {
        padding: 10px;
    }

    .introduction-section .introduction-details .buttons {
        display: flex;
        justify-content: center;
        gap: 23px;
    }

}

.arrangement-section {
    position: relative;
    margin: 100px 50px;
}

.arrangement-section .arrangement-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 0 20px;
    max-width: var(--site-max-width);
    background-color: var(--white-smoke);
    border-radius: 16px;
    box-shadow: 0 4px 30px var(--muted-teal);
}

.arrangement-details {
    margin: 2rem;
}

.arrangement-details .title {
    font-size: var(--font-size-xxl);
    font-family: "ltc-goudy-heavyface-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--turf-green);
    max-width: 70%;
}

.arrangement-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-l);
    font-weight: 500;
}

.arrangement-details .description {
    font-size: var(--font-size-m);
    margin-top: 20px;
    max-width: 60%;
    line-height: var(--line-height-body);
}

.arrangement-details .opsomming {
    font-size: var(--font-size-m);
    margin-top: 0px;
    line-height: var(--line-height-body);
    position: relative;
    align-items: center;
    padding-left: 1em;
}

.arrangement-img-wrapper {
    max-width: 500px;
}


.opsomming ul {
    list-style: disc;
}

.opsomming-1::marker {
    color: var(--deep-mocha);
}

.opsomming-2::marker {
    color: var(--deep-smocha);
}

.opsomming-3::marker {
    color: var(--deep-mocha);
}

.arrangement-section .buttons {
    padding: 14px 26px;
    margin-top: 40px;
    border-radius: var(--border-radius-m);
    background: var(--strawberry-red);
    color: black;
    font-weight: 500;
    border: 2px solid transparent;
    transition: .2s ease-out;
    width: fit-content;
}

.arrangement-section .buttons a {
    color: black;
}

.arrangement-section .buttons a:hover {
    color: var(--deep-mocha);
}

.arrangement-section .buttons:hover {
    color: var(--deep-mocha);
    border-color: var(--strawberry-red);
    background: transparent;
}


@media (max-width: 1233px) {
    .arrangement-section .arrangement-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
    }

    .arrangement-details {
        text-align: center;
    }

    .arrangement-details .description {
        text-align: center;
        max-width: 100%;
    }

    .arrangement-section .arrangement-details .title {
        max-width: 100%;
    }

    .arrangement-section .arrangement-details .subtitle {
        max-width: 100%;
    }
}

/* Footer */
.footer-section {
    text-align: center;
    padding: 20px 0;
    background: var(--deep-mocha);
    color: var(--white-smoke);
    font-size: var(--font-size-s);
}

.footer-section a {
    color: var(--white-smoke);
    text-decoration: underline;
    cursor: pointer;
}