﻿html, body {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.section {
    width: 100%;
    scroll-snap-align: start;
}


.landing-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    line-height: 0;
    background: #fff;
    display: flex;
    align-items: center;
}

    .landing-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 1;
        height: 128px;
    }


.landing-hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}

.landing-logo {
    position: absolute;
    top: 5vh;
    left: 50%;
    transform: translateX(-50%);
    /*width: 100%;*/
    max-width: 450px;
    max-height: 18vh;
    z-index: 2;
    pointer-events: none;
}

.landing-hero-cta {
    /*position: absolute;
    place-self: anchor-center;*/
    width: 100%;
}

.landing-hero-cta-info {
    background-color: rgba(154, 196, 62, 0.9);
    padding: 2vw 4vw;
    border-radius: 0 16px 16px 0;
    display: flex;
    flex-direction: column;
}

    .landing-hero-cta-info h1 {
        color: var(--vz-white);
        font-weight: bold;
        font-size: 2rem;
    }

    .landing-hero-cta-info li {
        color: black;
        font-size: 1.4rem;
    }


.landing-hero-cta-btn {
    --vz-btn-bg: var(--vz-orange);
    --vz-btn-hover-bg: color-mix(in srgb, var(--vz-orange) 75%, black);
    --vz-btn-color: rgb(0, 0, 0);
    border: 3px solid #FFF;
    border-radius: 6vh;
    padding: 3vh;
    white-space: nowrap;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
}

    .landing-hero-cta-btn h4 {
        color: inherit;
        font-weight: bold;
        margin: 0;
        font-size: 1rem;
        white-space: nowrap;
    }



.landing-about {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-self: center;
    padding-inline: 2rem;
}

.landing-about-cards {
    padding-bottom: 88px;
    border-bottom: dotted;
    border-color: #5d7598;
}

.landing-about-card {
    display: flex;
    flex-direction: column;
    max-width: 246px;
    gap: 32px;
}

.landing-about-card-img {
}

    .landing-about-card-img img {
        width: 8rem;
    }

.landing-about-card-info {
    text-align: center;
}

    .landing-about-card-info p {
        font-size: .8rem;
        color: #5d7598;
    }

.landing-about-info {
    padding-top: 3rem;
}

    .landing-about-info p {
        font-size: 1rem;
        color: #5d7598;
    }

.landing-countries {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.landing-countries-container {
    display: flex;
    flex-direction: column;
}

.landing-countries-img {
}

    .landing-countries-img img {
        width: 100%;
        max-height: 75vh;
    }

.landing-countries-footer {
    align-items: stretch;
    box-sizing: border-box;
    padding-block: 3rem;
}

.landing-countries-footer-logo {
    padding: 1rem 2rem;
    border-right: dotted;
    border-color: #5d7598;
    text-align: end;
    align-content: center;
    height: 100%;
}

    .landing-countries-footer-logo img {
    }

.landing-countries-footer-disclaimer {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    height: 100%;
}

    .landing-countries-footer-disclaimer p {
        margin: 0;
        line-height: 1.5;
        font-size: .5rem;
        color: #5d7598;
    }

/* Extra‑small: <576px  (mobile phones) */
@media (max-width: 575.98px) {
    html {
        font-size: 14px;
    }
}

/* Small: ≥576px */
@media (min-width: 576px) {
    html {
        font-size: 16px;
    }
}

/* Medium: ≥768px */
@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

/* Large: ≥992px */
@media (min-width: 992px) {
    html {
        font-size: 20px;
    }
}

/* Extra‑large: ≥1200px */
@media (min-width: 1200px) {
    html {
        font-size: 22px;
    }
}

/* Extra‑extra‑large: ≥1400px */
@media (min-width: 1400px) {
    html {
        font-size: 24px;
    }
}
