:root {
    /* typography */
    --ff-heading: "Oswald", sans-serif;
    --ff-body: "Inter", sans-serif;

    --text-7: 3.815rem;
    --text-6: 3.052rem;
    --text-5: 2.441rem;
    --text-4: 1.953rem;
    --text-3: 1.563rem;
    --text-2: 1.25rem;
    --text-1: 1rem;
    --text-0: 0.8rem;

    /* color palette */
    --blue-0: #e7f5ff;
    --blue-1: #d0ebff;
    --blue-3: #74c0fc;
    --blue-5: #339af0;
    --blue-7: #1c7ed6;
    --blue-9: #1864ab;

    --gray-0: #f8f9fa;
    --gray-1: #f1f3f5;
    --gray-3: #dee2e6;
    --gray-5: #adb5bd;
    --gray-7: #495057;
    --gray-9: #212529;

    --white: #fff;
    --black: #000;

    /* border radius */
    --border-0: 4px;
    --border-1: 8px;
    --border-2: 16px;
    --border-3: 32px;
}

.hero-section {
    display: flex;
    justify-content: center;
}

.hero {
    width: 100%;
    height: 800px;
    background-image: url("../assets/images/beach-1.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding-inline: 2rem;
    border-radius: var(--border-2);

    @media (width < 1024px) {
        height: 650px;
    }

    @media (width < 640px) {
        height: 600px;
        align-items: center;
        text-align: center;
    }
}

.hero > * {
    z-index: 20;
}

.hero__headline {
    font-size: var(--text-6);

    @media (width < 1024px) {
        font-size: var(--text-5);
    }
}

.hero__sub-headline {
    font-size: var(--text-2);
    max-width: 50%;

    @media (width < 1024px) {
        font-size: var(--text-1);
    }
}

.hero__headline,
.hero__sub-headline {
    color: var(--white);
}

.thing-to-do-section,
.best-accommodation-section,
.place-to-go-section,
.why-wonderland-section {
    display: flex;
    justify-content: center;
}
