    /* 🩷 Hero Section Redefined */
.hero-section {
  position: relative;
  height: 61vh;
  background: linear-gradient(135deg, #ffe4e6 0%, #fff7f8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #5c3a3a;
  text-shadow: 0 2px 6px rgba(255, 182, 193, 0.3);
}

.hero-title {
  font-size: 4.5rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0; /* for GSAP intro animation */
}

.hero-subtext {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0;
}

.hero-btn {
  opacity: 0;
  border-radius: 30px;
  background: linear-gradient(90deg, #ff8fab, #ffb3c6);
  border: none;
  box-shadow: 0 4px 12px rgba(255, 143, 171, 0.3);
  transition: all 0.3s ease;
}
.hero-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(255, 143, 171, 0.5);
}

/* 🍩 Floating Pastry Images */
.floating-img {
  position: absolute;
  width: 120px;
  opacity: 0.8;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.1));
  animation: floatAnim 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Position images at different corners */
.img1 {
    top: 50%;
    left: 10%;
    animation-delay: 0s;
}
.img2 {
    top: 50%;
    right: 15%;
    width: 183px;
    animation-delay: 2s;
}
.img3 {
    bottom: 0%;
    left: 56%;
    transform: translateX(-50%);
    width: 160px;
    animation-delay: 1s;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtext { font-size: 1rem; }
  .floating-img { width: 80px; }
}

// ✨ GSAP Hero Text Animation
gsap.from(".hero-title", {
  duration: 1.2,
  opacity: 0,
  y: 50,
  ease: "power3.out",
  delay: 0.3
});

gsap.from(".hero-subtext", {
  duration: 1,
  opacity: 0,
  y: 30,
  ease: "power2.out",
  delay: 0.8
});

gsap.from(".hero-btn", {
  duration: 1,
  opacity: 0,
  scale: 0.9,
  ease: "back.out(1.7)",
  delay: 1.2
});

// 🍩 Floating Pastry Entry Animation
gsap.from(".floating-img", {
  duration: 1.5,
  opacity: 0,
  y: -30,
  stagger: 0.3,
  ease: "power2.out",
  delay: 0.5
});

/* 🎀 Hero Text Loop */
.hero-text-loop {
  font-size: 1.5rem;
  font-weight: 500;
  color: #5c3a3a;
  margin-top: 10px;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.hero-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlide 1s ease forwards;
}

/* optional keyframes if JS fallback */
@keyframes fadeSlide {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}


/*=========== Fixed left button ==============================*/
/* 💬 Enquiry & WhatsApp Buttons */
.enquiry-wrapper {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/* Enquire Button */
.enquire-btn {
  background: linear-gradient(135deg, #ff8fab, #ffb3c6);
  color: #fff;
  border: none;
  border-radius: 0 25px 25px 0;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 143, 171, 0.3);
  transition: all 0.3s ease;
}
.enquire-btn:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 15px rgba(255, 143, 171, 0.4);
}

/* Slide-out Panel */
.enquiry-panel {
  position: fixed;
  top: -40px;
  left: -340px;
  height: 100vh;
  width: 320px;
  background: #fff7f8;
  padding: 25px;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  z-index: 10000;
  overflow-y: auto;
}

.enquiry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  font-size: 1.5rem;
  color: #b85c38;
  cursor: pointer;
  transition: color 0.3s;
}
.close-btn:hover {
  color: #ff8fab;
}

.enquiry-form input,
.enquiry-form textarea {
  background: #fff;
  border: 1px solid #f7d8dd;
  border-radius: 12px;
  color: #5c3a3a;
  font-size: 0.95rem;
}

.enquiry-form button {
  background-color: #ff8fab;
  border-radius: 25px;
  border: none;
  transition: all 0.3s;
}
.enquiry-form button:hover {
  background-color: #ffb3c6;
  transform: scale(1.05);
}

/* WhatsApp Button */
.whatsapp-btn {
  margin-left: 8px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn img {
  width: 28px;
  height: 28px;
}