*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    font-family: 'Lora' ,serif;
    background: white;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.navbar{
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.8rem, 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container{
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    font-family: 'Cinzel' serif;
    font-size: 2rem;
    font-weight: 600;
    color: #b2976d;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo i{
    margin-right: 10px;
    font-size: 40px;
}
.nav-menu{
    display: flex;
    list-style: none;
    align-items: center;  
}
.nav-item{
    position: relative;
    margin: 0 1.2rem;
}
.nav-link{
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    padding: 0.5 rem 0;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:after{
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #b2976d;
    transition: width 0.3s ease;
}
.nav-link:hover:after{
      width: 100%;
}
.nav-link:hover{
    color: #b2976d;
}
.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.nav-item:hover .dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-item{
    display: block;
    color: white;
    padding: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.dropdown-item:hover{
    background: black ;
    color: #b2976d;
    padding-left: 3px;
}
.nav-icons{
    display: flex;
    align-items: center;
}
.icon-link{
    color: #333;
    font-size: 20px;
    margin-left: 15px;
    transition: all 0.3s ease;
    position: relative;
}
.icon-link:hover{
    color: #b2976d;
}
.cart-count{
    position: absolute;
    top: -8px;
    right: -8px;
    color: white;
    background: #b2976d;
    width: 18px;
    height: 18px;
    font-size:10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hambar{
    display: none;
    cursor: pointer;
    font-size: 10px;
    color: #333;
    margin-left: 10px;
}

.home section{
    min-height:100vh;
    width: 100%;
    position: relative;
}
.main{
    height:100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(44, 42, 42, 0.7),rgba(37, 36, 36, 0.7)), url('pics/main2.jpg');
    background-size: cover;
    background-position: center;
    padding: 0 5%;
}
.main-content{
    max-width: 600px;
    animation: fadein 0.5s ease-out;
}
.main-subtitle{
    font-family: 'Cinzel',serif;
    color: #b2976d;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.caret {
  display: inline-block;
  width: 8px;
  background: white;
  margin-left: 6px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}
.main-title{
    font-family: 'Cinzel',serif;
    font-size: 60px;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
}
.main-description{
    font-size: 18px;
    color: white;
    margin-bottom: 40px;
}
.btn{
    padding: 10px;
    background: #b2976d;
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Lora',serif;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn:hover{
    background: #a1865c;
    transform: translateY(-3px);
}
   .featured-section{
    padding: 80px 5%;
    text-align: center;
   }
   .section-title{
    font-family: 'Cinzel',serif;
    font-size: 50px;
    color: black;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
   }
   .section-title:after{
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #b2976d;
    bottom: -10px;
    left: 25%;
   }
   .product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
    margin-top: 30px;
   }
   .product-card{
    background: black;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease,box shadow 0.3s ease;
   }
   .product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
   }
   .product-image{
    height: 300px;
    width: 100%;
    object-fit: cover;
   }
   .product-details{
    padding: 20px;
   }
   .product-name{
    font-family: 'Cinzel',serif;
    font-size: 30px;
    margin-bottom: 8px;
    color: white;
   }
   .product-price{
    color: white;
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 20px;
   }
   .about-us-section{
    background-color: white;
    padding: 20px 2%;
   }
   .about-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
   }
   .about-text{
    flex: 1 1 500px;
   }
   .section-title{
    font-size: 50px;
    margin-bottom: 25px;
    color: black;
   }
   .about-paragraph{
    color: black;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
   }
   .about-image-container{
    flex: 1 1 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    aspect-ratio: 4/3;
   }
   .about-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 12px;
   }
   .about-image-container:hover .about-image{
    transform: scale(1.05);
   }
   .contact-us{
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    text-align: center;
    flex-direction: column;
    background: url(pics/back.jpg);
    background-size: cover;
}
.title{
    font-size: 50px;
    color: white;
    font-family: 'Cinzel',serif;
}
.contact .content{
    max-width: 800px;
    text-align: center;
}
.contact .content h2{
    font-size: 50px;
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
}
.contact-paragraph{
    font-size: 20px;
    color: white;
}
.container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
.container .contactInfo{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.container .contactInfo .box{
    position: relative;
    padding: 20px 0;
    display: flex;
}
.container .contactInfo .box .icon{
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}
.container .contactInfo .box .text h3{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: rgb(239, 240, 238);
    font-weight: 500;
}
.container .contactInfo .box .text p{
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    font-weight: 300;
}
.contactForm{
    width: 40%;
    padding: 40px;
    background: linear-gradient(white,black);
    border-radius: 10px;

}
.contactForm h2{
    font-size: 30px;
    color: #333;
    font-weight: 500;
}
.contactForm .inputBox{
    position: relative;
    width: 100%;
    margin-top: 10px;
   
}
.contactForm .inputBox input,
.contactForm .inputBox textarea{
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid black;
     background: transparent;
    outline: none;
    resize: none;
}
.contactForm .inputBox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: black;
}
.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span{
    color: #ff0000;
    font-size: 12px;
    transform: translateY(-20px);
}
.btn2{
    height: 50px;
    width: 100px;
    border-radius: 40px;
    background-image: linear-gradient(black,white);
}
   
@media(max-width:1024px){
     .main-title{
        font-size: 50px;
     }
     .main-description{
        font-size: 15px;
     }
     .section-title{
        font-size: 35px;
     }
     .product-image{
        height: 220px;
     }
     .product-name{
        font-size: 20px;
     }
     .product-price{
        font-size: 15px; 
     }
} 
@media screen and (max-width:968px){
.nav-menu{
    position: fixed;
    top: 58px;
    left: -100%;
    background: white;
    width: 100%;
    height: calc(100vh-70px);
    flex-direction: column;
    padding: 35px 0;
    transition: all 0.5s ease; 
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
}
.nav-menu.active{
    left: 0;
}
.nav-item{
    margin: 25px 0;
    width: 100%;
    text-align: center;
}
.dropdown{
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: #f9f9f9;
}
.nav-item:hover .dropdown{
    display: none;
}
.dropdown.active{
    display: block;
}
.hambar{
    display: block;
}
.hambar.active.fa-bars{
   display: none;
}
.hambar.fa-times{
   display: none;
}
.hambar.active.fa-times{
   display: block;
}
.search-container{
    width: 100%;
    right: 0;
    left: 0;
}
.main{
    text-align: center;
    justify-content: center;
    padding: 10px;
}
.main-content{
    max-width: 100%;
}
.main-title{
    font-size: 40px;
}
.main-description{
    font-size: 10px;
}
.btn{
    padding: 30px;
    font-size: 20px;
}
.featured-section{
    padding: 50px 5%;
}
.section-title{
    font-size: 35px;
}
.product-grid{
    gap: 32px;
}
.product-image{
    height: 200px;
}
.product-details{
    padding: 20px;
}
.product-name{
    font-size: 20px;
}
.product-price{
    font-size: 16px;
}
}
@media(max-width:500px){
     .main-title{
        font-size: 40px;
     }
     .main-description{
    font-size: 10px;
}
.btn{
    padding: 10px;
    width: 100%;
}
.section-title{
    font-size: 25px;
}
.product-image{
    height: 180px;
}
.product-name{
    font-size: 16px;
} .product-price{
    font-size: 10px;
}
}
.collection-banner {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.363), rgba(0, 0, 0, 0.158)),
    url('pics/diam.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 0 5%;
}

.banner-content {
  max-width: 800px;
}

.banner-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.banner-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-light {
  background: transparent;
  border: 2px solid white;
}

.btn-light:hover {
  background: white;
  color: #2a2a2a;
}

.testimonials {
  padding: 6rem 5%;
  background: #f8f4f0;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: black;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #b2976d;
  bottom: -10px;
  left: 25%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: black;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-name {
  font-weight: 600;
  color: white;
}

.author-title {
  font-size: 0.9rem;
  color: #888;
}
.footer-section{
    width: 100%;
    height: 50px;
}
.title{
    font-size: 15px;
    color: black;
    font-family: 'Cinzel',serif;
    text-align: center;
    margin-top: 10px;

}
.sub-title{
    font-size: 15px;
    color: black;
    text-align: center;
    
}

@media (max-width: 1024px) {
  .testimonial-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 4%;
  }

  .testimonial-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}