@import url('https://fonts.googleapis.com/css2?family=Antonio&family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antonio&family=Gothic+A1&display=swap'); /* font-family: 'Gothic A1', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

:root {
    --brown: rgb(73, 38, 36);
    --orange: rgb(255, 92, 0);
    --off-white: rgb(255, 234, 217);
    --green: rgb(1, 70, 51);

    --fs-xxl: 8rem;
    --fs-xl: 6rem;
    --fs-lg: 4rem;
    --fs-md: 2.75rem;
    --fs-sm: 2rem;
    --fs-xs: 1.5rem;
}

/* ========================================= Media Queries ============================================== */
@media (max-width: 576px) {
    :root {
        --fs-xxl: 3rem;
        --fs-xl: 2.5rem;
        --fs-lg: 1.5rem;
        --fs-md: 1.25rem;
        --fs-sm: 1rem;
        --fs-xs: .75rem;
    }

    .custom-btn{
        padding: 5px 15px;
    }

    .country-btn{
        padding: 5px 10px !important;
    }

    .header-container{
        margin-top: 40px;
    }

    .header-image-container{
        margin-top: -20px !important;
    }

    /* #province-state,
    #camp-ground,
    #user-name-email,
    #filler-2,
    #filler-1{
        height: 100vh !important;
    } */

    .section-container select{
        height: 20px !important;
    }

    .icon-container{
        height: 70px !important;
        width: 70px !important;
        margin-left: -20px !important;
    }
    .icon-container i{
        color: var(--brown) !important;
        font-size: 30px !important;
    }

    .x-mark{
        max-width: 150px !important;
    }


    .vs__search
    .vs__selected-options,
    .select-position{
        width: 260px !important;
    }

    #calendar-div{
        max-height: 400px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    :root {
        --fs-xxl: 4rem;
        --fs-xl: 3rem;
        --fs-lg: 2.25rem;
        --fs-md: 1.75rem;
        --fs-sm: 1.25rem;
        --fs-xs: 1rem;
    }

    .header-image-container{
        margin-top: -40px !important;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    :root {
        --fs-xxl: 6rem;
        --fs-xl: 4.5rem;
        --fs-lg: 3rem;
        --fs-md: 2.5rem;
        --fs-sm: 1.75rem;
        --fs-xs: .75rem;
    }

    .header-image-container{
        margin-top: -60px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1999px) {
    
}



@media (min-width: 2000px){
    :root {
        --fs-xxl: 14rem;
        --fs-xl: 10.5rem;
        --fs-lg: 8rem;
        --fs-md: 5.5rem;
        --fs-sm: 3.75rem;
        --fs-xs: 3rem;
    }

    .country-btn img{
        max-width: 30px !important;
    }

    

    .section-container select{
        font-size: 30px;
    }

    .icon-container{
        height: 120px !important;
        width: 120px !important;
        margin-left: -10px !important;
    }

    .icon-container i{
        color: var(--brown) !important;
        font-size: 60px !important;
    }

    .section-container input{
        width: 250px;
        height: 35px;
    }

}

/* ========================================= Media Queries ============================================== */

/* =========================== defaults ============================================= */

.text-xxl{
    font-size: var(--fs-xxl);
}

.line-height-xxl{
    line-height: var(--fs-xxl);
}

.text-xl{
    font-size: var(--fs-xl);
}

.line-height-xl{
    line-height: var(--fs-xl);
}

.text-lg{
    font-size: var(--fs-lg);
}

.line-height-lg{
    line-height: var(--fs-lg);
}

.text-md{
    font-size: var(--fs-md);
}

.text-sm{
    font-size: var(--fs-sm);
}

.text-xs{
    font-size: var(--fs-xs);
}

.custom-btn{
    text-decoration: none;
    padding: 10px 30px;
    font-size: var(--fs-sm);
    border-radius: 50px;
    font-family: 'Antonio', sans-serif;
    text-transform: uppercase;
    cursor: pointer;
}

.custom-btn-1{
    background-color: var(--off-white);
    color: var(--orange);
    border: 5px solid var(--orange);
    transition: all ease-in-out .2s;
}

.custom-btn-1:hover{
    background-color: var(--orange);
    color: var(--off-white);
    border: 5px solid var(--off-white);
}

.section-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100;
}

.text-orange{
    color: var(--orange) !important;
    font-family: 'Antonio', sans-serif;
}

/* =========================== defaults ============================================= */


.header-btns a{
    font-family: 'Antonio', sans-serif;
}

.navbar-brand{
    color: var(--orange)
}

.main-nav-bar{
    background: var(--brown) !important;
}

.nav-custom-btn{
    text-transform: uppercase;
    text-decoration: none;
    padding: 2px 10px;
    padding-bottom: 5px;
    font-size: var(--fs-xs);
    transition: all ease-in-out .1s;
}

.nav-custom-btn.nav-custom-btn-orange{
    color: var(--orange);
    background: var(--brown);
    border: 2px solid var(--brown);
}

.nav-custom-btn.nav-custom-btn-orange:hover{
    border: 2px solid var(--orange);
}

.nav-custom-btn.nav-custom-btn-brown{
    background: var(--orange);
    color: var(--brown);
    border: 2px solid var(--brown);
}

.nav-custom-btn.nav-custom-btn-brown:hover{
    background: var(--brown);
    color: var(--orange);
    border: 2px solid var(--orange);
}

/* ========================================= Header ============================================== */

#main-header{
    background-color: var(--brown);
    height: fit-content !important;
}

.header-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.header-text{
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

.header-image-container{
    width: 100%;
    margin-top: -120px;
    display: flex;
    justify-content: center; /* Horizontal center alignment */
    align-items: center;
}

.header-image-text{
    margin-top: 0%;
    position: absolute;
    width: 100%;
    padding-left: 5%;
}

.header-image-text p,
.section-container p
{
    color: var(--orange);
    font-family: 'Antonio', sans-serif;
    text-transform: uppercase;
    margin: 0px;
    line-height: var(--fs-lg);
}

.header-image-text .text-xs,
.section-container .text-xs
{
    line-height: var(--fs-sm);
    color: var(--orange);
    font-family: 'Antonio', sans-serif;
}

.header-image-text i,
.section-container i
{
    color: var(--orange);
    line-height: var(--fs-lg);
}

.header-image-container img{
    object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.icon-container{
    border: 7px solid var(--orange);
    background-color: var(--off-white);
    border-radius: 200px;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -10px;
}

.icon-container i{
    color: var(--brown) !important;
    font-size: 40px;
}

.country-btn{
    border:  none;
    cursor: pointer;
    background-color: var(--off-white);
    padding: 10px 15px;
    color: var(--green);
    font-family: 'Antonio', sans-serif;
    border-radius: 5px;
    box-shadow: 0px 7px 0px 0px rgb(244, 118, 45);
    font-size: var(--fs-xs);
    text-transform: uppercase;
}

.country-btn:focus{
    transform: translateY(3px);
    box-shadow: 0px 3px 0px 0px rgb(255, 92, 0);
    -webkit-box-shadow: 0px 3px 0px 0px rgb(255, 92, 0);
    -moz-box-shadow: 0px 3px 0px 0px rgb(255, 92, 0);
}

.country-btn.active{
    transform: translateY(3px);
    box-shadow: 0px 3px 0px 0px rgb(255, 92, 0);
    -webkit-box-shadow: 0px 3px 0px 0px rgb(255, 92, 0);
    -moz-box-shadow: 0px 3px 0px 0px rgb(255, 92, 0);
}

.country-btn img{
    max-width: 20px;
}


/* ====================================================================================================================== */


/* ===================================================| province-state |================================================= */
#province-state{
    height: 100vh;
    background-color: var(--off-white);
}

.section-container select{
    border: 2px solid var(--orange);
    background-color: var(--off-white);
    width: 100% !important;
    max-width: 350px;
    height: 50px !important;
    width: fit-content;
    height: fit-content;
    color: var(--orange);
    font-family: 'Antonio', sans-serif;
    padding: 0px 10px;
}
/* ====================================================================================================================== */

/* ===================================================| province-state |================================================= */
#camp-ground{
    height: 100vh;
    background-color: var(--green);
}

#camp-ground .section-container select{
    background-color: var(--green);
}

/* ====================================================================================================================== */


/* ===================================================| province-state |================================================= */
#filler-1{
    background-color: var(--brown);
    height: 100vh;
}
/* ====================================================================================================================== */

/* =====================================================|tour-date-selector|============================================= */
#tour-date-selector{
    background-color: var(--off-white);
    height: 100vh;
}
#calendar-div{
    background-color: white;
    height: 300px;
    width: 100%;
    border-radius: 20px;
}

/* ====================================================================================================================== */

/* ====================================================|user-name-email|================================================= */
#user-name-email{
    background-color: var(--green);
    height: 100vh;
}

.section-container .custom-text-field,
.custom-text-field
{
    background-color: transparent;
    border: 2px solid var(--orange);
    font-size: var(-fs-sm);
    color: var(--orange);
    font-family: 'Antonio', sans-serif;
    padding: 0px 10px;
    height: 50px;
    width: 100%;
    max-width: 400px;
}

.section-container .custom-text-field:focus,
.custom-text-field:focus
{
    border: 2px solid green !important;
}
/* ====================================================================================================================== */

/* ========================================================= filler-2 =================================================== */
#filler-2{
    background-color: var(--brown);
    height: 100vh;
}
.x-mark{
    max-width: 250px;
}
/* ====================================================================================================================== */

/* ========================================================= filler-2 =================================================== */
footer{
    height: 100px;
    background-color: var(--orange);
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p{
    font-family: 'Oswald', sans-serif;
    color: var(--brown);
    font-size: var(--fs-sm);
}
/* ====================================================================================================================== */


/* ======================================================== Login form ================================================== */
#login-form-container{
    background-image: url(../images/mountains.png);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#login-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 700px;
}

#login-form .login-custom-text-field{
    background-color: transparent;
    border: 2px solid var(--orange);
    font-size: var(-fs-sm);
    color: var(--orange);
    font-family: 'Antonio', sans-serif;
    padding: 0px 10px;
    height: 50px;
    width: 100%;
}

.login-custom-text-field::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--orange);
    opacity: 1; /* Firefox */
}
  
#login-form .custom-btn{
    font-size: var(--fs-xs);
}
/* ======================================================== Login form ================================================== */