/* ═══════════════════════════════════════
   PETAL POP — Style Sheet
   Pastel pink, floral, cute aesthetic
   ═══════════════════════════════════════ */

/* ─── Reset & Globals ──────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette */
  --pink-50: #fff5f7;
  --pink-100: #ffe4ec;
  --pink-200: #fcc5d4;
  --pink-300: #f9a8c0;
  --pink-400: #f584a6;
  --pink-500: #e8628a;
  --pink-600: #d94a73;
  --blush: #fddde6;
  --rose: #f7c5d0;
  --cream: #fff9f5;
  --gold: #d4a76a;
  --gold-light: #e8c99b;
  --brown-text: #8b5e5e;
  --dark-rose: #a05a6b;
  --white: #ffffff;

  /* Typography */
  --font-display: 'Dancing Script', cursive;
  --font-body: 'Quicksand', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 80px 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--brown-text);
  background: var(--pink-50);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── Floating Petals Animation ────────── */
.petals-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.35;
  color: var(--pink-300);
  animation: fallingPetal linear infinite;
}

.petal-1 {
  left: 5%;
  font-size: 1.4rem;
  animation-duration: 12s;
  animation-delay: 0s;
}

.petal-2 {
  left: 15%;
  font-size: 1rem;
  animation-duration: 16s;
  animation-delay: 2s;
}

.petal-3 {
  left: 30%;
  font-size: 1.6rem;
  animation-duration: 14s;
  animation-delay: 4s;
}

.petal-4 {
  left: 50%;
  font-size: 1rem;
  animation-duration: 18s;
  animation-delay: 1s;
}

.petal-5 {
  left: 65%;
  font-size: 1.3rem;
  animation-duration: 13s;
  animation-delay: 5s;
}

.petal-6 {
  left: 78%;
  font-size: 1.1rem;
  animation-duration: 15s;
  animation-delay: 3s;
}

.petal-7 {
  left: 88%;
  font-size: 1.5rem;
  animation-duration: 17s;
  animation-delay: 6s;
}

.petal-8 {
  left: 42%;
  font-size: 0.9rem;
  animation-duration: 20s;
  animation-delay: 7s;
}

@keyframes fallingPetal {
  0% {
    transform: translateY(-5vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.35;
  }

  90% {
    opacity: 0.35;
  }

  100% {
    transform: translateY(105vh) rotate(720deg);
    opacity: 0;
  }
}

/* ─── Section helpers ──────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--dark-rose);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--pink-500);
  margin-bottom: 40px;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(253, 221, 230, 0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(252, 197, 212, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(247, 197, 208, 0.4) 0%, transparent 50%),
    linear-gradient(180deg, var(--pink-100) 0%, var(--pink-50) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 24px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.9rem, 2.5vw, 1.15rem);
  color: var(--dark-rose);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 700;
  color: var(--pink-600);
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 2px 4px 12px rgba(217, 74, 115, 0.15);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--brown-text);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(245, 132, 166, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-out 0.9s both;
}

@media (hover: hover) {
  .btn-hero:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
      0 8px 30px rgba(245, 132, 166, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

/* Corner decorations */
.corner-deco {
  position: absolute;
  font-size: 3rem;
  color: var(--pink-200);
  opacity: 0.5;
  z-index: 1;
}

.corner-tl {
  top: 24px;
  left: 24px;
}

.corner-tr {
  top: 24px;
  right: 24px;
}

.corner-bl {
  bottom: 24px;
  left: 24px;
}

.corner-br {
  bottom: 24px;
  right: 24px;
}

/* ═══════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════ */
.about {
  padding: var(--section-pad);
  background: var(--white);
  position: relative;
}

.about::before {
  content: '✿ ❀ ✿ ❀ ✿';
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: var(--pink-200);
  letter-spacing: 12px;
  margin-bottom: 40px;
}

.about-text {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--brown-text);
}

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

.feature-card {
  background: linear-gradient(135deg, var(--pink-50), var(--blush));
  border: 1px solid var(--pink-100);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(253, 168, 192, 0.2);
  }
}

.feature-icon {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pink-600);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brown-text);
}

/* ═══════════════════════════════════════
   PRODUCTS
   ═══════════════════════════════════════ */
.products {
  padding: var(--section-pad);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(253, 221, 230, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 100%, rgba(252, 197, 212, 0.3) 0%, transparent 50%),
    var(--pink-50);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 28px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--pink-100);
  box-shadow: 0 4px 20px rgba(253, 168, 192, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 221, 230, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .product-card:hover::before {
    opacity: 1;
  }

  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(245, 132, 166, 0.18);
  }

  .product-card:hover .product-img-wrap img {
    transform: scale(1.05);
  }
}

.product-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--pink-50), var(--blush));
}

.product-img-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}



.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--pink-600);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--brown-text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-500);
  background: var(--pink-100);
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   TESTIMONIALS / WHY US
   ═══════════════════════════════════════ */
.why-us {
  padding: var(--section-pad);
  background: var(--white);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.testimonial-card {
  background: linear-gradient(145deg, var(--pink-50), var(--cream));
  border: 1px solid var(--pink-100);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card::before {
  content: '❝';
  font-size: 3rem;
  color: var(--pink-200);
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: serif;
  line-height: 1;
}

@media (hover: hover) {
  .testimonial-card:hover {
    transform: translateY(-4px);
  }
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--brown-text);
  margin-bottom: 16px;
  padding-top: 16px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pink-500);
}

/* ═══════════════════════════════════════
   CTA — FIND US
   ═══════════════════════════════════════ */
.cta {
  padding: var(--section-pad);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(253, 221, 230, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, var(--pink-50) 0%, var(--pink-100) 100%);
}

.cta-box {
  background: var(--white);
  border: 2px solid var(--pink-200);
  border-radius: 32px;
  padding: 48px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(253, 168, 192, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '🌸';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 4rem;
  opacity: 0.2;
}

.cta-box::after {
  content: '✿';
  position: absolute;
  bottom: -10px;
  left: -10px;
  font-size: 4rem;
  opacity: 0.2;
  color: var(--pink-300);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--pink-600);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown-text);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-details {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-rose);
  background: var(--pink-50);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--pink-100);
}

.cta-icon {
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, var(--pink-100), var(--rose));
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-rose);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--brown-text);
  opacity: 0.7;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-triggered fade-in via IntersectionObserver (optional JS) 
   — since we're keeping it simple, we rely on CSS hover transitions */

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px 16px;
  }

  /* Adjusted for tablets and smaller screens */
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
  }

  /* Allow 2 columns on tablets, 1 column on phones */
  .features,
  .product-grid,
  .testimonials {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Force single column only on very small screens */
  @media (max-width: 550px) {

    .features,
    .product-grid,
    .testimonials {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  .cta-details {
    flex-direction: column;
    align-items: center;
  }

  .cta-box {
    padding: 36px 24px;
  }

  .corner-deco {
    font-size: 2rem;
  }

  .corner-tl {
    top: 12px;
    left: 12px;
  }

  .corner-tr {
    top: 12px;
    right: 12px;
  }

  .corner-bl {
    bottom: 12px;
    left: 12px;
  }

  .corner-br {
    bottom: 12px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3.4rem;
  }

  .hero-tagline {
    letter-spacing: 2px;
  }
}

.footer-auth {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--pink-600);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}