/********* HERO ************/

.hero-sec{
    padding: 6rem 0;
}

.hero-title{
    font-family: "Lexend", sans-serif;
    font-size: 4.7rem;
    font-weight: 500;
    letter-spacing: -1px;
    text-wrap: balance;
    margin-bottom: 2rem;
}

.hero-text{
    color: #444;
    margin-bottom: 2rem;
}

.btn-hero-events{
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    color: #FFF;
    padding: 1rem 1.5rem;
    margin-right: 1rem;
}

.btn-hero-events:hover{
    background-color: var(--primary-color-hover);
    color: #FFF;
}

.btn-hero-news{
    border: 1px solid #222;
    border-radius: 1rem;    
    padding: 1rem 1.5rem;
}

.btn-hero-news:hover{
    box-shadow: 0 0 0 2px #222 inset;
}

.hero-img-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img1-wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-img1{
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.hero-img2-wrapper{
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 1rem;
    overflow: hidden;
}

.hero-img2{
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
}

@media(max-width: 1400px){
    .hero-img1-wrapper{
        max-width: 80%;
    }
}

@media(max-width: 960px){
    .hero-sec{
        padding: 4rem 0;
    }
    
    .hero-title{
        font-size: 3rem;
    }
    
    .hero-img-wrapper{
        min-height: 50vh;
        margin-top: 2rem;
        height: auto;
    }
    
    .hero-img1-wrapper{
        max-width: 80vw;
        bottom: 75px;
    }
    
    .hero-img2-wrapper{
        max-width: 50vw;
    }
    
}

/****************** partners ****************/

.partners-sec{
    padding: 4rem 0;
}

.partners-title{
    font-family: "Lexend", sans-serif;
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.partners-text{
    color: #444;
}

.partner-wrapper{
    padding: 2rem;
    /*border: 1px solid #AAA;*/
    border-radius: 1rem;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    box-shadow: 0 0 0 1px #17171733 inset, 0 2px 4px #0000001a, 0 8px 14px #00000026;
    
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}


.partner-logo{
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    border-radius: 0.5rem;
}

.partner-wrapper:hover{
    transform: translateY(-2%);
}

@media(max-width: 1400px){
    .partners-title{
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media(max-width: 960px){
    .partners-sec{
        padding-top: 0;
    }
    
    .partners-title{
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .partners-text{
        margin-bottom: 2rem;
    }
}

/*************** trails ************/

.trails-sec{
    padding: 4rem 0;
    background-color: var(--secondary-bg-color);
}

.trail-cards-row{
    margin-top: 4rem;
}

.trail-card-img{
    width: 100%;
    height: auto;
    min-height: 270px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
}

.trail-card-subtitle{
    color: #888;
    margin-bottom: 0;
}

.trail-card-title{
    font-size: 1.5rem;
    font-family: "Lexend", sans-serif;
    margin-bottom: 1rem;
}

.trail-card-text{
    margin-bottom: 2.5rem;
}

@media(max-width: 960px){
    .trail-cards-row{
        margin-top: 2.5rem;
    }
}

/************** gallery ***********/

.gallery-sec{
    padding: 4rem 0;
}

.gallery-wrapper{
    margin-top: 4rem;
}

.gallery-img{
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 1rem;
}


/************* news ***********/

.news-sec{
    padding: 4rem 0;
}

.news-row{
    margin-top: 4rem;
}

.news-data{
    background-color: #DDD;
}

.news-latest-img{
    border-radius: 1rem;
}

.news-date{
    padding: 0.5rem 1rem;
    background-color: #e3dfda;
    font-weight: 400;
    display: inline-block;
    border-radius: 1rem;
    letter-spacing: 0.035em;
    font-size: 0.8rem;
}

.news-title{
    font-family: "Lexend", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.news-text{
    margin-bottom: 1.8rem;
}

.news-img{
    border-radius: 1rem;
    margin-bottom: 1rem;
}

/************* events *************/


.events-sec{
    padding: 4rem 0;
}

.events-row{
    margin-top: 4.5rem;
}

.event-card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 0 1px #17171733 inset, 0 2px 4px #0000001a, 0 8px 14px #00000026;
    transform: translateY(0);
    transition: all 0.4s ease-in-out;
}

.event-card:hover{
    transform: translateY(-2%);
    box-shadow: 0 0 0 1px #17171733 inset, 0 2px 4px #0000001a, 0 20px 20px #00000026;
}

.event-card-header{
    position: relative;    
    overflow: hidden;
}

.event-card-img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    min-height: 250px;
    max-height: 250px;
}

.event-date-wrapper{
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
    background-color: #FFF;
    border: 1px solid #BBB;
    border-radius: 1rem;
    display: inline-block;
    padding: 1.5rem;
    text-align: center;
}

.event-day{
    color: #222;
    font-size: 0.85rem;
}

.event-date{
    /*margin: 0.1rem 0;*/
    font-size: 2rem;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    color: #222;
}

.event-year{
    font-size: 0.85rem;
    color: #222;
}

.event-card-body{
    padding: 2rem;
}

.event-title{
    color: inherit;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    
    display: block;
    margin-bottom: 1rem;
}
.event-location{
    color: #444;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.btn-events-all{
    border: 1px solid #222;
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
}

.btn-events-all:hover{
    box-shadow: 0 0 0 2px #222 inset;
}

@media(max-width: 960px){
    .events-row{
        margin-top: 3rem;
    }
}

/******************* FAQ *************/

.faq-sec{
    padding: 4rem 0;
    background-color: var(--secondary-bg-color);
}

.btn-faq-next{
    border: 1px solid #222;
    padding: 0.8rem 1.2rem;
    border-radius: 0.5rem;
}

.btn-faq-next:hover{
    box-shadow: 0 0 0 2px #222 inset;
}

.faq-wrapper{
    border-bottom: 1px solid #CCC;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.faq-wrapper:last-of-type{
    margin-bottom: 0;
}

.faq-question{
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.faq-answer{
    line-height: 1.8;
    color: #444;
}


/************** contact *********/

.contact-sec{
    padding: 4rem 0;
}

#contact_form{
    margin-top: 4rem;
}

.contact-label{
    font-size: 0.9rem;
}

.contact-input{
    background-color: transparent;
    padding: 1rem;
    border-color: #222;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.contact-input:focus{
    box-shadow: none;
    background-color: transparent;
    border-color: #222;
    outline-offset: 2px;
    outline-width: 2px;
    outline-style: solid;
    outline-color: #e75937;
}

.contact-input::placeholder{
    color: #999;
}

#contact_form .form-check-input{
    width: 1.5rem;
    height: 1.5rem;
    border-color: #222;
    margin-right: 0.7rem;
    background-color: transparent;
    vertical-align: -6px;
}

#contact_form .form-check-input:focus{
    box-shadow: none;
}

#contact_form .form-check-input:checked{
    background-color: #e75937;
}

.btn-contact-send{
    width: 100%;
    background-color: var(--primary-color);
    color: #FFF;
    padding: 1rem 0;
    font-size: 1.2rem;
    border-radius: 0.75rem;
}

.btn-contact-send:hover{
    background-color: var(--primary-color-hover);
    color: #FFF;
}

@media(max-width: 960px){
    #contact_form .form-check-label{
        font-size: 1rem;
    }
}