/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

  }
  
  body {
    line-height: 2;
    color: #333;
    background: #f9f9f9;
  }

  body::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Edge */
  }
  
.logo img {
  height: 45px;
  width: auto;
}
.logo {
  display: flex;
  align-items: center; /* Ensure the logo image is vertically centered */
}


/* General Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem; /* Reduce padding */
  background: rgba(0, 0, 0, 0); /* Fully transparent by default */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.navbar.scrolled{
  background: rgba(0, 0, 0, 0.8);
}

.navbar:hover {
  background: rgba(0, 0, 0, 0.8); /* Semi-transparent black on hover */
  color:#f9f9f9
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f9a826; 
}
  
  /* Hero Section */
  .hero {
    position: relative;
    background: url('image/bg-image.jpeg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 450;
}

.hero p {
    font-size: clamp(0.8rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    color: #c8c8c8;
    line-height: 1.4;
}

.hero .btn {
    background: #f9a826;
    color: #f9f9f9;
    padding: 0.8rem 4rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all 0.3s ease;
}

.hero .btn:hover {
    background: #fff;
    color: #f9a826;
}
  
  /* ******************************************* */
  /* ************ Shop Section ***************** */
  /* ******************************************* */

  .shop {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.shop h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.product-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1.5rem 0.5rem;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
    display: none;
}

.product {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    width: 280px; /* Fixed width for consistency */
    height: 400px; /* Fixed height for consistency */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.product img {
    width: 100%;
    height: 250px; /* Fixed height for images */
    object-fit: cover; /* Maintain aspect ratio */
    border-radius: 8px;
}

.product-content {
    padding: 1rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #333;
    white-space: normal; /* Allow text wrapping */
}

.product p {
    font-size: 1rem;
    color: #f9a826;
    margin: 0;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .shop {
        padding: 2rem 1rem;
    }
    
    .product {
        width: 250px;
        height: 350px;
    }
    
    .product img {
        height: 200px;
    }
}

  /* ******************************************* */
  /* ************* About Section *************** */
  /* ******************************************* */

#about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  /* padding: 2rem; */
  /* background-color: #f9f9f9; */
  background-color: #fff1e3;
}

.about-info {
  flex: 1;
  max-width: 50%;
  padding: 2rem;
}

.about-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.about-info p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #555;
  line-height: 1.6;
  text-align: justify;
  width: 70%;
}

.about-img {
  flex: 1;
  max-width: 35%;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.about-img img {
  width: auto; /* Changed from 100% to auto */
  max-width: 100%; /* Added max-width constraint */
  max-height: 600px; /* Added max-height constraint */
  border-radius: 8px;
  object-fit: contain; /* Changed back to contain */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  #about {
    flex-direction: column;
    padding: 1rem;
  }
  
  .about-info,
  .about-img {
    max-width: 100%;
    padding: 1rem;
  }

  .about-img img {
    max-height: 300px; /* Smaller max-height for mobile */
  }
}

  
  /* Testimonials Section */
  .testimonials {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
  }
  
  .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
  }
  
  .testimonials blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    /* position: relative; */
    margin-bottom: 2rem;
  }
  
  /* .testimonials blockquote:before {
    content: '“';
    font-size: 3rem;
    color: #f9a826;
    position: absolute;
    left: -1rem;
    top: -1rem;
  } */
  
  /* Contact Section */
/* Contact Section Styles */
.contact {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1;
  text-align: center;
  max-width: 300px;
}

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-item p {
  font-size: 1rem;
  color: #555;
  margin: 0.5rem 0;
}

.contact-item a {
  text-decoration: none;
  color: #007BFF;
}

.contact-item a:hover {
  text-decoration: underline;
}

.qr-code {
  width: 150px;
  height: 150px;
  margin: 1rem 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Divider Line */
.divider {
  width: 2px;
  height: 200px;
  background: #ccc;
  margin: 0 1rem;
}

  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
    font-size: 0.9rem;
  }
  
