

/****************************/
/* HEADER */
/****************************/
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:  rgba(255, 255, 255, 0.2); 


    /* BECAUSE WE WANT HEADER TO BE STICKY */
    height: 9.6rem;
    padding: 0 4.8rem;
    position: relative;

}

.logo{
    height: 8%;
    width: 8rem;
    opacity: 60%;
    /* mix-blend-mode: color-burn; */
}

/****************************/
/* NAVIGATION */
/****************************/

.main-nav-list{
    list-style: none;
    display: flex;
    gap: 3.2rem;


}

.main-nav-link:link,
.main-nav-link:visited{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.8rem;
    transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active{
    color: #227f46;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited{
    padding: 1.2rem 2.4rem;
    border-radius: 9px;
    color: #fff;
    background-color: #227f46;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active{
    background-color: #1e703e;
}

.btn-mobile-nav{
    border: none;
    background: none;
    cursor: pointer;
    display: none;
}

.icon-mobile-nav{
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
    
}

.icon-mobile-nav[name="close-outline"]{
    display: none;
}

/* STICKY NAVIGATION */
.sticky .header{
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding-top: 0;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.06);
    padding-bottom: 0;
    z-index: 999;
}


.sticky .section-hero{
    margin-top: 9.6rem;

}
/****************************/
/* HERO SECTION */
/****************************/
.section-hero{
    /* background-color: #e1fdec; */
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.5),rgba(34, 127, 70,0.5) ), url('../img/aihikah/farmhouse-4.jpg');
    color: #222;
    padding: 4.8rem 0 9.6rem 0;
}

.hero{
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
}

.section-hero .heading-primary{
    color: #e8fef1;
}

.hero-description{
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 4.8rem;
    font-weight: 500;
    color: #e8fef1;
    font-size: 2.2rem;
}

.hero-img{
    width: 100%;
}


/****************************/
/* Accommodation */
/****************************/

.section-how{
    padding: 9.6rem 0;

}

.step-number{
    font-size: 8.6rem;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 1.2rem;
}

.step-description{
    font-size: 1.8rem;
    line-height: 1.8;
}

.step-image-box{
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.step-image-box:before,
.step-image-box:after{
    content: "";
    display: block;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
}

.step-image-box:before{ 
    width: 60%; 
    /* height: 60%; */
    
    /* 60% of Parent's Width */
     padding-bottom: 60%;
    /* background-color: #e1fdec; */
    z-index: -2;
}

.step-image-box:after{
    width: 45%;
    padding-bottom: 45%;
    /* background-color: #e4fdee; */
    z-index: -1;
    
} 


.step-img{
    overflow: hidden;
    transition: all 0.4s;
    width: 70%;
    border-radius: 9px;
    
    
}

.step-img:hover{
    display: inline;
    transform: scale(1.1);
}


.feature-icon{
   color: #1e703e;
   height: 3.2rem;
   width: 3.2rem;
   margin-bottom: 3.2rem; 
   background-color: #e1fdec;
   padding: 1.6rem;
   border-radius: 50%;
}

.feature-title{
    font-size: 2.4rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 1.6rem;
    line-height: 1.3;
}

.feature-text{
    font-size: 1.8rem;
    line-height: 1.7; 

}

/****************************/
/* CTA SECTION */
/****************************/
.section-cta{
    padding: 4.8rem 0 12.8rem;
}

.cta{
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* background-color: #e67e22; */
    box-shadow: 0 2.4rem 4.8rem rgba(0,0,0,0.015);
    border-radius: 11px;

    background-image: linear-gradient(to right bottom, rgba(42, 156, 86, 0.9) ,rgba(30, 112, 62, 0.9));
    overflow: hidden;

    /* temp */
    /* height: 50rem; */

}

.cta-text-box{
    color: #092213;
    padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}

.cta-text{
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4.8rem;
}

.cta .heading-secondary{
    color: #0c2c18;
    margin-bottom: 3.2rem;
}

.cta-img-box{
    background-image: linear-gradient(to right bottom, rgba(42, 156, 86, 0.2) ,rgba(30, 112, 62, 0.4)), url('../img/farmhouse.jpeg');
    background-size: cover;
    background-position: center;
}

.cta-form{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 3.2rem;
    row-gap: 2.4rem;
}

.cta-form label{
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.cta-form input, 
.cta-form textarea,
.cta-form select{
    width: 100%;
    padding: 1.2rem;
    font-size: 1.8rem;
    color: inherit;
    font-family: inherit;

    border: none;
    background-color: #fdf2e9;
    border-radius: 9px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.10)

}

.cta-form input::placeholder,
.cta-form textarea::placeholder{
    color: #aaa; 
}


.cta *:focus {
    outline: none;
    box-shadow: 0 0 0 0.4rem rgba(253, 242, 233, 0.5);
}

/****************************/
/* CTA SECTION */
/****************************/
.footer{
    padding: 12.8rem 0;
    border-top: 1px solid #eee
}

.grid-footer{
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col{
    display: flex;
    flex-direction: column;
}

.footer-heading{
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.footer-logo{
    display: block;
    margin-bottom: 3.2rem;
    mix-blend-mode: color-burn;
    height: 12rem;
    width: 12rem;

}



.social-links{
    list-style: none;
    display: flex;
    gap: 2.4rem;
}

.social-icon{
    height: 2.4rem;
    width: 2.4rem;
}

.copywright{
    font-size: 1.4rem;
    color: #767676;
    line-height: 1.6;
    margin-top: auto;
}

.contacts{
    font-size: 1.6rem;
    font-style: normal;
    line-height: 1.6;
}

.address{
    margin-bottom: 2.4rem;
}

.footer-nav{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited{
    font-size: 1.6rem;
    color: #767676;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active{
    color: #555;
}

