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

:root {
  --pink: #D4829C;
  --pink-light: #E8A4B8;
  --pink-dark: #B8607A;
  --pink-pale: #F5E0E8;
  --pink-glow: rgba(212,130,156,0.15);
  --bg: #FFFAF8;
  --bg-2: #FFF5F0;
  --bg-3: #FFEDE6;
  --bg-4: #FFE4DC;
  --dark: #2A1F24;
  --text: #3D2E34;
  --text-muted: #9A8890;
  --cream: #FFF9F6;
  --white: #FFFFFF;
  --border: rgba(212,130,156,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s;
}
.nav.scrolled {
  background: rgba(255,250,248,0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(212,130,156,0.08);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--pink-dark);
  text-decoration: none; letter-spacing: 1px;
  display: flex; align-items: center; gap: 0.8rem;
}
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav-logo span { font-weight: 400; font-style: italic; color: var(--text-muted); font-size: 0.9rem; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 400;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
  background: var(--pink); transition: width 0.3s;
}
.nav-links a:hover { color: var(--pink-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--pink) !important; border: 1px solid var(--pink) !important;
  color: var(--white) !important; padding: 0.6rem 1.8rem !important;
  font-size: 0.75rem !important; letter-spacing: 2px !important;
  cursor: pointer; transition: all 0.3s !important; border-radius: 2px;
}
.nav-cta:hover {
  background: var(--pink-dark) !important; border-color: var(--pink-dark) !important;
}
.nav-cta::after { display: none !important; }

.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 25px; height: 1.5px; background: var(--pink-dark); transition: 0.3s; }

/* ── HERO ── */
.hero {
  height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 40%, var(--pink-pale) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,130,156,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,164,184,0.06) 0%, transparent 50%);
}
.hero-content { text-align: center; position: relative; z-index: 2; padding: 0 2rem; }
.hero-logo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 2rem; box-shadow: 0 8px 30px rgba(212,130,156,0.2); }
.hero-badge {
  display: inline-block; font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--pink-dark); margin-bottom: 2rem;
  border: 1px solid var(--border); padding: 0.5rem 1.5rem;
  background: rgba(255,255,255,0.5);
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500; line-height: 1.1; margin-bottom: 0.5rem;
  color: var(--dark);
}
.hero h1 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 0.85rem; color: var(--text-muted); letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 3rem; font-weight: 300;
}
.hero-cta {
  display: inline-block; background: var(--pink); color: var(--white);
  padding: 1rem 3rem; font-size: 0.8rem; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  transition: all 0.3s; border: none; cursor: pointer; border-radius: 2px;
}
.hero-cta:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,130,156,0.3); }
.hero-scroll {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── SECTIONS ── */
section { padding: 6rem 3rem; }
.section-label {
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1rem; font-weight: 500;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500; color: var(--dark); margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-muted); max-width: 500px; line-height: 1.8;
  font-size: 0.9rem; font-weight: 300;
}
.divider {
  width: 60px; height: 2px; background: linear-gradient(to right, var(--pink), var(--pink-light)); margin: 1.5rem 0;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-image {
  width: 100%; max-height: 500px; background: var(--bg-2);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  border-radius: 2px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: flex; gap: 3rem; margin-top: 2.5rem; }
.about-stat { text-align: center; }
.about-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--pink-dark); }
.about-stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-desc { margin: 0 auto; }
.services-categories {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.cat-btn {
  padding: 0.6rem 1.5rem; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif; border-radius: 2px;
}
.cat-btn.active, .cat-btn:hover {
  background: var(--pink); color: var(--white); border-color: var(--pink);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px; max-width: 1000px; margin: 0 auto;
  background: var(--border);
}
.service-item {
  background: var(--white); padding: 1.8rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s;
}
.service-item:hover { background: var(--bg-2); }
.service-name { font-size: 0.9rem; font-weight: 400; color: var(--dark); }
.service-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.3rem; }
.service-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--pink-dark); white-space: nowrap; }

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  max-width: 1000px; margin: 0 auto;
}
.gallery-item {
  aspect-ratio: 1; background: var(--bg-2); overflow: hidden; position: relative;
  border-radius: 2px;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(212,130,156,0.3) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ── BOOKING ── */
.booking { background: var(--bg-2); }
.booking-container { max-width: 700px; margin: 0 auto; }
.booking-header { text-align: center; margin-bottom: 3rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--white); border: 1px solid var(--border);
  color: var(--text); padding: 0.9rem 1.2rem; font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif; transition: border-color 0.3s;
  outline: none; width: 100%; border-radius: 2px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(212,130,156,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: #C8B8BE; }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  grid-column: 1 / -1; background: var(--pink); color: var(--white);
  border: none; padding: 1rem; font-size: 0.8rem; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all 0.3s; margin-top: 1rem;
  border-radius: 2px;
}
.form-submit:hover { background: var(--pink-dark); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── LOCATION ── */
.location { background: var(--white); text-align: center; }
.location-details {
  display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap;
  margin-top: 3rem;
}
.loc-item { }
.loc-icon { font-size: 1.5rem; color: var(--pink); margin-bottom: 0.5rem; }
.loc-title { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.loc-value { font-size: 0.95rem; color: var(--dark); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  padding: 3rem; text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: var(--pink-dark); margin-bottom: 1rem;
}
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--pink); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin: 1rem 0; }
.footer-social a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.footer-social a:hover { color: var(--pink); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; padding: 1rem 2rem;
  background: var(--pink); color: var(--white); font-size: 0.85rem;
  font-weight: 500; z-index: 9999; transform: translateY(100px);
  opacity: 0; transition: all 0.4s; border-radius: 2px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #C0392B; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,250,248,0.98); flex-direction: column; justify-content: center; align-items: center; gap: 2rem; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }
  section { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .location-details { gap: 2rem; }
  .about-stats { gap: 1.5rem; }
  .hero-logo { width: 80px; height: 80px; }
}
