@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

@font-face {
    font-family: Quanaor;
    src: url('./qanoar.otf');
}

:root{
    --body-color: #101417;
    --primary-color: #C69749;
    --primary-font-family: "Comfortaa", serif;
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,body{
    background-color: var(--body-color);
    font-family: var(--primary-font-family);
}

a{
    text-decoration: none;
}

li{
    list-style-type:none ;
}


.container {
    max-width: 1380px;
    margin: 0 auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    background: #101417;
    width: 100%;
    z-index: 20;
  }
  

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav__list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-right: 3rem;
}

.nav__link{
    font-size: 1.25rem;
    font-weight: 800;
    padding: 1rem;
    text-transform: uppercase;
    color: #fff;
}

.nav__link.active{
    color: var(--primary-color);
    text-decoration:line-through;
}

.nav__close,
.nav__toggler{
  color: var(--primary-color);
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
}

.nav__close{
  position: absolute;
  top: 2rem;
  right: 2rem;
}


/* .section{
    min-height: 100vh;
} */

.hero__section{
    height: 100vh;
    width: 100%;
}


.brand__logo img{
    width: 80px;
}

.hero__container{
    position: relative;
    height: 70%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* filter: grayscale(100%); */
    /* display: grid;
    grid-template-columns: repeat(2,1fr); */
}

.hero__container::before{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left:0;
    background: url('../img/hero-bg.jpeg') center/cover no-repeat;
    display: block; 
    /*filter: grayscale(100%); */
    z-index:0; 
}

.hero__container::after{
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top:0;
    left:0;
    background: rgba(0, 0, 0, 0.75); 
    z-index: 1;
}

.hero__title{
    position: relative;
    /* padding-top: 8rem; */
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    z-index:2;
    font-family: "Quanaor";
    font-weight: 100;
    letter-spacing: 5px;
    /* line-height: 4.5rem; */
}

.hero__desc{
    text-align: center;
    max-width: 60%;
    color: #f5f5f5;
    margin: 0 auto;
    padding-top: 8rem;
}

.info__card{
    background-color: #C69749;
    max-width: 60%;
    margin: -4rem auto;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 3.5rem;
    z-index: 10;
    position: relative;
}

.info__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    
}

.info__item:not(:nth-last-child(1)) {
    border-right: 1px solid #f5f5f5;
    padding-right: 4rem;
}

.info__item i{
    font-size: 2rem;
}

.info__item p{
    font-size: 1.25rem;
}

.btn-flex{
    color: var(--primary-color);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease;
}

.btn-flex:hover{
    color: #f5f5f5;
    text-decoration: underline;

}

.btn{
    background: none;
    outline: none;
    border: 1px solid var(--primary-color);
    border-radius: 3rem;
    font-size: 1.25rem;
    padding: 1rem 5rem;
    color: #f5f5f5;
}

.btn-primary{
    background-color: var(--primary-color);
}

.btn-primary:hover{
    background-color: var(--body-color);
    color: var(--primary-color);
    cursor: pointer;
}

.header{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.header h1{
    font-size: 2.5rem;
    font-family: "Quanaor",sans-serif;
    color: var(--primary-color);
    font-weight: 100;
    letter-spacing: 5px;
    opacity: .7;
}

.header p{
    font-size: 1rem;
    color: #f5f5f5;
    max-width: 50%;
    opacity: 0.7;
}

.service__section{
    min-height: 100vh;
    padding-top: 4rem;
}

.service__list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-block: 4rem;
}

.service__item{
    border: 1px solid rgba(198, 151, 73,0.4);
    display: flex;
    flex-direction: column;
    transition: all 1s ease;

}

.service__item:hover{
    transform: scale(1.05);
}

.service__img{
    max-width: 100%;
}

.service__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service__data{
    text-align: center;
    padding: 1rem;
}

.service__data h3{
    color: var(--primary-color);
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.service__data p{
    color: #f5f5f5;
}

.about__header p{
    font-size: 1.5rem;
    max-width: 80%;
    line-height: 2.5rem;
    margin-bottom: 12rem;
}

.review__list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    margin-block-start: 4rem;
}

.review__img{
    width: 50px;
    height: 50px;

}

.review__item{
    display: grid;
    grid-template-columns: 10% 90%;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 1rem 2rem;
    /* background-color: #C69749; */
    border: 1px dashed var(--primary-color);
    border-radius: 1rem;
}

.review__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


.review__data{
    padding: 1rem;
}

.review__data h3{
    margin-top: 1rem;
    color: var(--primary-color);
}

.review__data p{
    color: var(--body-color);
}

.filler__card{
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    max-width: 60%;
    margin: 0 auto -8rem auto;
    position: relative;
    z-index: 10;
}

.filler__card h2{
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: "Quanaor",sans-serif;
    font-weight: 100;
    letter-spacing: 5px;
}

.filler__card p{
    font-size: 1.25rem;
    color: #f4f4f4;
    line-height: 2rem;
}

.contact__section{
    background-color: #f4f4f4;
    position: relative;
    padding-top: 15rem;
}

.contact__container{
    position: relative;
    z-index: 1;
}

.contact__section::before{
    content: "";
    position: absolute;
    background: url('../img/light-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    width: 100%;
}

.input-field, .input-area{
    background: none;
    border: none;
    outline: none;
    font-size: 1.25rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.input-area{
    margin-block: 2rem;
    width: 100%;
}

.contact__form{
    margin-top: 4rem;
}

.contact__form form{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.contact__header p{
    color: var(--body-color);
    margin-bottom: 4rem;
}

.feature__list{
    padding-block: 4rem;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1rem;
}

.feature__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    row-gap: 1rem;
    padding: 2rem;
}

.feature__item i{
    color: var(--primary-color);
    font-size: 3rem;
}

.footer__container{
    padding-block: 4rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    align-items: center;
    color: #f7f7f7;
}

.footer__container ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.footer__container li a{
    color: #f7f7f7;
    font-size: 1rem;
}

.social__list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
}

.social__list a i{
    color: var(--primary-color);

}

.social__list a{
    color: #f7f7f7;
}

footer img{
    width: 80px;
}

.copy{
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* SUBPAGE */

#subpage{
    background-color: #f4f4f4;
}

#subpage .hero__desc {
    color: var(--body-color);
  
}

#subpage .contact__section{
    padding-top: 0;
}

#subpage .contact__section::before{
    display: none;
}

#subpage::before {
    content: "";
    position: absolute;
    background: url(../img/light-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
}

#subpage .header p {

    color: var(--body-color);

}

/* #subpage .service__section{
    background-color: var(--body-color);
} */

#subpage footer{
    background-color: var(--body-color);
}

.experience__list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.exp__media{
    width: 300px;
    height: 300px;
    
}

.experience__item{
    justify-self: center;
}

.exp__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 50% 50%;
}

.exp__data{
    width: 300px;
    height: 300px;
    border-radius: 50% 50% 0 0;
    background-color: #C69749;
    color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.25rem;
    padding: 1rem;
}


.inv .exp__data p{
    
    color: var(--primary-color);
}

.inv .exp__data{
    border-radius: 0 0 50% 50%;
    background:none;
    border: 1px solid var(--primary-color);
}

.inv .exp__media img{
    border-radius: 50% 50% 0 0;
}

.inv{
    margin-top: 6rem;
}

.brand__list{
    padding-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.2rem;
}

.brand__list img{
    width: 220px;
}

.social__container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--body-color);
    padding: 3rem;
    gap: 5rem;
    border-radius: 1rem;
    max-width: fit-content;
    margin: 0 auto;
}

.social__container i{
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.5s ease;

}

#subpage .about__header p{
    margin-bottom: 4rem !important;
}

.social__container i:hover{
    color: #f5f5f5;
}

.contact__grid{
    margin-block: 6rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    justify-content: center;
    align-items: center;
}

.contact__grid h2{
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem 0 1rem 0;
    display: flex;
}
.contact__item{
    display: flex;
    flex-direction: row;
    font-size: 1.25rem;
    gap: 1rem;
}

.contact__item p{
    line-height: 2rem;
}

.contact__item i{
    color: var(--primary-color);
}

.service__title{
    color: var(--primary-color);
    font-family: "Quanaor", sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    opacity: .7;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.service__menu{
    margin-bottom: 4rem;
}

.service__menu ul{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.service__menu ul li{
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.service__menu p{
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color:rgba(0, 0, 0, 0.75);
}

/* .contact__grid > div{
    justify-self: center;
    text-align: center;
} */


.active-menu{
    right: 0 !important;
  }

@media screen and (max-width: 1280px){
    .nav__link{
        font-size: 1rem;
    }

    .hero__title{
        font-size: 2rem;
    }

    .info__card{
        max-width: 75%;
        padding: 2rem 4rem;
    }

    .service__list{
        gap: 1rem;
    }

    .service__data h3{
        font-size: 1.5rem;
    }

    .filler__card{
        max-width: 70%;
    }
}

@media screen and (max-width: 1092px){
    .filler__card {
        max-width: 85%;
    }

    .about__header p{
        font-size: 1.25rem ;
        max-width: 85% !important;
        line-height: 2.25rem;
    }

    .header h1{
        font-size: 2rem;
    }

    .header p{
        max-width: 60%;
    }

    .feature__item{
        padding: 1.5rem;
    }

    .info__card{
        max-width: 80%;
    }

    .info__card p{
        font-size: 1.15rem;
    }

    .exp__media {
        width: 250px;
        height: 250px;
    }

    .exp__data {
        width: 250px;
        height: 250px;
        font-size: 1rem;
    }

    .service__title{
        font-size: 1.5rem;
    }
}


@media screen and (max-width: 944px){

    .info__card {
        max-width: 90%;
    }

    .info__card p {
        font-size: 1rem;
    }

    .hero__title{
        font-size: 1.5rem;
    }

    .filler__card {
        max-width: 90%;
        padding: 2.5rem;
    }

    .filler__card h2{
        font-size: 1.5rem;
    }

    .service__data p{
        font-size: 0.85rem;
    }

    .service__data h3 {
        font-size: 1rem;
    }

    .btn-flex{
        font-size: 1rem;
    }

    .service__section{
        min-height: auto;
        margin-bottom: 4rem;
    }

    .exp__media {
        width: 200px;
        height: 200px;
    }

    .exp__data {
        width: 200px;
        height: 200px;
        font-size: 1rem;
    }

    .contact__grid h2 {
        font-size: 1.5rem;
    }

    .contact__item p {
        font-size: 1rem;
        line-height: 2rem;
    }
}


@media screen and (max-width: 768px){
    .nav__toggler{
        display: inline-flex;
    }

    .nav__list{
        flex-direction: column;
        padding-block-start: 4rem;
    }

    .nav__menu{
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 80%;
        height: 100%;
        box-shadow: -2px 0 4px hsla(var(--hue), 24%,15%.1);
        padding: 4rem 0 0 3rem;
        border-radius: 1rem 0 0 1rem;
        transition: .3s;
        z-index: var(--z-fixed);
    }

    .nav__close{
        display: inline-flex;
    }

    .info__item:not(:nth-last-child(1)) {
        padding-right: 2rem;
    }

    .info__card {
        padding: 1rem 1.5rem;
    }

    .hero__desc {
        max-width: 80%;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .header p {
        max-width: 80%;
    }

    .filler__card h2 {
        font-size: 1.25rem;
    }

    .filler__card p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .review__item {

        grid-template-columns: 1fr; 
    }

    .feature__item i {
        font-size: 2rem;
    }

    .feature__item h3 {
        font-size: 1rem;
    }

    .feature__item {
        padding: 1rem;
    }

    .contact__form form{
        width: 90%;
    }

    .btn {
       
        border-radius: 2rem;
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .experience__list {
        grid-template-columns: 1fr;
        margin-block-start: 4rem;
    }

    .inv {
        margin-top: 0;
        margin-left: 4rem;
    }

    .experience__item{
        display: flex;
        margin-bottom: 2rem;
    }

    .exp__data{
        border-radius: 50% 0 0 50%;
    }

    .inv .exp__data {
        border-radius: 0 50% 50% 0;
    }

    .inv .exp__media img {
        border-radius: 50% 0 0 50%;
    }

    .exp__media img {
        border-radius: 0 50% 50% 0;
    }

    .social__container i {
        font-size: 2rem;
    }

    .social__container{
        padding: 2rem;
    }

    .brand__list img {
        width: 180px;
    }

    .service__title{
        font-size: 1.25rem;
    }

    .service__menu ul li{
        font-size: 1rem;
    }

    .service__menu p{
        font-size: 1rem;
    }
    
    .contact__grid {
        
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 580px){
    .hero__title {
        font-size: 1.25rem;
    }

    .info__item:not(:nth-last-child(1)) {
        border-right: none;
        /* border-bottom: 1px solid #f5f5f5; */
        padding-right: 0;
        padding-bottom: 1rem;
    }

    .info__card{
        flex-direction: column;
    }

    .info__item {
       
        flex-direction: row;
       
        column-gap: 1rem;
        margin: 0 auto;
    }

    .service__list{
        grid-template-columns: 1fr;
    }

    .about__header p {
        font-size: 1rem;
        max-width: 90% !important;
        line-height: 2rem;
    }

    .review__list{
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
       
    }

    .feature__list {
        
        grid-template-columns: repeat(2,1fr);

    }

    .footer__container{
        grid-template-columns: 1fr;
    }

    .brand__logo img{
        width: 60px;
    }

    .footer__container ul {
        padding-block-start: 2rem;
        align-items: flex-start;
        gap: 1rem;
    }

    .social__list {
        padding-block-start: 2rem;
        align-items: flex-start;
    }

    .copy {
        font-size: 1rem;
    }

    /* .feature__item {
       
        flex-direction: row;
        justify-content: center;
        column-gap: 1rem;
    } */

    .hero__container{
        height: 60%;
    }

    .social__container i {
        font-size: 1.5rem;
    }

    .social__container{
        padding: 1.5rem;
    }

    .brand__list img {
        width: 120px;
    }

    .exp__media {
        width: 150px;
        height: 150px;
    }

    .exp__data {
        width: 150px;
        height: 150px;
        font-size: 0.8rem;
        padding: 0.8rem;
    }

    .inv {
        margin-left: 2rem;
    }

    .social__container{
        gap: 2rem;
    }

    .service__menu ul{
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 450px){
    .hero__title {
        font-size: 1rem;
    }

    .header h1 {
        font-size: 1.25rem;
    }

    .filler__card h2 {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 390px){
    .hero__title {
        font-size: 1rem;
    }

    .header h1 {
        font-size: 1rem;
    }

    .filler__card h2 {
        font-size: 1rem;
    }

    .header p {
        font-size: 0.8rem;

    }

    .about__header p{
        line-height: 1.5rem;
    }

    .filler__card p {
        font-size: 0.8rem;
        line-height: 1.5rem;
    }

    .review__data p{
        font-size: 0.8rem;
    }

    .input-field, .input-area {
        font-size: 1rem;
    }

    .filler__card{
        max-width: 100%;
    }

    .inv{
        margin-left: 0;
    }

    .experience__item{
        margin-bottom: 1rem;
    }

    .contact__item p {
        font-size: 0.8rem;
        line-height: 1.5rem;
    }

    .contact__grid h2{
        font-size: 1.15rem;
    }

}

@media screen and (max-width: 320px){
    .filler__card{
        padding: 1rem;
    }

    .feature__list{
        grid-template-columns: 1fr;
    }

    .info__item{
        flex-direction: column ;
    }

    .copy{
        font-size: 0.8rem;
    }

    .social__container i {
        font-size: 1rem;
    }

  
    .brand__list img {
        width: 80px;
    }

    .service__title{
        font-size: 1rem;
    }

    .service__menu ul li{
        font-size: 0.8rem;
    }

    .service__menu p{
        font-size: 0.8rem;
    }

    .experience__list{
        transform: scale(0.9);
    }

}


