@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    list-style: none;
    text-decoration: none;
}
/*img{
    width: 100%;
}*/
body{
    color: #121011;
}
header{
    position: relative;
    width: 100%;
    top: 10;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 18px 100px;
}

.annonce {
    background-color: #121011;
    color: #fff;
    padding: 0.5rem;
    text-align: center;
}

.annonce span {
    color: #d6a9a9;
    font-weight: bold;
}

.logo{
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #121011;
    text-transform: uppercase;
}
.logo .bx{
    font-size: 24px;
    color: #d6a9a9;
}



.navbar{
    display: flex;
}
.navbar a{
    padding: 8px 17px;
    color: #121011;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
}
.navbar a:hover{
    color: #d6a9a9b4;
}
#menu-icon{
    font-size: 24px;
    color: #121011;
    z-index: 10001;
    cursor: pointer;
    display: none;
}
.header-icon{
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    column-gap: 0.8rem;
    align-items: center;
}
.header-icon .bx{
    color: #fff;
    padding: 7px;
    background: #d6a9a9;
    border-radius: 0.9rem;
}
.header-icon .bx:hover{
    background: #d6a9a9b4;
}
.header-icon i{
    position: relative;
}
.header-icon span{
    position: absolute;
    top: -7px;
    right: -7px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #121011;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 500;
}

.search-box{
    position: relative;
    width: 200px;
    box-shadow: 0 0 16px 1px rgb(14 52 54 / 15%);
}
.search-box input{
    border: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    padding: 0px;
    color: #d6a9a9;
}
.search-box input::placeholder{
    font-size: 1rem;
    font-weight: 500;
}
/*
.video-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f0f0f0;
    display: flex;
}

video {
    width: 100%;
    height: 30rem;
}
img{
    width: 28%;
    height: 25rem;
    margin-top: 2.5rem;
}
*/
.home{
    width: 100%;
    min-height: 740px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(17rem, auto));
    gap: 1.5rem;
    background: #f0e4d7;
}
.home img{
    width: 60%;
    height: 60%;
    margin-left: 3.5rem;
    animation:  float 3s linear infinite;
}
.home-text{
    margin-left: 5rem;
}
.home-text h3{
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #d6a9a9;}
.home-text h1{
    font-size: 3.4rem;
    letter-spacing: 1px;
}
.home-text span{
    color: #d6a9a9;
}
.home-text p{
    max-width: 80%;
    font-size: 0.9rem;
    margin: 0.5rem 0 1.5rem;
}
.btn{
    padding: 8px 20px;
    border-radius: 20px;
    background: #d6a9a9;
    color: #fff;
    font-weight: 500;
}
.btn:hover{
    background: #d6a9a9b4;
}
@keyframes float{
    0%,100%{
        transform: translateY(-3.5rem);
    }
    50%{
        transform: translateY(1rem);
    }
}
.about{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(17rem, auto));
    gap: 1.5rem;
    margin: 3.5rem;
}
.about-img img{
    width: 60%;
    height: auto;
    max-width: 100%;
}
.about-text{
    font-size: 1.5rem;
    text-transform: uppercase;
}
.about-text p{
    font-size: 0.9rem;
    margin: 0.5rem 0 1.1rem;
}
.heading{
    text-align: center;
}
.heading h2{
    font-size: 1.5rem;
    text-transform: uppercase;
}
.products-container{
    text-align: start;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 1.5rem;
    margin: 2rem;  
}
.products-container .box{
    position: relative;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.5rem;
    box-shadow: 0 0 16px 1px rgb(14 52 54 / 15%);
}
.products-container .box img{
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    background: #f0e4d7;
    border-radius: 0.5rem;
}
.products-container .box:hover img{
    -webkit-transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
    transition: 0.4s all linear;
}
.products-container .box h2{
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0.5rem 0 0 0.5rem;
}
.products-container .box span{
    font-size: 1rem;
    font-weight: 600;
    color: #d6a9a9;
}
.products-container .box .bx{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    background: #d6a9a9;
    border-radius: 0.5rem 0 0.5rem 0;
    cursor: pointer;
}
.products-container .box .bx:hover{
    background: #d6a9a9b4;
}
.newsletter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 2rem;
}
.newsletter h2{
    font-size: 1.8rem;
    text-transform: uppercase;
}
.newsletter form{
    background: #fff;
    padding: 10px;
    border-radius: 0.5rem;
    box-shadow: 0 0 16px 1px rgb(14 52 54 / 15%);
}
.newsletter form input{
    width: 200px;
    border: none;
    outline: none;
    background: transparent;
}
.newsletter form .email-btn{
    background: #d6a9a9;
    padding: 8px 14px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    max-width: 115px;
    border-radius: 0.5rem;
}
/* Footer Styles */
footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
}

.footer-box {
    padding: 1rem;
}

.footer-box .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 0.5rem;
}

.footer-box a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-box a:hover {
    color: #d6a9a9;
}

.social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social a i {
    font-size: 20px;
    padding: 10px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s;
}

.social a i:hover {
    background: #d6a9a9;
    color: #fff;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  header {
    padding: 20px;
  }

  .navbar {
    display: none;
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    display: block;
    padding: 10px;
    margin: 5px 0;
  }

  #menu-icon {
    display: initial;
  }

  .search-box {
    display: none;
  }

  .home-img,
  .about-img {
    margin-top: 40px;
  }

  .about-img img{
    width: 100%;
  }

  ul.navbar {
    position: absolute;
    z-index: 200;
    box-shadow: 2px 2px 0 #BEBEBE;
    width: 35%;
    display:none;
  }
  
  ul.navbar li {
    float: none;
    margin: 0;
  }
  
  ul.navbar li a {
    border-bottom: 1px dotted #ccc;
    border-right: none;
    color: #000;
    padding: 15px 30px;
  }
  
  ul.navbar li a:hover {
    color: #d6a9a9;
    background: #eeeeee;
  }
  
  /* sub display*/
  ul.primary li:hover ul {
    display: block;
    background: #fff;
  }


  .footer {
    grid-template-columns: 1fr;
    text-align: center;
}

.social {
    justify-content: center;
}
}

