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

body{
  height: 140vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-size: cover;
  word-spacing: 3px;
  background-color:rgb(255, 238, 217) ;
}

/* -----main colors----- */

/* rgba(244, 195, 136, 1) */
/* rgba(136, 165, 173, 1) */
/* rgba(240, 180, 108, 1) */



/* -----header----- */

.header{
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  opacity: 0.9;
}

.header-inner{
  width: 100%;
  margin: auto;
  background: rgb(251, 217, 155);
  height: 60px;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.home-icon{
  display: flex;
  align-items: center;
  margin-left: 40px;
  color: #5b3c12;
  font-size: 35px;
}

input{
  align-items: center;
}



.header-icon{
  display:flex;
  align-items:center;
  gap:20px;
  margin-left:40px;
}




.field{
  position:relative;
}



.field input{
  width:220px;
  padding:8px 10px 8px 35px;
  border-radius:20px;
  border:1.5px solid #c49c56;
  outline:none;
  font-size:14px;
}



.field i{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  color:#8a5b18;
  font-size:14px;
}


.nav{
  list-style: none;
  display: flex;
  margin-right: 80px;
  text-transform: capitalize;

}

.nav li{
  margin-left: 20px;
}

.nav a{
  text-decoration: none;
  color: rgb(163, 100, 22);
  font-size: 18px;
  font-weight: 700;
  position: relative; 
}


.nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2;
  width: 100%;
  height: 2px;
  background: #624900;

  transform: scaleX(0);      
  transform-origin: left; 
  transition: transform 0.4s ease;
}

.nav a:hover::after{
  transform: scaleX(1);    
}




.dropdown{
  position: relative;
}




.dropdown-menu{
  position: absolute;
  top: 35px;
  left: 0;

  list-style: none;
  background: white;
  padding: 15px 0;
  width: 160px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
}

/* menu items */
.dropdown-menu li{
  padding: 8px 5px;
}

.dropdown-menu a{
  text-decoration: none;
  color: rgb(163,100,22);
  font-weight: 500;
}

/* show menu */
.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}






/* -----hero banner----- */

.store-hero{
    position: relative;
    width: 100%;
    height: 100vh;
    margin: auto;
    overflow: hidden;
}

.store-hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.store-hero-content{
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    align-items: center; 
    justify-content: center;
    
}

.store-hero-content::selection{
  background: rgb(251, 217, 155);
  color: rgb(163,100,22);
}

.store-hero-title{
    font-size: 44px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform:uppercase;
    word-spacing: 10px;
}



.store-hero-text{
    color: #f8f1e7;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 35px;
    width: 100%;
    word-spacing: 2px;
}

.store-hero-btn{
    display: inline-block;
    min-width: 190px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    border-radius: 20px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    margin-right: 16px;
    transition: 0.3s ease;
}


.btn1{
    background-color: rgb(251, 217, 155);
    color: #6b4113;
}

.btn1:hover{
    background-color: rgb(251, 217, 155);
    color: #5b3c12;
    opacity: .7;
}

.btn2{
    color: rgb(251, 217, 155);
    background-color: 5b3c12;
    border: rgb(251, 217, 155) solid 1px;
}

.btn2:hover{
    background-color: #6b4113;
    color: #6b4113;
    opacity: .7;
    color: rgb(251, 217, 155);
}







/* -------- features section -------- */

.features-section{
    width: 100%;
    height: 100vh;
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.features-title{
    font-size: 42px;
    color: #5b3c12;
    margin-bottom: 10px;
    text-transform: capitalize;
    margin-top: 30px;
}

.features-line{
    display: block;
    width: 170px;
    height: 3px;
    background-color: rgb(163, 100, 22);
    margin: 0 auto 50px;
    margin-bottom: 60px;
}

.features-container{
    width: 80%;
    margin: auto;
}

.features-parent{
    overflow: auto;
}

.features-item{
    float: left;
    width: 30%;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(163, 100, 22, 0.618);
    border-radius: 10px;
    position: relative;
    background-color: #fffaf2;
    transition: 0.4s;
}

.features-item-center{
    margin: 0 5%;
}

.feature-icon{
    font-size: 34px;
    color: #a36416;
    margin-bottom: 20px;
}



.features-info-title{
    font-size: 22px;
    color: #2d1a06;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.features-info-p{
    color: rgba(45, 26, 6, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-transform: capitalize;
    word-spacing: 1px;
}

.features-link{
    text-decoration: none;
    color: #7b4d13;
    font-size: 18px;
    font-weight: 700;
}


.features-item:hover .features-info-title {
    color: #5b3c12;
}

.features-item:hover .feature-icon {
    color: #624900;
}

.features-item:hover .features-link {
    color: #5b3c12;
}

.features-item:hover .features-info-title .features-info-p{
    color: #5b3c12;
}

.features-item:hover .features-info-p{
    color: #5b3c12;
}


.features-item::after{
    content: "";
    position: absolute;

    width: 0;
    height: 0;

    top: 0;
    left: 0;

    background-color: rgba(255, 219, 113, 0.316);
    transition: .7s;
    border-radius: 10px;
    z-index: 0;
}

.features-item:hover::after{
    width: 100%;
    height: 100%;
}

.features-item > *{
    position: relative;
    z-index: 1;
}










/* -------- featured furniture section -------- */

.featured-furniture-section{
  width: 100%;
  margin: auto;
  height: 115vh;
  background-color: #fbdca7a2;
}

.furniture-section{
  padding: 40px 0 70px;
  text-align: center;
  width: 80%;
  margin: auto;
}

.furniture-section-title{
  font-size: 42px;
  color: #5b3c12;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.furniture-section-line{
  display: block;
    width: 170px;
  height: 3px;
  background-color: rgb(163, 100, 22);
  margin: 0 auto 50px;
}


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

.furniture-card{
  position: relative;
  height: 260px;
  overflow: hidden;
}

.furniture-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.furniture-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
  z-index: 2;
}

.furniture-card:hover .furniture-overlay{
  opacity: 1;
}


.furniture-card-title{
  font-size: 33px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-weight: 800;
}

.furniture-card-text{
  font-size: 18px;
  color: #f8f1e7;
  margin-bottom: 25px;
  text-transform:lowercase;
  font-weight: 500;
}

.furniture-icons{
  display: flex;
  gap: 10px;
}

.furniture-icons a{
  width: 50px;
  height: 42px;
  background: rgba(255, 255, 255, 0.95);
  color: #7b4d13;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px;
  transition: 0.3s ease;
}










/* -------- offers section -------- */

.offers-section{
    width: 100%;
    padding: 70px 0;
    text-align: center;
    margin-top: 60px;
}

.offers-title{
    font-size: 42px;
    color: #5b3c12;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.offers-line{
    display: block;
    width: 90px;
    height: 3px;
    background-color: rgb(163, 100, 22);
    margin: 0 auto 50px;
}

.offers-container{
    width: 80%;
    margin: auto;
    margin-bottom: 70px;

}

.offers-parent{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:40px;

}

.offers-item{
    padding: 25px 18px;
    text-align: left;
    border: 1.5px solid rgba(163, 100, 22, 0.583);
    border-radius: 10px;
    position: relative;
    background-color: #fffaf2;
    transition: 0.4s;
    min-height: 220px;
}

.offers-item-center{
    margin: 0;
}

.offers-item-top{
    margin-top: 0;
}

.offer-icon{
    font-size: 34px;
    color: #a36416;
    margin-bottom: 18px;
    float: left;
}

.offers-info{
  margin-left: 55px;
}

.offers-info-title{
    font-size: 22px;
    color: #854f15;
    line-height: 1.3;
    transition: 0.3s;
}

.offers-info-p{
    color: rgba(45, 26, 6, 0.65);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 600;
    transition: 0.3s;
    margin-top: 10px;
}



.offers-item:hover .offers-info-title{
    color: #5b3c12;
}

.offers-item:hover .offer-icon{
    color: #624900;
}

.offers-item:hover .offers-info-p{
    color: #3d2508;
}


.offers-item::after{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    background-color: rgba(255, 219, 113, 0.316);
    transition: 1s;
    border-radius: 10px;
    z-index: 0;
}

.offers-item:hover::after{
    width: 100%;
    height: 100%;
}

.offers-item > *{
    position: relative;
    z-index: 1;
}






/* ----- why choose us section ----- */

.choose-section{
  width: 100%;
  padding: 80px 0;
  height: 100vh;

}

.choose-container{
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;

}

.choose-content{
  width: 55%;
}

.choose-title{
  font-size: 48px;
  color: #5b3c12;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.choose-line{
  display: block;
  width: 100px;
  height: 3px;
  background-color: rgb(163, 100, 22);
  margin-bottom: 44px;
}

.choose-text{
  font-size: 22px;
  line-height: 1.8;
  color: rgba(112, 60, 5, 0.65);
  margin-bottom: 44px;
  width: 95%;
  word-spacing:1.5px;
  line-height: 1.3;
  font-weight:600;
}

.choose-list{
  list-style: none;
  margin: 0;
}

.choose-list li{
  font-size: 22px;
  color: #5b3c12;
  margin-bottom: 28px;
  font-weight: 600;
  line-height: 1.6;

  display: flex;
  align-items: center;
  gap: 0px;   
}

.choose-list li i{
  color: rgb(163, 100, 22);
  font-size: 18px;
}


.choose-image-box{
  width: 30%;
  text-align: center;
}

.choose-image-box img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.choose-dots{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.choose-dot{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #c9c9c9;
  display: inline-block;
  transition: 0.3s ease;
}

.choose-dot.active{
  background-color: #7b4d13;
}

.choose-dot:hover{
  background-color: #7b4d13;
}









/* -------- stats section -------- */

.stats-section{
  width: 100%;
  height: 420px;
  background-image: url("../images/stats-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin-top:80px ;
}

.bg-stats-section{
  height: 63vh;
}

.stats-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
}

.stats-container{
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  float: left;
  text-align: center;
}

.stats-item{
  color: #ffffff;
}

.stats-icon{
  font-size: 36px;
  color: rgb(251, 217, 155);
  margin-bottom: 18px;
}

.stats-number{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.stats-text{
  font-size: 20px;
  font-weight: 700;
  text-transform: lowercase;
}







/* -------- pricing section -------- */

.pricing-section{
    width: 100%;
    text-align: center;
    height: 90vh;
}

.pricing-title{
    font-size: 42px;
    color: #5b3c12;
    margin-bottom: 10px;
    text-transform: lowercase;
}

.pricing-line{
    display: block;
    width: 110px;
    height: 3px;
    background-color: rgb(163, 100, 22);
    margin: 0 auto 50px;
}

.pricing-container{
    width: 80%;
    margin: auto;
    overflow: auto;
}

.pricing-card{
    float: left;
    width: 30%;
    padding: 40px 20px;
    border: 1.5px solid rgba(163, 100, 22, 0.35);
    border-radius: 10px;
    position: relative;
    background-color: #fffaf2;
    text-align: center;
    overflow: hidden;
}

.pricing-card-center{
    margin: 0 5%;
}

.pricing-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 219, 113, 0.461);
    transition: 0.5s;
    z-index: 0;
}

.pricing-card:hover::after{
    height: 100%;
}

.pricing-card > *{
    position: relative;
    z-index: 1;
}

.pricing-card-title{
    font-size: 22px;
    color: rgba(148, 85, 8, 0.795);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 28px;
    transition: 0.4s;
}

.pricing-circle{
    width: 135px;
    height: 135px;
    border: 2px solid rgba(163, 100, 22, 0.45);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}

.pricing-price{
    font-size: 33px;
    font-weight: 800;
    color: #623d0f;
    line-height: 1;
}

.pricing-unit{
    font-size: 18px;
    font-weight: 700;
    color: #623d0f;
    margin-top: 8px;
    text-transform: uppercase;
}

.pricing-text{
    font-size: 22px;
    color: #623d0f;
    font-weight: 600;
    margin-bottom: 22px;
    text-transform: capitalize;
}

.pricing-btn{
    width: 210px;
    height: 48px;
    border: 1.5px solid rgba(163, 100, 22, 0.45);
    border-radius: 12px;
    background-color: #fff;
    color: #5b3c12;
    font-size: 18px;
    font-weight: 500;
}

.pricing-card:hover .pricing-card-title{
    color: rgb(112, 60, 5);
}

.pricing-card:hover .pricing-circle{
    border-color: rgb(112, 60, 5);
}







/* -------- testimonials section -------- */

.bg-testimonials-section{
    height: 50vh;
}

.testimonials-section{
  width: 100%;
  height: 420px;
  background-image: url("../images/testimonial-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.testimonials-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.testimonials-container{
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.testimonial-item{
  color: #fff;
}

.testimonial-header{
  overflow: hidden;
  margin-bottom: 15px;
}

.testimonial-header img{
  float: left;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover; 
}

.testimonial-info{
  float: left;
  margin-left: 15px;
  margin-top: 8px;
}

.testimonial-name{
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 7px;
  margin-top: 6px;
}

.testimonial-role{
  font-size: 18px;
  color: rgb(251, 217, 155);
  font-weight: 700;
  display: block;
}

.testimonial-text{
  clear: both;
  font-size: 18px;
  line-height: 1.6;
  max-width: 90%;
  text-transform: capitalize;
  word-spacing: 3px;
  color: #fff;
  font-weight: 500;

}







/* ----- our team section ----- */

.our-team-section{
    width: 100%;
    padding: 80px 0;
    text-align: center;
}

.our-team-title{
    font-size: 42px;
    color: #5b3c12;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.our-team-line{
    display: block;
    width: 110px;
    height: 3px;
    background-color: rgb(163, 100, 22);
    margin: 0 auto 50px;
}

.our-team-container{
    width: 80%;
    margin: auto;
    height: 50%;
}

.our-team-parent{
    overflow: auto;
}

.our-team-item{
    float: left;
    width: 30%;
    /* aspect-ratio: 1 / 1; */
    background-color: #fff;
    border-radius: 10px;
    padding: 18px 15px;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.our-team-item-center{
    margin: 0 5%;
}

.our-team-image-box{
    width: 85%;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.our-team-img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}


.our-team-overlay{
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.our-team-item:hover .our-team-overlay{
    opacity: 1;
    visibility: visible;
}


.our-team-overlay i{
    width: 50px;
    height: 50px;
    background-color: rgb(251, 217, 155);
    color: #5b3c12;
    text-decoration: none;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: 0.3s;
}


.our-team-info{
    margin-top: 25px;
}

.our-team-name{
    font-size: 22px;
    color: #2d1a06;
    margin-bottom: 8px;
    text-transform: capitalize;
    transition: 0.4s;
    margin-bottom: 20px;
    font-weight: 900;

}

.our-team-role{
    font-size: 16px;
    color: rgba(45, 26, 6, 0.65);
    text-transform: uppercase;
    font-weight: 800;
    transition: 0.4s;
}

.our-team-item:hover .our-team-name{
    color: #7b4d13;
}

.our-team-item:hover .our-team-role{
    color: rgb(163, 100, 22);
}

.our-team-item::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 219, 113, 0.483);
    transition: 0.5s;
    border-radius: 10px;
    z-index: 0;
}

.our-team-item:hover::after{
    height: 100%;
}

.our-team-item > *{
    position: relative;
    z-index: 1;
}









/* -------- recent news section -------- */

.recent-news-section{
    width: 100%;
    padding: 80px 0;
    text-align: center;
}

.recent-news-title{
    font-size: 42px;
    color: #5b3c12;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.recent-news-line{
    display: block;
    width: 120px;
    height: 3px;
    background-color: rgb(163, 100, 22);
    margin: 0 auto 50px;
}

.recent-news-container{
    width: 80%;
    margin: auto;
}

.recent-news-parent{
    overflow: auto;
}

.recent-news-card{
    float: left;
    width: 30%;
    background-color: #ffebce;
    border: 1.5px solid rgba(163, 100, 22, 0.35);
    border-radius: 10px;
    padding: 20px 15px 18px;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

.recent-news-card-center{
    margin: 0 5%;
}

.recent-news-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 219, 113, 0.447);
    transition: 0.5s;
    z-index: 0;
    border-radius: 10px;
}

.recent-news-card:hover::after{
    height: 100%;
}


.recent-news-card > *{
    position: relative;
    z-index: 1;
}

.recent-news-image-box{
    width: 85%;
    aspect-ratio: 1 / 1;
    margin: 0 auto 18px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2; 
}

.recent-news-image-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recent-news-icons{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.recent-news-icons span{
    font-size: 18px;
    font-weight: 700;
    color: #806034;
}

.recent-news-icons i{
    color: rgb(197, 120, 25);
    margin-right: -6px;
    font-size: 17px;
}


.recent-news-role{
    font-size: 20px;
    color: rgb(187, 108, 12);
    margin-bottom: 18px;
    font-weight: 800;
    transition: 0.4s;
}

.recent-news-text{
    font-size: 15px;
    line-height: 1.3;
    color: rgba(103, 60, 14, 0.78);
    font-weight: 700;
    margin-bottom: 30px;
}


.recent-news-more{
    font-size: 15px;
    color: #7b4d13;
    font-weight: 900;
    text-transform: lowercase;
    transition: 0.4s;
    cursor: pointer;
}


.recent-news-card:hover .recent-news-role{
    color: #7b4d13;
}

.recent-news-card:hover .recent-news-text{
    color: #5b3c12;
}


.recent-news-card:hover .recent-news-icons span{
    color: #7b4d13;
}

.recent-news-icons i{
    transition: none;
}







/* -------- footer section -------- */

.footer-section{
    width: 100%;
    padding: 16px 0;
    text-align: center;
    background-color:rgb(252, 230, 187);
}


.footer-container{
    width: 80%;
    margin: auto;
}


.footer-img{
    width: 270px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}


.footer-icons{
    margin-bottom: 15px;
}


.footer-icons i{
    display: inline-flex;         
    align-items: center;          
    justify-content: center;      
    text-decoration: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(246, 206, 132);
    color: #5b3c12;                      
    font-size: 28px;
    transition: 0.3s;
}

.footer-icons i:hover{
    background-color: #5b3c12;    
    color: rgb(251, 217, 155);     
}

.footer-text{
    font-size: 14px;
    color: #3d2508;
    font-weight: 600;
    text-transform: uppercase;
    word-spacing: 1px;
}