
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html{
    font-size: 10px;
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins',sans-serif;
    color: var(--pure-white);
}

.main-container{
    overflow-x: hidden;
}



:root{
    /*  COLOR */
    --primary-color: #341d0a;
    --secondary-color: #b68834;
    --pure-white: #fff;
    --black-color: #222222;
    --star-yellow: #FFA500;
    /* FONT SIZE */
    --fs-h1: 6rem;
    --fs-h2: 3.9rem;
    --fs-h3: 1.8rem;
    --fs-1-8: 1.8rem;
    --fs-1-4: 1.4rem;
    /* FONT-WEIGHT */
    --fw-very-light: 200;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-500: 500;
    --fw-bold: 600;
    --fw-extra-bold: 700;
    --fw-black: 900;
    /* MARGIN */
    --common-margin-top: 8rem;
    /* PADDING */
    --common-padding-top: 20rem;
    --common-padding-top-1: 12rem;

}


.white-clr{
    color: var(--pure-white);
}

.black-clr{
    color: var(--black-color);
}

.yellow-clr{
    color: var(--star-yellow);
}

h2{
    font-size: var(--fs-h2);
    line-height: 1.4;
    font-weight: var(--fw-bold);
}

h3{
    font-size: var(--fs-h3);
    font-weight: var(--fw-bold);
}

p,h4{
    font-size: var(--fs-1-4);
}

p{
    font-weight: var(--fw-light);
    line-height: 1.6;
}

.common-padding{
    padding-top: var(--common-padding-top);
}

.responsive-container{
    max-width: 1140px;
    width: 90%;
    margin: auto;
}

.text-center{
    text-align: center;
}



.header-section{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    transition: all 0.5s;
}

.top-bar-img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    width: 100%;
    z-index: -1;
}

.header-section__top-bar-text{
    display: flex;
    justify-content: end;
}

.header-section__top-bar-text li{
    list-style: none;
}

.header-section__top-bar-text li:not(:last-child){
    margin-right: 3rem;
}



.header-section__nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.header-section__nav-mobile{
    display: none;
}

.fa-bars{
    font-size: 2.5rem;
}

.navbar__logo-div img{
    width: 12.5rem;
}

.navbar__links,.navbar__links-mobile{
    display: flex;
    align-items: center;
    position: relative;
}

.navbar__links li,.navbar__links-mobile li{
    list-style: none;
}

.navbar__links li:not(:last-of-type){
    margin-right: 3rem;
}

.navbar__links li a,.navbar__links-mobile li a{
    text-decoration: none;
    font-size: var(--fs-1-4);
}

.section-1{
    padding-top: 18rem;
    background-image: url(./Images/hero-section-banner.webp);
    background-size: cover;
    height: 68.1rem;
}

.section-1__span-text{
    font-size: var(--fs-1-4);
    font-weight: var(--fw-bold);
}

.section-1__main-heading{
    font-size: var(--fs-h1);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    margin: 0.75rem 0 2.5rem;
}

.section-1__button-white,.section-2-right__button-secondary {
    padding: 1rem 4.25rem;
    border-radius: 3rem;
    font-size: 1.4rem;
    border: 0;
    outline: 0;
    background-color: var(--pure-white);
    font-family: inherit;
    font-weight: var(--fw-500);
    cursor: pointer;
}



.section-2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: var(--common-padding-top-1);
}

.section-2-left,.section-2-right{
    flex-basis: 50%;
}

.section-2-left video{
    width: 100%;
    border-radius: 1rem;
}

.section-2-right{
    max-width: 45rem;
}

.section-2-right__span{
    letter-spacing: 0.2rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: var(--fw-light);
}

.section-2-right__h4{
    font-weight: var(--fw-500);
    padding: 1.5rem 0;
}

.section-2-right__p{
    padding-bottom: 2rem;
}

.section-2-right__button-secondary {
    background-color: var(--secondary-color);
    color: var(--pure-white);
}


.section-3{
    padding-top: var(--common-padding-top);
}

.section-3__p,.section-4__p,.section-5__p,.section-6__p{
    margin-top: 1rem;
}

.section-3__card-main-div{
    display: grid;
    grid-template-columns: repeat(auto-fit,34rem);
    gap: 4rem;
    margin-top: var(--common-margin-top);
    justify-content: center;
}

.section-3__card{
    padding: 2rem;
    box-shadow: 0 1rem 3rem 0 #b6883433;
    border-radius: 1rem;
    padding: 3rem 3rem;
    margin-bottom: 3rem;
}

.section-3__coffee-descp{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-3__coffee-descp p{
    font-size: var(--fs-1-8);
    font-weight: var(--fw-extra-bold);
    color: var(--secondary-color);
    margin-bottom: 2rem;
}



.section-4__img-div{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3rem;
    margin: var(--common-margin-top) 0 12rem;
}

.section-4__img-div img:nth-child(2){
    grid-column: 2/4;
}

.section-4__img-div img:nth-child(3){
    margin-top: -14rem;
}



.section-5 {
  background-color: #fdf7f0;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.form-container {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: left;
}

.form-container h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: #3e2c23;
}

.form-container p {
  text-align: center;
  margin-bottom: 2rem;
  color: #666;
  font-size: 1rem;
}

form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  flex: 1;
}

.input-group label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #333;
}

.input-group input,
.input-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #ffb347;
  outline: none;
}

.submit-btn {
  display: block;
  width: 100%;
  background-color: #ffb347;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #ffaa2a;
}

@media (max-width: 600px) {
  form .row {
    flex-direction: column;
  }
}





.footer{
    background-image: url(./Images/footer-banner.webp);
    margin-top: var(--common-margin-top);
    background-size: cover;
}

.footer .responsive-container{
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0 10rem;
    justify-content: space-between;
}

.footer__about-div{
    flex-basis: 35%;
}

.footer__newsletter{
    flex-basis: 30%;
}

.footer__follow-us{
    flex-basis: 10%;
}

.footer__about-div h4,.footer__newsletter h4,.footer__follow-us h4{
    font-size: 1.8rem;
    font-weight: var(--fw-bold);
}

.footer__about-div p:nth-of-type(1){
    margin: 2rem 0;
}

.footer_copyright-text span{
    font-weight: var(--fw-extra-bold);
    color: var(--secondary-color);
}

.footer__newsletter p,.footer__follow-us p{
    margin: 1rem 0 3rem;
}

.footer__search-div{
    position: relative;
}

.footer__search-div input{
    padding: 0.9rem;
    width: 100%;
    font-size: 1.6rem;
}

.footer__search-div button{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 5rem;
    height: 100%;
    border: 0;
    outline: 0;
    background-color: var(--secondary-color);
    cursor: pointer;
}

.footer__search-div button .fa-arrow-right{
    font-size: 1.6rem;
    color: var(--pure-white);
}

input:focus{
    outline: 0;
}

.footer__social-links{
    display: flex;
    justify-content: space-between;
}

.footer__social-links i{
    font-size: var(--fs-1-8);
    color: var(--pure-white);
}


@media screen and (max-width: 1141px) {
    :root{
        --common-padding-top-1: 10rem;
        --common-padding-top: 12rem;
        --fs-h2: 3rem;
    }

    .section-2,.section-5__testimonial-div{
        justify-content: center;
    }

    .section-2-left,.section-2-right{
        flex-basis: 80%;
    }

    .section-2-right{
         margin-top: 5rem;
    }

    .section-4__img-div img:nth-child(2){
        display: none;
    }

    .section-4__img-div img:nth-child(3){
        margin-top: 0;
    }

    .section-4__img-div{
        grid-template-columns: repeat(auto-fit,32.5rem);
        justify-content: center;
    }

    .section-4__img-div img{
        width: 100%;
        height: 100%;
    }

    .section-5__testimonial{
        flex-basis: 80%;
    }

    .section-5__testimonial-div{
        gap: 3rem;
    }

    .section-5__counter-div,.section-6__blog-div{
        justify-content: center;
    }

    .section-5__counter-div{
        gap: 7rem;
    }

    .section-6__blog{
        flex-basis: 100%;
    }

    .footer{
        margin-top: 0;
    }

    .footer .responsive-container{
        margin-top: 0;
        padding-top: 15rem;
        padding-bottom: 2rem;
        justify-content: center;
    }

    .footer__about-div,.footer__newsletter,.footer__follow-us{
        flex-basis: 80%;
        margin-bottom: 5rem;
    }

    .footer__social-links{
        justify-content: start;
    }

    .footer__social-links a{
        margin-right: 1.5rem;
    }
}


@media screen and (max-width: 600px){
    :root{
        --common-padding-top: 12rem;
        --common-padding-top-1: 10rem;
        --fs-h1: 5rem;
        --fs-h2: 3rem;
    }
    .header-section__nav{
        display: none;
    }
    .header-section__top-bar{
        display: none;
    }
    .header-section__nav-mobile{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-section__nav-mobile .navbar__links-div{
        display: none;
    }
    .fa-bars:hover + .navbar__links-div{
        display: flex;
        position: absolute;
        top: 9rem;
        background-color: #1f1311;
        width: 90%;
        padding: 5rem;
    }
    .navbar__links-div .navbar__links-mobile{
        flex-direction: column;
        gap: 5rem;
    }
    .section-1{
        padding-top: var(--common-padding-top);
        background-size: cover;
    }
    .section-2{
        padding-top: 0;
    }

    .section-5__testimonial p{
        font-size: 1.4rem;
    }

    .section-5__testimonial p:nth-of-type(1){
        font-size: 1.6rem;
    }
    
    i.fa-star{
        margin-right: 0.25rem;
        font-size: 1.2rem;
    }    
}