/* Peach Please — Public site styles */
:root {
  --bg: #88ccff;
  --bg-deep: #5aabf0;
  --surface: #ffffff;
  --border: rgba(0,0,0,0.12);
  --text: #111;
  --text-muted: #446688;
  --accent: #f07040;
  --accent-dark: #c84e20;
  --accent-glow: rgba(240,112,64,0.25);
  --heading: 'Space Grotesk', sans-serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── HOME HERO ────────────────────────────────────────────────────────────── */
.page-home .hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(160deg, #a8e0ff 0%, #70bff5 40%, #5aabf0 100%);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
  max-width: 680px;
}
.hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}
.hero-title {
  font-family: var(--heading);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 4px;
}
.hero-sub {
  font-family: var(--heading);
  font-size: clamp(0.85rem, 2.5vw, 1.05rem);
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(0,0,0,0.72);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  padding: 14px 44px;
  background: #111;
  color: #fff;
  font-family: var(--heading);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 16px;
}
.hero-cta:hover { background: var(--accent); transform: translateY(-2px); }
.hero-info { font-size: 0.8rem; color: rgba(0,0,0,0.4); margin-top: 8px; }
.member-login-btn {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 2;
  color: rgba(0,0,0,0.65);
  font-size: 1rem;
  text-decoration: none;
  font-family: var(--heading);
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 8px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.45);
  transition: all 0.2s;
}
.member-login-btn:hover { background: rgba(255,255,255,0.7); }
.scroll-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(0,0,0,0.28);
  font-size: 4.5rem;
  line-height: 1;
  animation: bounce 2s infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── HOME BEATS ───────────────────────────────────────────────────────────── */
.home-content { max-width: 1100px; margin: 0 auto; padding: 60px 24px; }
.beat { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 80px 0; }
.beat:first-child { margin-top: 0; }
.beat-right .beat-text { order: 2; }
.beat-right .beat-photos { order: 1; }
.beat-text h2 { font-family: var(--heading); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700; color: #111; margin-bottom: 16px; letter-spacing: -0.01em; }
.beat-text p { font-size: 1.02rem; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.beat-text p:last-of-type { margin-bottom: 0; }
.beat-text a { color: var(--accent-dark); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.15s; }
.beat-text a:hover { border-bottom-color: var(--accent-dark); }
.beat-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.beat-list li { font-size: 1rem; color: var(--text); padding-left: 22px; position: relative; line-height: 1.5; }
.beat-list li::before { content: "✿"; position: absolute; left: 0; color: var(--accent); font-size: 0.9rem; }
.beat-cta { display: inline-block; margin-top: 8px; padding: 12px 36px; background: #111; color: #fff; font-family: var(--heading); font-weight: 600; font-size: 1rem; border-radius: 6px; text-decoration: none; transition: background 0.15s, transform 0.15s; }
.beat-cta:hover { background: var(--accent); transform: translateY(-2px); }
.beat-footnote { font-size: 0.88rem; color: var(--text-muted); margin-top: 24px; font-style: italic; }
.beat-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; min-height: 220px; }
.beat-photo { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; border-radius: 8px; cursor: pointer; transition: transform 0.2s, opacity 0.2s; opacity: 0.92; }
.beat-photo:hover { transform: scale(1.02); opacity: 1; }
.beat-photos:empty::before { content: "Photos coming soon"; grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; color: rgba(0,0,0,0.3); font-style: italic; border: 1px dashed rgba(0,0,0,0.15); border-radius: 8px; min-height: 200px; }

/* ── LIGHTBOX ─────────────────────────────────────────────────────────────── */
.home-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.88); z-index: 1000; align-items: center; justify-content: center; cursor: zoom-out; padding: 40px; }
.home-lightbox.active { display: flex; }
.home-lightbox img { max-width: 95%; max-height: 95%; object-fit: contain; border-radius: 6px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  .home-content { padding: 40px 16px; }
  .beat { grid-template-columns: 1fr; gap: 24px; margin: 48px 0; }
  .beat-right .beat-text, .beat-left .beat-text { order: 2; }
  .beat-right .beat-photos, .beat-left .beat-photos { order: 1; }
}
@media (max-width: 500px) {
  .hero-content { padding: 24px 16px; }
  .hero-cta { padding: 12px 32px; font-size: 0.95rem; width: 100%; text-align: center; }
  .hero-desc { font-size: 0.9rem; }
  .member-login-btn { top: 16px; right: 16px; font-size: 0.9rem; padding: 10px 18px; }
}
