:root {
  --pink-light: #fff0f5;
  --pink-soft: #ffd6e7;
  --pink-main: #ff8fb8;
  --pink-deep: #e85a8b;
  --rose: #c44569;
  --cream: #fffaf7;
  --white: #ffffff;
  --text-dark: #2d1b24;
  --text-muted: #6b4f5b;
  --shadow: 0 15px 40px rgba(232, 90, 139, 0.15);
  --shadow-hover: 0 25px 60px rgba(232, 90, 139, 0.28);
  --radius: 24px;
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  perspective: 1200px;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink-deep);
  background: var(--pink-soft);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
}

.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-main), var(--rose));
  margin: 0 auto;
  border-radius: 3px;
}

/* 3D Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-3d {
  transform-style: preserve-3d;
  box-shadow: 0 8px 0 rgba(196, 69, 105, 0.35), 0 12px 25px rgba(196, 69, 105, 0.25);
}

.btn-3d:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 0 rgba(196, 69, 105, 0.3), 0 18px 35px rgba(196, 69, 105, 0.35);
}

.btn-3d:active {
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(196, 69, 105, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--rose);
  border: 2px solid var(--pink-soft);
  box-shadow: 0 6px 0 rgba(255, 182, 193, 0.4), 0 10px 20px rgba(0,0,0,0.05);
}

.btn-secondary:hover {
  background: var(--pink-light);
  border-color: var(--pink-main);
}

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; }

.logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 1.85rem;
  color: var(--rose);
}

.logo-accent {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
}

.nav-menu a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--pink-deep);
  transition: width 0.3s ease;
}

.nav-menu a:not(.btn-nav):hover::after { width: 100%; }

.btn-nav {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(196, 69, 105, 0.3);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 69, 105, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 24px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 15% 40%, rgba(255, 182, 193, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255, 192, 203, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(255, 218, 230, 0.5) 0%, transparent 55%),
    linear-gradient(180deg, #fff5f8 0%, var(--cream) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  z-index: 2;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-greeting {
  font-family: 'Great Vibes', cursive;
  font-size: 1.9rem;
  color: var(--pink-deep);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.9rem, 7.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.hero-location i { color: var(--pink-deep); }

/* Floating 3D cards in hero */
.hero-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-card {
  position: absolute;
  width: 180px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-1 {
  top: 18%;
  left: 6%;
  transform: rotate(-12deg) translateZ(40px);
  animation: float1 7s ease-in-out infinite;
}

.float-2 {
  top: 22%;
  right: 7%;
  transform: rotate(10deg) translateZ(60px);
  animation: float2 8s ease-in-out infinite;
  width: 160px;
  height: 200px;
}

.float-3 {
  bottom: 12%;
  left: 12%;
  transform: rotate(8deg) translateZ(30px);
  animation: float3 9s ease-in-out infinite;
  width: 150px;
  height: 190px;
}

@keyframes float1 {
  0%, 100% { transform: rotate(-12deg) translateY(0) translateZ(40px); }
  50% { transform: rotate(-8deg) translateY(-18px) translateZ(50px); }
}

@keyframes float2 {
  0%, 100% { transform: rotate(10deg) translateY(0) translateZ(60px); }
  50% { transform: rotate(14deg) translateY(-22px) translateZ(70px); }
}

@keyframes float3 {
  0%, 100% { transform: rotate(8deg) translateY(0) translateZ(30px); }
  50% { transform: rotate(4deg) translateY(-15px) translateZ(40px); }
}

/* About */
.about { background: white; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-light);
  padding: 11px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(232, 90, 139, 0.1);
}

.highlight-item i { color: var(--pink-deep); }

.about-visual { perspective: 1000px; }

.about-img-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transform: rotateY(-6deg) rotateX(4deg);
  transition: var(--transition);
}

.about-img-card:hover {
  transform: rotateY(0) rotateX(0) scale(1.02);
}

.about-img-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(45, 27, 36, 0.75));
  color: white;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Services */
.services { background: var(--pink-light); }

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

.card-3d {
  transform-style: preserve-3d;
  transition: var(--transition);
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-12px) rotateX(4deg);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-soft);
}

.service-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--rose);
  box-shadow: 0 8px 20px rgba(232, 90, 139, 0.15);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Gallery */
.gallery { background: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(45, 27, 36, 0.8));
  color: white;
  font-weight: 600;
  font-size: 1rem;
  transform: translateY(10px);
  opacity: 0.95;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* Booking */
.booking {
  background: linear-gradient(180deg, var(--pink-light) 0%, #ffe4ec 100%);
  padding-bottom: 130px;
}

.booking-card {
  background: white;
  border-radius: 32px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-hover);
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--pink-main), var(--rose), var(--pink-main));
}

.booking-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin-bottom: 16px;
}

.booking-text {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pink-light);
  padding: 13px 22px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(232, 90, 139, 0.1);
}

.step-num {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--pink-deep), var(--rose));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.booking-note {
  margin-top: 26px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: #f5e6eb;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer .logo-text { color: var(--pink-main); }
.footer .logo-accent { color: #f5e6eb; }

.footer-brand p {
  margin-top: 16px;
  color: #c9a8b4;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: white;
  font-weight: 600;
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links a {
  color: #c9a8b4;
  font-size: 0.95rem;
}

.footer-links a:hover { color: var(--pink-main); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-main);
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.social-link:hover { color: white; }

.footer-contact p {
  color: #c9a8b4;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: var(--pink-main);
}

.footer-tagline {
  margin-top: 16px !important;
  font-family: 'Great Vibes', cursive;
  font-size: 1.4rem !important;
  color: var(--pink-soft) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
  color: #a88895;
}

.made-with { color: var(--pink-soft); }

/* Responsive */
@media (max-width: 1000px) {
  .float-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-card { transform: none; }
  .about-img-card img { height: 340px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
  }
  
  .nav-menu.active { right: 0; }
  
  .hero { padding-top: 140px; }
  
  .hero-cta { flex-direction: column; align-items: center; }
  
  .btn { width: 100%; max-width: 300px; }
  
  .booking-card { padding: 44px 24px; }
  
  .booking-steps { flex-direction: column; align-items: center; }
  
  .step { width: 100%; max-width: 280px; justify-content: flex-start; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .hero-title { font-size: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===================== BUTTERFLIES ===================== */
.butterfly {
  position: absolute;
  width: 42px;
  height: 36px;
  pointer-events: none;
  z-index: 50;
  will-change: transform, left, top;
}

.butterfly-body {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.wing {
  position: absolute;
  width: 22px;
  height: 28px;
  background: linear-gradient(135deg, 
    rgba(255, 182, 193, 0.92) 0%, 
    rgba(255, 105, 180, 0.85) 40%,
    rgba(255, 192, 203, 0.7) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  top: 2px;
  transform-origin: right center;
  box-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

.left-wing {
  left: 0;
  transform: rotateY(25deg) rotateZ(-8deg);
  animation: flapLeft 0.28s ease-in-out infinite alternate;
}

.right-wing {
  right: 0;
  left: auto;
  transform-origin: left center;
  transform: rotateY(-25deg) rotateZ(8deg);
  animation: flapRight 0.28s ease-in-out infinite alternate;
  background: linear-gradient(225deg, 
    rgba(255, 182, 193, 0.92) 0%, 
    rgba(255, 105, 180, 0.85) 40%,
    rgba(255, 192, 203, 0.7) 100%);
}

.body {
  position: absolute;
  width: 5px;
  height: 18px;
  background: linear-gradient(to bottom, #5a3a4a, #3d2a35);
  border-radius: 4px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  z-index: 2;
}

.body::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #3d2a35;
  top: -6px;
  left: 1px;
  border-radius: 2px;
  box-shadow: 3px 0 0 #3d2a35;
}

@keyframes flapLeft {
  from { transform: rotateY(15deg) rotateZ(-12deg) scaleX(0.95); }
  to   { transform: rotateY(55deg) rotateZ(5deg) scaleX(1.05); }
}

@keyframes flapRight {
  from { transform: rotateY(-15deg) rotateZ(12deg) scaleX(0.95); }
  to   { transform: rotateY(-55deg) rotateZ(-5deg) scaleX(1.05); }
}

/* Continuous free-flying path */
.butterfly.flying {
  animation: freeFly var(--flight-duration, 22s) ease-in-out var(--flight-delay, 0s) infinite;
}

@keyframes freeFly {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  15% {
    transform: translate(calc(var(--x-move, 120px) * 0.4), calc(var(--y-move, -80px) * 0.5)) rotate(12deg) scale(1.05);
  }
  35% {
    transform: translate(var(--x-move, 120px), var(--y-move, -80px)) rotate(-8deg) scale(0.95);
  }
  55% {
    transform: translate(calc(var(--x-move, 120px) * 0.6), calc(var(--y-move, -80px) * 1.3)) rotate(15deg) scale(1.08);
  }
  75% {
    transform: translate(calc(var(--x-move, 120px) * -0.3), calc(var(--y-move, -80px) * 0.4)) rotate(-12deg) scale(0.92);
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

/* Landing butterflies */
.butterfly.landing {
  z-index: 60;
  transition: left 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              top 4.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 4.5s ease;
}

.butterfly.resting .left-wing,
.butterfly.resting .right-wing {
  animation-duration: 1.4s; /* slower gentle flutter while resting */
}

/* Slight size variation for natural feel */
.butterfly:nth-child(odd) {
  transform: scale(0.85);
}
.butterfly:nth-child(3n) {
  transform: scale(1.1);
}

/* Make sure butterflies stay above most content but below modals if any */
.butterfly {
  filter: drop-shadow(0 3px 6px rgba(196, 69, 105, 0.25));
}

/* On very small screens reduce number / hide some */
@media (max-width: 768px) {
  .butterfly.flying {
    opacity: 0.7;
  }
  .float-card {
    /* already hidden on small screens */
  }
}
