@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --pink-50: #fef1f6;
  --pink-100: #fde4ee;
  --pink-200: #fcc8dd;
  --pink-300: #f9a0c3;
  --pink-400: #f472a8;
  --pink-500: #e84393;
  --pink-600: #d63384;
  --dark: #1a1a1a;
  --dark-800: #2d2d2d;
  --gray-600: #6b7280;
  --gray-400: #9ca3af;
  --white: #ffffff;
  --bg-light: #fdf6f9;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --shadow-card: 0 4px 24px rgba(232, 67, 147, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(253, 246, 249, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(252, 200, 221, 0.3);
  transition: var(--transition);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700;
  letter-spacing: 2px; color: var(--dark);
}
.navbar-brand span { color: var(--pink-500); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--dark-800);
  position: relative; transition: var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--pink-500);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--pink-500); }
.nav-links a:hover::after { width: 100%; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  color: var(--white); box-shadow: 0 4px 20px rgba(232, 67, 147, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232, 67, 147, 0.5);
}
.btn-outline {
  background: transparent; border: 2px solid var(--dark);
  color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark); color: var(--white); transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark); color: var(--white);
  border-radius: 50px; padding: 10px 24px;
}
.btn-dark:hover { background: var(--dark-800); transform: translateY(-2px); }

/* ─── HAMBURGER ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: var(--transition); display: block; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--pink-50) 50%, rgba(252,200,221,0.2) 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-100); color: var(--pink-600);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-500); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-heading); font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.05; margin-bottom: 16px;
  color: var(--dark);
}
.hero-subtitle {
  font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400; color: var(--gray-600); margin-bottom: 8px;
}
.hero-subtitle em { color: var(--pink-500); font-style: italic; }
.hero-buttons { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-tags {
  margin-top: 48px; font-size: 0.75rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: 1.5px;
}
/* .hero-tags span { margin: 0; } */
.hero-tags span:hover{
  cursor: pointer;
  color: var(--pink-500);
  transition: var(--transition);
}
.hero-image {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image-main {
  width: 420px; height: 520px; object-fit: cover;
  border-radius: 24px; box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-image .decoration {
  position: absolute; width: 80px; height: 80px;
  border-radius: 50%; background: linear-gradient(135deg, var(--pink-200), var(--pink-400));
  opacity: 0.5; filter: blur(2px);
}
.hero-image .decoration:nth-child(2) { top: -20px; right: 40px; width: 48px; height: 48px; }
.hero-image .decoration:nth-child(3) { bottom: 40px; left: -10px; width: 64px; height: 64px; }
.hero-star {
  position: absolute; top: 10px; right: 60px;
  font-size: 2rem; color: var(--pink-400); animation: spin-star 4s linear infinite;
}
@keyframes spin-star { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ─── SECTION COMMON ─── */
section { padding: 100px 0; }
.section-label {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;
  color: var(--pink-500); font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 16px;
}
.section-title em { color: var(--pink-500); font-style: italic; }
.section-subtitle { color: var(--gray-600); max-width: 560px; margin-bottom: 48px; }
.section-header { text-align: center; }
.section-header .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── CALENDAR ─── */
.calendar-section { background: var(--white); }
.calendar-wrapper {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--pink-100);
}
.calendar-wrapper iframe {
  width: 100%; height: 500px; border: none;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; position: relative; overflow: hidden;
  border: 1px solid var(--pink-100);
  transition: var(--transition); cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--pink-300);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.3rem;
  margin-bottom: 12px;
}
.service-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; }
.service-price {
  margin-top: 20px; font-weight: 700; color: var(--pink-500); font-size: 1.1rem;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }

/* ─── GALLERY ─── */
.gallery-section { background: var(--white); }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 16px;
}
.gallery-header .section-subtitle { margin-bottom: 0; }
.explore-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--dark);
  transition: var(--transition);
}
.explore-link::after {
  content: ''; width: 40px; height: 2px; background: var(--pink-500);
  transition: var(--transition);
}
.explore-link:hover { color: var(--pink-500); }
.explore-link:hover::after { width: 56px; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 3/4; cursor: pointer; group: true;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white); font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
}

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-800) 100%);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,67,147,0.15) 0%, transparent 70%);
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-title em { color: var(--pink-400); }
.cta-section .section-subtitle { color: var(--gray-400); margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--pink-400), var(--pink-500));
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark); color: var(--gray-400);
  padding: 48px 0 24px; text-align: center;
  font-size: 0.85rem;
}
.footer-brand {
  font-family: var(--font-heading); font-size: 1.4rem;
  color: var(--white); margin-bottom: 12px; font-weight: 700;
}
.footer-brand span { color: var(--pink-400); }
.footer-links { display: flex; gap: 24px; justify-content: center; margin: 20px 0; flex-wrap: wrap; }
.footer-links a { color: var(--gray-400); transition: var(--transition); font-size: 0.8rem; }
.footer-links a:hover { color: var(--pink-400); }
.footer-copy { margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }

/* ─── ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ─── MOBILE NAV ─── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); flex-direction: column; padding: 100px 40px 40px;
    gap: 24px; box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open { right: 0; }
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-buttons { justify-content: center; }
  .hero-tags { text-align: center; }
  .hero-image { order: -1; }
  .hero-image-main { width: 280px; height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .calendar-wrapper iframe { height: 350px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-image-main { width: 240px; height: 300px; }
}
