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

:root {
  --background: #fff0f3;
  --foreground: #333333;
  --card: #fffafc;
  --card-border: #f5d0d8;
  --primary: #ff69b4;
  --primary-foreground: #ffffff;
  --secondary: #f7d9e0;
  --secondary-foreground: #333333;
  --muted: #faeef1;
  --muted-foreground: #666666;
  --border: #f0cdd5;
  --radius: 1rem;
  --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

.dark {
  --background: #2d0f1f;
  --foreground: #ffe6ec;
  --card: #3a1527;
  --card-border: #5a2a42;
  --primary: #ff69b4;
  --secondary: #4a2340;
  --muted: #4a1d35;
  --muted-foreground: #d9a8b9;
  --border: #5a2a42;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; }

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

/* Age gate modal */
.age-modal {
  position: fixed; inset: 0; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}

.age-modal-bg {
  position: absolute; inset: 0;
  background: var(--background);
  opacity: 0.85;
  backdrop-filter: blur(8px);
}

.age-modal-card {
  position: relative; z-index: 10;
  width: 100%; max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.age-modal-card h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 1rem;
}

.age-modal-card p {
  margin-bottom: 1.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.checkbox-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  cursor: pointer;
}

.checkbox-row input { display: none; }

.checkbox-box {
  width: 1.25rem; height: 1.25rem;
  border: 2px solid var(--primary);
  border-radius: 0.35rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
  opacity: 0.6;
}

.checkbox-row input:checked + .checkbox-box {
  background: var(--primary);
  opacity: 1;
}

.checkbox-box svg {
  width: 0.85rem; height: 0.85rem;
  color: var(--primary-foreground);
  opacity: 0;
}

.checkbox-row input:checked + .checkbox-box svg { opacity: 1; }

.age-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.age-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Navbar */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
}

.nav-links {
  display: none; align-items: center; gap: 1.5rem;
}

.nav-links a { font-size: 0.9rem; opacity: 0.85; transition: opacity 0.2s ease; }
.nav-links a:hover { opacity: 1; color: var(--primary); }
.nav-links a.active { color: var(--primary); font-weight: 500; }

.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--primary); color: var(--primary-foreground); }
.btn-primary:hover { opacity: 0.9; }

.btn-secondary { background: var(--card); border: 1px solid var(--border); color: var(--foreground); }
.btn-secondary:hover { background: var(--secondary); }

.theme-toggle {
  width: 2.5rem; height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  width: 2.5rem; height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}

.hamburger span { width: 1.1rem; height: 2px; background: var(--foreground); border-radius: 2px; }

.mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  flex-direction: column; gap: 1rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a { font-size: 1rem; }

/* Layout */
main { flex-grow: 1; padding-top: 6rem; padding-bottom: 3rem; }

.container {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
}

.section-center {
  text-align: center; padding: 2rem 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,105,180,0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--font-serif); }

.page-title {
  font-size: 2.5rem; font-style: italic; margin-bottom: 0.75rem;
}

.page-subtitle {
  font-size: 1.1rem; color: var(--muted-foreground); max-width: 600px; margin: 0 auto;
}

.hero h1 {
  font-size: 3rem; line-height: 1.1;
}

.hero h1 .italic { font-style: italic; color: var(--primary); }

.hero p { font-size: 1.1rem; max-width: 640px; margin: 1.5rem auto; color: var(--muted-foreground); line-height: 1.7; }

.hero-buttons { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; margin-top: 2rem; }

.hero-img { width: 100%; max-width: 800px; margin: 3rem auto 0; border-radius: 1.5rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}

.about-text { font-size: 1.1rem; line-height: 1.8; color: var(--muted-foreground); }
.about-text p { margin-bottom: 1.25rem; }
.about-text .accent { color: var(--primary); font-style: italic; font-weight: 500; }

.cta-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem;
  padding: 2rem; text-align: center; margin-top: 2rem;
}

/* Services */
.location-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.location-card {
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem;
  padding: 1.75rem; gap: 1rem;
}
.location-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.location-card p { color: var(--muted-foreground); line-height: 1.6; }
.price-tag {
  display: inline-block; background: var(--secondary); padding: 0.4rem 0.9rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 500; white-space: nowrap;
}

.feature-block {
  background: rgba(255,105,180,0.06); border: 1px solid rgba(255,105,180,0.2);
  border-radius: 1.5rem; padding: 2.5rem; text-align: center; margin-top: 3rem;
}
.feature-block h3 { font-size: 1.75rem; color: var(--primary); font-style: italic; margin-bottom: 1rem; }
.feature-block p { color: var(--muted-foreground); max-width: 600px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* Booking */
.rules-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.rules-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.5); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1.25rem;
}
.rules-list li .num {
  flex-shrink: 0; width: 2rem; height: 2rem; border-radius: 999px;
  background: rgba(255,105,180,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-weight: 500;
}
.rules-list li p { color: var(--muted-foreground); line-height: 1.7; padding-top: 0.25rem; }

/* Contact form */
.form-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 1.5rem;
  padding: 2rem; margin-top: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.85rem; font-weight: 500; margin-left: 0.25rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--background); border: 1px solid var(--border); border-radius: 1rem;
  padding: 0.85rem 1rem; font-family: inherit; font-size: 1rem; color: var(--foreground);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,105,180,0.15); }
.checkbox-field {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.5); border: 1px solid var(--border); border-radius: 1rem;
  padding: 1rem; cursor: pointer;
}
.checkbox-field input { display: none; }
.checkbox-field .box { width: 1.25rem; height: 1.25rem; border: 2px solid var(--primary); border-radius: 0.35rem; display: flex; align-items: center; justify-content: center; opacity: 0.6; }
.checkbox-field input:checked + .box { background: var(--primary); opacity: 1; }
.checkbox-field .box svg { width: 0.85rem; height: 0.85rem; color: var(--primary-foreground); opacity: 0; }
.checkbox-field input:checked + .box svg { opacity: 1; }

.notice-box {
  padding: 1rem; border-radius: 1rem; font-size: 0.9rem; line-height: 1.6; transition: all 0.3s ease;
}
.notice-box.default { background: var(--secondary); color: var(--muted-foreground); }
.notice-box.active { background: rgba(255,105,180,0.1); color: var(--primary); font-weight: 500; }

.submit-btn { width: 100%; padding: 1rem; margin-top: 1rem; }

/* Gallery */
.gallery-masonry {
  columns: 1; column-gap: 1rem; margin-top: 2rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: 1rem; overflow: hidden; cursor: pointer; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.gallery-item img { width: 100%; height: auto; object-fit: cover; }

.lightbox {
  position: fixed; inset: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.92); padding: 1rem;
}
.dark .lightbox { background: rgba(45,15,31,0.95); }
.lightbox img { max-height: 90dvh; max-width: 90dvw; object-fit: contain; border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.5rem; height: 2.5rem; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* Footer */
footer {
  background: var(--card); border-top: 1px solid var(--border); padding: 4rem 1.5rem; margin-top: auto; text-align: center;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.75rem; color: var(--primary); margin-bottom: 1.5rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; font-size: 0.85rem; margin-bottom: 1.5rem; }
.footer-links span { color: var(--border); }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; justify-content: center; gap: 1rem; font-size: 0.85rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }
.footer-social a:hover { color: var(--primary); }
.footer-cta { display: inline-block; background: rgba(255,105,180,0.1); color: var(--primary); padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; }
.footer-cta:hover { background: rgba(255,105,180,0.2); }
.footer-copy { font-size: 0.75rem; color: var(--muted-foreground); }

/* Responsive */
@media (min-width: 640px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .hero h1 { font-size: 4.5rem; }
  .hero-buttons { flex-direction: row; justify-content: center; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .location-card { flex-direction: row; align-items: center; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  .page-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .gallery-masonry { columns: 3; }
  .hero h1 { font-size: 5rem; }
}

.fade-in { animation: fadeInUp 0.7s ease-out both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }
