@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Bodoni Moda';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bodoni-moda-v28-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Bodoni Moda';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/bodoni-moda-v28-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/libre-baskerville-v24-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Libre Baskerville';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/libre-baskerville-v24-latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Libre Baskerville';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/libre-baskerville-v24-latin-italic.woff2') format('woff2');
}

@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/oswald-v57-latin-regular.woff2') format('woff2');
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1e4387;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}            

.icon-container {
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon {
    font-size: large;
}

.icon-container small {
    font-size: 0.65rem;
}

.icon-container button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.straps-img {
    width: 100%;
    height: auto;
    display: block;
}

.presented-by-img {
    width: 85%;
    position: relative;
    left: 7.5%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #1e4387;
}

body.home-page .navbar {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

body:not(.home-page) {
    padding-top: 5rem;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 2vw;
    width: 100%;
}

.navbar-brand-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

.navbar-brand-group .nav-logo {
    height: 2rem;
    object-fit: contain;
}

.navbar-brand-group .nav-signs {
    height: 1.5rem;
    object-fit: contain;
}

.navbar-right {
    display: none;
    align-items: center;
    gap: 0.8rem;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.8rem;
}

.nav-link {
    font-family: 'Bebas Neue', 'Impact', 'Arial Narrow Bold', sans-serif;
    letter-spacing: 0.1em;
    color: #fff !important;
    white-space: nowrap;
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 14px;
}

.nav-link:hover {
    color: #aac4ff !important;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.navbar.menu-open {
    height: 100vh;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #1e4387;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu.open {
    display: flex;
    min-height: 0;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.mobile-nav-list .nav-link {
    display: block;
    padding: 0.25rem 0;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
}

.mobile-nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-trees {
    display: block;
    width: 100%;
    margin-top: auto;
}

.bottom-container {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

button:focus {
    outline: none;
}

button:focus-visible {
    outline: 2px solid #283e8b;
    outline-offset: 2px;
}

.messages-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    width: 90%;
    max-width: 480px;
}

.newsletter-signup {
    width: 100%;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-title {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    letter-spacing: 0.08em;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.newsletter-signup-img {
    width: 80%;
}

.newsletter-trees-img {
    width: 65%;
}

.newsletter-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 80%;
    justify-content: center;
    font-family: 'Bebas Neue', 'Impact', sans-serif;
}

.newsletter-input {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #f4f3ec;
    padding: 0.6rem 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    border: none;
    background: #dd9b2a;
    color: #f4f3ec;
    letter-spacing: 0.08em;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.newsletter-btn:hover {
    background: #c8881f;
}

.newsletter-consent {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

@media (min-width: 577px) {

    .icon {
        font-size: x-large;
    } 
    
    .icon-container small {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
    }

    .navbar-brand-group .nav-logo {
        height: 3.5rem;
    }

    .navbar-brand-group .nav-signs {
        height: 2.5rem;   
    }

    .navbar-right {
        display: flex;
        gap: 2rem;
    }

    .hamburger-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .navbar-nav {
        gap: 2rem;
    }

    .nav-link {
        font-size: 18px;
    }

    .video {
        width: 95vw;
    }

    .bottom-container {
        bottom: 0;
    }

    .bottom-container small {
        font-size: 0.65rem;
    }

    .newsletter-signup-img {
        width: 50%;
    }

    .newsletter-trees-img {
        width: 40%;
    }

    .newsletter-form {
        flex-direction: row;
        justify-content: space-around;
    }

    .newsletter-input {
        width: 100%;
    }
}

.newsletter-page {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
    padding: 0 1rem;
}

.newsletter-card {
    background: #f4f3ec;
    color: #1e4387;
    border-radius: 12px;
    padding: 2.5rem 2rem;
}

.newsletter-card h1 {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    letter-spacing: 0.06em;
}

.newsletter-card .newsletter-btn {
    margin-top: 0.5rem;
}

.newsletter-link {
    display: inline-block;
    margin-top: 1rem;
    color: #1e4387;
    font-family: 'Montserrat', sans-serif;
}