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

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

:root {
  --rose:  #b07890;
  --sage:  #8aaa8a;
  --blush: #d4bcc8;
  --mint:  #c8d8c8;
  --cream: #fdf6f8;
  --mauve: #9a7a8a;
  --text:  #4a3038;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); font-family: 'Lato', sans-serif; color: var(--text); font-weight: 300; }

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 246, 248, 0.97);
  border-bottom: 1px solid #f0d8e8;
  padding: 14px 32px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; color: var(--rose); text-decoration: none;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mauve); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #f0d8e0 0%, #d8c4d0 50%, #c8d8c8 100%);
  padding: 72px 24px 64px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,220,235,0.35);
}
.hero::after {
  content: ''; position: absolute; bottom: -50px; left: -50px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(180,210,185,0.3);
}
.hero-photo {
  width: 180px; height: 180px; border-radius: 50%;
  margin: 0 auto 24px;
  border: 5px solid rgba(255,255,255,0.75);
  position: relative; z-index: 2; overflow: hidden;
  box-shadow: 0 8px 32px rgba(140,80,100,0.2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-name {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #fff; position: relative; z-index: 2; line-height: 1.05;
  text-shadow: 0 1px 1px rgba(40,10,25,0.95), 0 2px 6px rgba(40,10,25,0.85), 0 6px 20px rgba(40,10,25,0.5);
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(1rem, 3vw, 1.4rem);
  color: #fff; margin-top: 6px; letter-spacing: 0.06em;
  position: relative; z-index: 2;
  text-shadow: 0 1px 1px rgba(40,10,25,0.92), 0 2px 6px rgba(40,10,25,0.8), 0 5px 14px rgba(40,10,25,0.45);
}
.hero-divider {
  width: 60px; height: 1px; background: rgba(255,255,255,0.6);
  margin: 20px auto 0; position: relative; z-index: 2;
}

/* ---------- Section shared ---------- */
section { padding: 64px 24px; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #c4a0b0; margin-bottom: 10px;
}
.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--rose); margin-bottom: 24px;
}

/* ---------- About ---------- */
.about { background: #fffbfc; }
.about-layout { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
.about-text { flex: 1; min-width: 260px; font-size: 1rem; line-height: 1.8; color: #5a3a48; }
.about-text p + p { margin-top: 16px; }
.about-photo {
  width: 220px; height: 260px; border-radius: 16px; overflow: hidden;
  flex-shrink: 0; box-shadow: 0 6px 24px rgba(140,80,100,0.15);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, #f8f0f4 0%, #f0ece8 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px; margin-top: 12px;
}
.gallery-item {
  border-radius: 14px; overflow: hidden; aspect-ratio: 1;
  cursor: pointer; position: relative;
  box-shadow: 0 4px 16px rgba(140,80,100,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 28px rgba(140,80,100,0.2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(40,10,25,0.9); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  font-size: 2.5rem; color: rgba(255,255,255,0.7); cursor: pointer; line-height: 1;
  background: none; border: none;
}
.lightbox-close:hover { color: #fff; }

/* ---------- Testimonials ---------- */
.testimonials { background: #fffbfc; }
.testimonial-cards { display: flex; flex-direction: column; gap: 24px; }
.testimonial-card {
  background: var(--cream);
  border-radius: 16px; padding: 28px 32px;
  border-left: 4px solid var(--blush);
  box-shadow: 0 2px 12px rgba(140,80,100,0.07);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: #6a4858; line-height: 1.7; margin-bottom: 12px;
}
.testimonial-attr {
  font-size: 0.78rem; letter-spacing: 0.06em; color: #c4a0b0;
}

/* ---------- Booking ---------- */
.booking {
  background: linear-gradient(135deg, #e8d4dc 0%, #d4e0d4 100%);
  text-align: center;
}
.booking .section-title { color: #7a5868; }
.booking-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: #8a6070; margin-bottom: 32px; line-height: 1.6;
}
.cal-embed { max-width: 900px; margin: 0 auto; }

/* ---------- Footer ---------- */
footer {
  background: var(--cream); border-top: 1px solid #f0d8e8;
  padding: 28px 24px; text-align: center;
  font-size: 0.78rem; color: var(--mauve); letter-spacing: 0.05em;
}
footer a { color: var(--mauve); text-decoration: none; }
footer a:hover { color: var(--rose); }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  nav { padding: 12px 18px; }
  .nav-links { gap: 16px; }
  section { padding: 48px 18px; }
  .about-layout { flex-direction: column-reverse; }
  .about-photo { width: 100%; height: 220px; }
}
