/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fafafa;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

a:hover {
  color: #b28c34; /* gold hover */
}

.btn {
  background: #b28c34;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a27c2a;
}

/* ========== HEADER ========== */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

header h1 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
}

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

nav a {
  font-size: 1rem;
  font-weight: 500;
}
nav img {
    width: 110px;
    height: auto;
}
/* ========== HERO ========== */
.hero {
  height: 85vh;
  background: url("images/hero-bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* 🎭 Garba overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/garba-pattern.png") repeat;
  opacity: 0.25; /* adjust for visibility */
  animation: danceMove 20s linear infinite;
  z-index: 0;
}

/* Dark transparent overlay for text readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* ✅ text above overlays */
  overflow: visible;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ✨ Animation for festive vibe */
@keyframes danceMove {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(40px, -10px); }
  100% { transform: translate(0, 0); }
}

/* ========== PRODUCTS GRID ========== */
.products {
  padding: 4rem 0;
}

.products h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: #222;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.product-image {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
}

.product-image img {
  width: 100%;
  height: auto;          /* ✅ adapts to image size */
  object-fit: contain;   /* ✅ no crop */
  display: block;
}

.product-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image:hover .overlay {
  opacity: 1;
}

.overlay .btn {
  background: #fff;
  color: #222;
  font-weight: 600;
}

.overlay .btn:hover {
  background: #b28c34;
  color: #fff;
}

.product-info {
  padding: 1rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.product-info p {
  font-size: 0.9rem;
  color: #555;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #fff;
  padding: 4rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* ========== CONTACT ========== */
.contact {
  background: #fdf7ef;
  padding: 4rem 0;
  text-align: center;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-info {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 1100;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ========== FOOTER ========== */
footer {
  display:flex;
  background: #222;
  color: #fff;
  padding: 1.5rem 0;
  justify-content: center;
  align-item: center;
  text-align: center;
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 0.8rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .products h2,
  .testimonials h2,
  .contact h2 {
    font-size: 1.6rem;
  }
}

