@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #FFB7B2;
  --primary-dark: #ff9b94;
  --secondary: #B2E2F2;
  --accent: #E2F0CB;
  --warm: #FFDAC1;
  --lilac: #E0BBE4;
  --text: #3A3A3A;
  --muted: #9A9A9A;
  --bg: #FFFAF0;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text);
  line-height: 1.15;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ─── NAVBAR ─────────────────────────────── */
header {
  position: fixed; top: 0; width: 100%; z-index: 900;
  background: rgba(255,250,240,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,183,178,0.15);
  transition: var(--transition);
}

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem; max-width: 1280px; margin: 0 auto;
}

.logo-text {
  font-size: 2rem; font-weight: 900; letter-spacing: -1.5px;
  background: linear-gradient(120deg, var(--primary-dark), #c879b0 60%, var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex; list-style: none; align-items: center; gap: 2.2rem;
}

.nav-links a {
  text-decoration: none; color: var(--text); font-weight: 500;
  font-size: 0.97rem; position: relative; transition: var(--transition);
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary-dark); }
.nav-links a:hover::after { width: 100%; }

.auth-btns { display: flex; align-items: center; gap: 1rem; }

/* ─── BUTTONS ────────────────────────────── */
.btn {
  padding: 0.7rem 1.7rem; font-size: 0.97rem; font-weight: 600;
  border-radius: var(--radius-md); border: none; cursor: pointer;
  transition: var(--transition); text-decoration: none;
  display: inline-block; text-align: center; font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 6px 20px rgba(255,183,178,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,183,178,0.5);
}

.btn-secondary {
  background: var(--secondary); color: #3a3a3a;
  box-shadow: 0 6px 20px rgba(178,226,242,0.3);
}
.btn-secondary:hover { transform: translateY(-3px); background: #9ad6ed; }

.btn-outline {
  background: transparent; border: 2px solid var(--primary); color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.btn-lg { padding: 1rem 2.4rem; font-size: 1.08rem; }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding-top: 80px;
}

.hero-blob-1 {
  position: absolute; top: -8%; right: -6%; width: 560px; height: 560px;
  background: radial-gradient(circle at 40% 40%, var(--warm) 0%, transparent 65%);
  opacity: 0.55; z-index: 0; border-radius: 50%;
  animation: floatBlob 7s ease-in-out infinite alternate;
}
.hero-blob-2 {
  position: absolute; bottom: -10%; left: -8%; width: 480px; height: 480px;
  background: radial-gradient(circle at 60% 60%, var(--secondary) 0%, transparent 65%);
  opacity: 0.45; z-index: 0; border-radius: 50%;
  animation: floatBlob 9s ease-in-out infinite alternate-reverse;
}
.hero-blob-3 {
  position: absolute; top: 30%; left: 5%; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--lilac) 0%, transparent 70%);
  opacity: 0.4; z-index: 0; border-radius: 50%;
  animation: floatBlob 11s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(20px, 30px) scale(1.06); }
}

.hero-content {
  position: relative; z-index: 10; text-align: center;
  max-width: 780px; animation: fadeInUp 1s ease-out;
}

.hero-kicker {
  display: inline-block; background: rgba(255,183,178,0.18);
  color: var(--primary-dark); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 2px; text-transform: uppercase; padding: 0.4rem 1.2rem;
  border-radius: 50px; margin-bottom: 1.6rem; border: 1px solid rgba(255,183,178,0.4);
}

.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 900; margin-bottom: 1.6rem;
}
.hero-title .highlight {
  color: var(--primary-dark);
  position: relative; display: inline-block;
}
.hero-title .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; width: 100%; height: 6px;
  background: var(--warm); border-radius: 4px; z-index: -1; opacity: 0.7;
}

.hero-subtitle {
  font-size: 1.22rem; color: var(--muted); margin-bottom: 3rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}

.hero-btns { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center;
  margin-top: 4rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900;
  color: var(--text);
}
.stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 500; letter-spacing: 0.5px; }

/* ─── SECTIONS ───────────────────────────── */
section { padding: 7rem 0; }

.section-header { text-align: center; margin-bottom: 4.5rem; }

.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--primary-dark);
  margin-bottom: 0.8rem; padding: 0.3rem 1rem;
  background: rgba(255,183,178,0.12); border-radius: 50px;
  border: 1px solid rgba(255,183,178,0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem;
  position: relative; display: inline-block;
}
.section-title::after {
  content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 4px; background: var(--lilac); border-radius: 10px;
}
.section-subtitle { font-size: 1.05rem; color: var(--muted); margin-top: 1.5rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ─── EVENT CARDS ────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; }

.event-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.03);
}
.event-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.card-img { height: 280px; overflow: hidden; position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.event-card:hover .card-img img { transform: scale(1.07); }

.card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(8px);
  color: var(--primary-dark); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px;
}

.card-body { padding: 2.2rem; }
.card-cat { font-size: 0.77rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-dark); margin-bottom: 0.5rem; display: block; }
.card-title { font-size: 1.7rem; margin-bottom: 0.8rem; }
.card-desc { color: var(--muted); font-size: 0.97rem; margin-bottom: 1.6rem; line-height: 1.6; }

/* ─── ABOUT SECTION ──────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.about-img img { width: 100%; display: block; }
.about-img::before {
  content: ''; position: absolute; inset: -8px; border-radius: calc(var(--radius-lg) + 8px);
  border: 3px solid var(--lilac); z-index: -1; opacity: 0.6;
}
.about-content { padding: 1rem 0; }
.about-content .section-title::after { left: 0; transform: none; }
.about-content p { color: var(--muted); font-size: 1.05rem; margin-top: 1.5rem; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; text-align: center; box-shadow: var(--shadow-sm);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.03);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feat-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.feat-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.feat-desc { color: var(--muted); font-size: 0.92rem; }

/* ─── WHY CHOOSE ─────────────────────────── */
.why-bg { background: linear-gradient(135deg, rgba(224,187,228,0.12), rgba(178,226,242,0.12)); border-radius: var(--radius-lg); }

/* ─── MODAL ──────────────────────────────── */
.modal {
  position: fixed; inset: 0; background: rgba(30,20,40,0.45);
  backdrop-filter: blur(10px); display: none; align-items: center;
  justify-content: center; z-index: 2000; opacity: 0; transition: opacity 0.3s ease;
  padding: 1rem;
}
.modal.active { display: flex; opacity: 1; }

.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 3.5rem 3rem 3rem; width: 100%; max-width: 560px;
  position: relative; box-shadow: var(--shadow-lg);
  animation: zoomIn 0.38s cubic-bezier(0.175,0.885,0.32,1.275);
  max-height: 90vh; overflow-y: auto;
}

.close-btn {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--bg); border: none; width: 38px; height: 38px;
  border-radius: 50%; font-size: 1.4rem; cursor: pointer;
  color: var(--muted); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.close-btn:hover { background: var(--primary); color: #fff; }

.modal-title { font-size: 1.9rem; margin-bottom: 0.4rem; }
.modal-subtitle { color: var(--muted); font-size: 0.97rem; margin-bottom: 2.2rem; }

/* ─── FORMS ──────────────────────────────── */
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; margin-bottom: 0.45rem; font-weight: 600; font-size: 0.9rem; color: var(--text); }
.form-input {
  width: 100%; padding: 0.9rem 1.2rem; border-radius: var(--radius-sm);
  border: 2px solid #EDEDED; background: #F8F8F8;
  font-family: 'DM Sans', sans-serif; font-size: 0.97rem;
  transition: var(--transition); color: var(--text);
}
.form-input:focus { outline: none; border-color: var(--secondary); background: #fff; box-shadow: 0 0 0 4px rgba(178,226,242,0.22); }

.services-wrap { display: flex; flex-direction: column; gap: 0.6rem; }
.service-label { display: flex; align-items: center; gap: 0.6rem; cursor: pointer; font-size: 0.95rem; font-weight: 500; }
.service-label input { accent-color: var(--primary-dark); width: 16px; height: 16px; }

.private-hidden { display: none; }

/* ─── AUTH PAGES ─────────────────────────── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--lilac) 50%, var(--secondary) 100%);
  padding: 2rem;
}
.auth-card {
  background: var(--white); padding: 4rem 3rem;
  border-radius: var(--radius-lg); width: 100%;
  max-width: 480px; box-shadow: var(--shadow-lg); text-align: center;
}
.auth-card h1 { font-size: 2.4rem; margin-bottom: 0.5rem; }
.auth-card h1 span { color: var(--primary-dark); }
.auth-card .sub { color: var(--muted); margin-bottom: 2.5rem; }
.auth-card a.back { text-decoration: none; color: var(--muted); font-size: 0.88rem; display: block; margin-bottom: 1.8rem; }
.auth-card a.back:hover { color: var(--primary-dark); }
.auth-foot { margin-top: 1.8rem; color: var(--muted); font-size: 0.93rem; }
.auth-foot a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }
.auth-foot a:hover { text-decoration: underline; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ─── PROFILE PAGE ───────────────────────── */
.profile-page { min-height: 100vh; padding: 6rem 0 4rem; background: var(--bg); }
.profile-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 4rem; box-shadow: var(--shadow-sm);
  max-width: 860px; margin: 0 auto; position: relative;
}
.profile-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  border: 6px solid var(--white); box-shadow: var(--shadow-md);
  overflow: hidden; background: var(--bg); margin: 0 auto 1.5rem;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-name { font-size: 2.2rem; text-align: center; }
.profile-handle { color: var(--muted); text-align: center; font-size: 1rem; margin-top: 0.3rem; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.info-tile {
  background: #FDFBF7; padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md); border: 1px solid rgba(0,0,0,0.04);
}
.info-lbl { font-size: 0.74rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; display: block; }
.info-val { font-size: 1.1rem; font-weight: 600; color: var(--text); }

.bookings-section { margin-top: 3.5rem; }
.bookings-title { font-size: 1.6rem; margin-bottom: 1.5rem; }
.booking-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.5rem; background: #fff;
  border: 1px solid #F2F2F2; border-radius: var(--radius-md);
  margin-bottom: 0.8rem; transition: var(--transition);
}
.booking-row:hover { border-color: var(--secondary); transform: translateX(6px); }
.booking-row h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.booking-row p { font-size: 0.82rem; color: var(--muted); }
.badge {
  padding: 0.35rem 1rem; border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; white-space: nowrap;
}
.badge-confirmed { background: var(--accent); color: #2D5A27; }
.badge-pending { background: var(--warm); color: #8F5B3C; }

/* ─── TOAST ──────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--accent); color: #3a3a3a;
  padding: 0.9rem 2.5rem; border-radius: 50px;
  box-shadow: var(--shadow-md); font-weight: 600; z-index: 3500;
  transition: transform 0.38s cubic-bezier(0.175,0.885,0.32,1.275);
  font-size: 0.97rem;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  padding: 3rem 0; background: var(--white);
  text-align: center; border-top: 1px solid #F0EEEA;
}
footer p { color: var(--muted); font-size: 0.92rem; }
footer span { color: var(--primary-dark); font-weight: 600; }

/* ─── ANIMATIONS ─────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in-delay { animation: fadeInUp 0.7s 0.18s ease both; }
.fade-in-delay-2 { animation: fadeInUp 0.7s 0.36s ease both; }

/* ─── PAGE VISIBILITY ────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { max-width: 500px; margin: 0 auto; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-stats { gap: 1.5rem; }
  .auth-card { padding: 2.5rem 1.8rem; }
  .modal-box { padding: 2.5rem 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .profile-card { padding: 2.5rem 1.5rem; }
}
