/**
* Theme Name: LOI
* Description: LOI Custom Theme
* Author: Syrus
* Template: syrus
* Version: 0.0.1
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* --base-color: #081677; */
    --base-color: #025395;
}

#main-navbar {
    background-color: var(--base-color);
}

#main-navbar * {
    color: white;
}

#main-navbar .navbar-brand,
footer .footer-brand {
    font-family: Roboto;
    font-weight: 900;
}

.dropdown-item {
    color: black !important;
}

/* footer *,
footer a {
    color: #061199;
} */

main.landing {
    font-family: Roboto;
    background-image: url(assets/img/italy-map.webp);
    background-size: cover;
    background-position: center;
    min-height: 80dvh;
}

main.landing .deal-card {
    background-color: var(--base-color);
    width: 100%;
}

main.landing .deal-card button.cta {
    background: white;
    padding: 16px;
    text-transform: uppercase;
    color: #182A79;
    border-color: #04B88F;
    border-radius: 55px;
    border-width: 3px;
}

nav .preferred-logo {
    height: 20px;
}

section.deal {
    background-image: url(assets/img/deal-bg.webp);
    position: relative;
    z-index: 1;
}

section.deal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002f56cc;
    z-index: 2;
}

section.deal > .container {
    color: white;
    position: relative;
    z-index: 3;
}

section.deal form {
    background-color: #001d35a8;
    backdrop-filter: blur(5px);
}

@media only screen and (max-width: 600px) {
    nav .preferred-logo {
        height: auto;
        width: 100%;
    }
}
