/* ── Base ──────────────────────────────────────────── */
body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #1a1a1a;
}

/* ── Navbar ────────────────────────────────────────── */
.site-navbar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--main-open-sky) !important;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-link {
  font-size: 0.9rem;
  color: #444 !important;
  text-decoration: none;
  padding: 0.25rem 0;
}
.nav-link:hover { color: var(--main-open-sky) !important; }

/* ── Hero ──────────────────────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--main-open-sky) 0%, var(--main-night-fall) 100%);
  color: #fff;
  padding: 5rem 0 4rem;
}

/* ── Cards ─────────────────────────────────────────── */
.act-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}
.act-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  border-color: var(--main-open-sky);
}

/* ── Date box ──────────────────────────────────────── */
.date-box {
  background: var(--main-open-sky);
  color: #fff;
  border-radius: 0.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.date-box .month {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}
.date-box .day {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Badges ────────────────────────────────────────── */
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}
.type-badge-moment {
  background: #fff;
  color: var(--main-open-sky);
  border: 1px solid var(--main-open-sky);
}
.type-badge-loop {
  background: #fff;
  color: var(--main-late-sun);
  border: 1px solid var(--main-late-sun);
}

.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 500;
  background: var(--main-soft-morning);
  color: var(--main-night-fall);
  border: 1px solid var(--main-hazy-sky);
}

/* ── Schedule box (loops) ──────────────────────────── */
.schedule-box {
  background: var(--main-soft-afterglow);
  border: 1px solid hsl(40deg 60% 88%);
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  color: var(--main-late-sun);
  font-weight: 500;
}

/* ── Price ─────────────────────────────────────────── */
.price-tag {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--main-open-sky);
}

/* ── Section cards on home ─────────────────────────── */
.section-card {
  border-radius: 1.25rem;
  padding: 2rem;
}
.section-card-moments {
  background: var(--main-soft-morning);
  border: 1px solid var(--main-hazy-sky);
}
.section-card-loops {
  background: var(--main-soft-afterglow);
  border: 1px solid hsl(40deg 60% 88%);
}
.section-card-places {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

/* ── Detail page info blocks ───────────────────────── */
.info-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}
.info-block-sky {
  background: var(--main-soft-morning);
  border: 1px solid var(--main-hazy-sky);
}
.info-block-sun {
  background: var(--main-soft-afterglow);
  border: 1px solid hsl(40deg 60% 88%);
}

/* ── Booking sidebar ───────────────────────────────── */
.booking-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
}
.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.booking-row:last-of-type { border-bottom: none; }

/* ── Prose ─────────────────────────────────────────── */
.prose { max-width: 680px; }
.prose h1, .prose h2, .prose h3 {
  color: var(--main-night-fall);
  font-weight: 700;
  margin-top: 1.75rem;
}
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.3rem; }
.prose strong { color: var(--main-night-fall); }

/* ── Inbox layout — exact copy from index.html ── */
.inbox-nav      { display: grid; gap: 1.5rem; }
.nav-section    { display: grid; gap: 0.75rem; }
.nav-title {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs-secondary-color, #6c757d);
}
.nav-list  { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.nav-item  { list-style: none; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.5rem;
}
.cards > * {
  display: block;
  min-width: 0;
  width: min(100%, 300px);
  justify-self: center;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  color: var(--bs-secondary-color, #6c757d);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bs-border-color, #dee2e6);
}

/* ── Places index intro (exact from places/list.html) ── */
.places-index-intro {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid hsl(200.13deg 32% 86%);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 .125rem .25rem rgba(0,0,0,0.075);
}
.places-index-intro__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  color: var(--main-night-fall);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.places-index-intro__text {
  max-width: 42rem;
  margin: 0;
  color: #343a40;
  font-size: 1rem;
  line-height: 1.55;
}
@media (min-width: 48rem) {
  .places-index-intro        { padding: 1.15rem 1.35rem; }
  .places-index-intro__text  { font-size: 1.06rem; }
}

/* ── Footer ────────────────────────────────────────── */
.site-footer {
  background: var(--main-first-light);
  border-top: 1px solid var(--main-soft-morning);
  padding: 2rem 0;
  font-size: 0.875rem;
  color: var(--main-night-fall);
  margin-top: 4rem;
}

/* ── Utilities ─────────────────────────────────────── */
.text-open-sky   { color: var(--main-open-sky)    !important; }
.bg-open-sky     { background: var(--main-open-sky) !important; }
.text-late-sun   { color: var(--main-late-sun)    !important; }
.text-night-fall { color: var(--main-night-fall)  !important; }
.bg-soft-morning { background: var(--main-soft-morning) !important; }
.rounded-act     { border-radius: 1rem            !important; }
.card-meta       { font-size: 0.8rem; color: #6c757d; }
.host-name       { font-size: 0.72rem; font-weight: 500; color: #6c757d; }
