 html {
    scroll-behavior: smooth;
 }
 * { margin: 0; padding: 0; box-sizing: border-box; }
body {
     background-color:#fbf6ef ;
    font-weight: 300;
}

.hero{
    position: relative;
    overflow: hidden;
    background-color: #fbf6ef;
     min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 40px;
      z-index: 0;
}
   
  
  

  
 
  .container {
    max-width: 600px;
  }
  
  
  .fadein { 
     opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.1s;
    font-family: Playfairdisplay;
    font-size: 72px;
    font-weight: 300;
    color: #4a342a;
    letter-spacing: 6px;
    margin-bottom: 24px;
  }
  .info {
     opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.3s;
    font-size: 14px;
    color: #8a7568;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: poppins;
  }
  .btn {
     opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
    margin-top: 40px;
   padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    margin-right: 16px;
    font-family: poppins ;
    background: #b5651d;
    color: #fbf6ef;
    font-family: poppins;
    border: none;
    


  }
  .btn:hover {
    background:#8f4e16;
    cursor: pointer; }
.btw {
     opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s;
     margin-top: 40px;
   padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-block;
    margin-right: 16px;
    background: transparent;
    color: #b5651d;
    Border: 2px solid #b5651d ;
    font-family: poppins ;




}
.btw:hover {
    background:#8f4e16 ;
    color:#fbf6ef ;
    border: 2px solid #8f4e16;
}

.int {
     opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.7s;
    margin-top: 48px;
    font-size: 14px;
    color: #8a7568;
    letter-spacing: 3px;
    text-transform: capitalize;
    font-family: poppins;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #ece3da;
    background-color: #fbf6ef;
    padding: 20px 60px;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
   
}



.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo h2 {
    font-family: "Playfairdisplay", serif;
    font-size: 38px;
    font-weight: 700;
    color: #3d2b1f;
}

.logo p {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b5651d;
    margin-top: 5px;
    margin-left: 5px;
}



#navbar ul {
    display: flex;
    align-items: center;
    gap: 36px;
}

#navbar ul li {
    list-style: none;
}

#navbar ul li a {
    position: relative;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #3d2b1f;
    transition: color 0.3s ease;
}

#navbar ul li a:hover {
    color: #b5651d;
}

.bestsellers {
    background-color: #fbf6ef;
    padding: 180px 80px 100px;
}
.sectiontitle{
    text-align: center;
    margin-bottom: 60px;
}
.sectiontitle h2 {
    font-family: "playfair Display";
    font-size: 42px;
    font-weight: 700;
    color: #3d2b1f;
    margin-bottom: 16px;
    text-transform: capitalize;
}
.sectiontitle p {
     font-family: poppins;
    font-size: 13px;
    color: #8a7568;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
    text-transform: uppercase;
}

.product {
    background: #fbf6ef;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 24px;
    transition: .3s ease;
}




.cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}




.product:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.product img{
    width: calc(100% - 30px);
    height: 220px;
    object-fit: cover;
    margin: 15px;
    border-radius: 12px;
}

.product h3{
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: #3d2b1f;
    margin-top: 20px;
    margin-bottom: 12px;
}

.product p{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #8a7568;
    line-height: 1.7;
    padding: 0 20px;
    margin-bottom: 20px;
}

.product span{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #b5651d;
}


.menu-btn{
    text-align: center;
    margin-top: 60px;
    text-transform: capitalize;
}
.title{
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    color: #3d2b1f;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.about{
    background-color: #fbf6ef;
    padding: 120px 80px;

}

.about-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.about-content{
    flex: 1;
}

.about-content h2{
    font-family: "PlayfairDisplay", serif;
    font-size: 46px;
    color: #3d2b1f;
    margin-bottom: 40px;
}

.about-content p{
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #8a7568;
    line-height: 1.9;
    text-align: left;
}

.about-image{
    flex: 1;
}

.about-image img{
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.contact{
    background-color:#fbf6ef;
    padding: 120px 80px;
    
}

.contact-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
    margin-top: 60px;
}

.contact-info{
    flex: 1;
}


.contact-info p{
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #8a7568;
    line-height: 1.9;
    margin-bottom: 25px;
}

.contact-info strong{
    color: #3d2b1f;
}

.contact-map{
    flex: 1;
}

.contact-map iframe{
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.contact-form{
    max-width: 700px;
    margin: 80px auto 0;
    text-align: center;
    margin-bottom: 80px;
}

.contact-form h3{
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #3d2b1f;
    margin-bottom: 15px;
}

.contact-form p{
    font-family: "Poppins", sans-serif;
    color: #8a7568;
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e6ddd2;
    border-radius: 12px;
    background: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    outline: none;
    transition: .3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #b5651d;
}

.contact-form textarea{
    resize: none;
}

.contact-form .btn{
    width: fit-content;
    margin: 15px auto 0;
    opacity: 1;
    animation: none;
}
.footer{
    background: #3d2b1f;
    color: #fbf6ef;
    padding: 50px 80px 30px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-social{
    flex: 1;
}

.footer-logo h2{
    font-family: "PlayfairDisplay", serif;
    font-size: 38px;
    margin-bottom: 8px;
}

.footer-logo p{
    font-family: "Poppins", sans-serif;
    letter-spacing: 5px;
    color: #d8b08c;
    margin-bottom: 20px;
}

.footer-logo span{
    display: block;
    font-family: "Poppins", sans-serif;
    color: #d7ccc4;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h3,
.footer-social h3{
    font-family: "PlayfairDisplay", serif;
    margin-bottom: 20px;
}

.footer-links a,
.footer-social a{
    display: block;
    color: #d7ccc4;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    margin-bottom: 12px;
    transition: .3s;
}

.footer-links a:hover,
.footer-social a:hover{
    color: #b5651d;
    padding-left: 6px;
}

.footer hr{
    border: none;
    height: 1px;
    background: rgba(255,255,255,.15);
    margin-bottom: 20px;
}

.copyright{
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #d7ccc4;
    font-size: 14px;
}


@media (max-width: 1024px) {

    .header {
        padding: 16px 30px;
    }

    .bestsellers,
    .about,
    .contact {
        padding: 100px 40px 60px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-container,
    .contact-container {
        gap: 40px;
    }

    .footer {
        padding: 50px 40px 30px;
    }

    .footer-container {
        gap: 30px;
    }
}



@media (max-width: 768px) {

    .fadein {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .header {
        padding: 14px 20px;
    }

    .navbar {
        flex-direction: column;
        gap: 16px;
        padding: 10px;
    }

    #navbar ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 160px 20px 40px;
    }

    .bestsellers,
    .about,
    .contact {
        padding: 220px 20px 60px;
    }

    .sectiontitle h2 {
        font-size: 32px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-container,
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content p {
        text-align: center;
    }

    .about-image img,
    .contact-map iframe {
        max-width: 100%;
        height: 280px;
    }

    .contact-form {
        margin-top: 40px;
        padding: 0 10px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-logo span {
        max-width: 100%;
        margin: 0 auto;
    }
}



@media (max-width: 480px) {

    .fadein {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .info,
    .int {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .btn,
    .btw {
        padding: 12px 20px;
        font-size: 14px;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    .logo h2 {
        font-size: 28px;
    }

    .sectiontitle h2 {
        font-size: 26px;
    }

    .product h3 {
        font-size: 18px;
    }

    .product p {
        font-size: 13px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
}