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

 :root {
      --dark-green: #013220;
      --light-green: #59625f;
      --gold: #D4AF37;
      --white: #ffffff;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--white);
      color: var(--dark-green);
    }

   
    .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem; /* reduce vertical padding to shrink height */
  background-color: var(--white);
  color: var(--gold);
  height: 70px; /* fix header height to avoid expanding too much */
  box-sizing: border-box;
}

.logo img {
  width: 130px; /* wider logo */
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
  max-height: 60px; /* limit max height so logo doesn’t push header too tall */
}


    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .nav ul {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav a {
      text-decoration: none;
      color: var(--gold);
      font-weight: bold;
    }

    .hamburger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100vh;
      background-color: var(--dark-green);
      color: var(--gold);
      padding: 2rem;
      z-index: 10;
      flex-direction: column;
    }

    .mobile-nav ul {
      list-style: none;
      padding: 0;
      margin-top: 2rem;
    }

    .mobile-nav li {
      margin-bottom: 1rem;
    }

    .mobile-nav a {
      color: var(--gold);
      text-decoration: none;
      font-size: 1.2rem;
    }

    .mobile-nav span {
      font-size: 1.5rem;
      align-self: flex-end;
      cursor: pointer;
    }

    /* Slider styles */
   .slider {
  width: 100%;
  height: 500px; /* adjust this height as needed */
  overflow: hidden;
  position: relative;
  margin-bottom: 5px;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slider img.active {
  display: block;
}

   .hero {
  display: flex;
  flex-direction: column; /* Stack content vertically */
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem; /* Reduced top padding */
  background: none; /* Remove the gradient */
  color: var(--dark-green);
  text-align: center;
}

.hero-text {
  max-width: 700px;
  text-align: center;
}


    .hero-text h1 {
      font-size: 2rem;
      text-align: center;
    }

    .hero-image {
      flex: 1 1 40%;
      background: url('jewelry.jpg') no-repeat center/cover;
      height: 300px;
    }

    .cta {
      display: inline-block;
      margin-top: 1rem;
      padding: 0.75rem 1.5rem;
      background-color: var(--gold);
      color: var(--dark-green);
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .about{
         display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 4rem 2rem;
      background: linear-gradient(to right, var(--dark-green), #0f3d2e);
      color: var(--white);
    }

    section {
      padding: 3rem 2rem;
    }

 .collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.collection-item {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.collection-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.collections h3{
    background-color:  var(--dark-green);
    color: var(--white);
    width: 130px;
    height: 40px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 5px;
}

#top{
    margin-top: 50px;
}

.collection-item p {
  font-weight: 500;
  color: #333;
}

.collection-item:hover {
  transform: translateY(-5px);
}


  .cta-shop {
      display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--gold);
  color: var(--dark-green);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 40px;

  /* Center alignment */
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 300px;

    }


    .why-us {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #f5f5f5;
  overflow: hidden;
}

.why-us h2 {
  color: var(--dark-green);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.features-carousel {
  display: flex;
  gap: 1.5rem;
  animation: scrollFeatures 30s linear infinite;
  width: fit-content;
  padding: 1rem 0;
}

.feature-card {
  background-color: var(--white);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem 1.5rem;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-weight: 600;
  color: var(--dark-green);
  flex-shrink: 0;
}

/* Keyframes for horizontal scroll */
@keyframes scrollFeatures {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .feature-card {
    min-width: 160px;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
}




    .contact-section {
  background-color:var(--dark-green);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--white);
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-btn {
  background-color: var(--gold);
  color: var(--dark-green);
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #d4af37;
}




    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-top: 2rem;
    }


    .final-cta {
  text-align: center;
  background-color: #fefefe;
  padding: 2rem 1rem; /* left & right padding added */
}

.final-cta img {
  width: 100%;
  max-height: 350px;  /* restrict height */
  object-fit: cover;
  border-radius: 10px;
  margin: 1.5rem 0;
}

    blockquote {
      font-style: italic;
      margin: 1.5rem 0;
      border-left: 4px solid var(--gold);
      padding-left: 1rem;
    }

    

.footer {
  background-color: var(--light-green); /* your brand color */
  color: var(--white);                  /* your brand accent */
  padding: 2rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--gold);
}

.social-icons a {
  display: inline-block;
  margin-right: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0.5rem 0; /* tighter vertical spacing */
}

.social-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(0) invert(0.6);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #ccc;
}



    @media (max-width: 768px) {
      .desktop-nav {
        display: none;
      }

      .hamburger {
        display: block;
      }

      
.logo img {
  width: 70px; /* wider logo */
  height: auto;
  display: block;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
  max-height: 60px; /* limit max height so logo doesn’t push header too tall */
}
 
      

      .contact-info {
    gap: 1rem;
  }

  .icon {
    width: 20px;
    height: 20px;
  }

  .contact-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .final-cta {
    padding: 1.5rem 1rem;
  }

  .final-cta img {
    max-height: 220px; /* smaller image height on mobile */
    border-radius: 6px;
    margin: 1rem 0;
  }

  .final-cta h2 {
    font-size: 1.3rem;
  }

  .final-cta p {
    font-size: 0.95rem;
  }



    }




    @media (max-width: 992px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}