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

/* ── Variables ── */
:root {
  --rose:       #2c5f8a;
  --rose-light: #4a84b5;
  --blush:      #edf3f9;
  --blush-deep: #ccdeed;
  --cream:      #f7f9fc;
  --sage:       #5b8db8;
  --sage-light: #d0e4f2;
  --text:       #1a2533;
  --text-soft:  #4a5c6e;
  --white:      #ffffff;
  --shadow:     0 4px 24px rgba(44, 95, 138, 0.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  color-scheme: light;
}
body {
  font-family: 'Nunito', sans-serif;
  background: #f7f9fc !important;
  color: #1a2533 !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Force light mode on all elements regardless of system preference */
nav, footer, .card, .tour-card, .book-card, .retreat-detail, .contact-link,
input, textarea, select, .hero, .section, .section-pink, .section-sage,
.page-header, .retreat-hero {
  color-scheme: light;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Dancing Script', cursive; line-height: 1.2; }
h1 { font-size: clamp(4.5rem, 11vw, 8rem); color: var(--rose); }
h2 { font-size: clamp(3.5rem, 7vw, 5.5rem); color: var(--rose); }
h3 { font-size: 2.8rem; color: var(--rose); }
p  { font-family: 'Lora', serif; font-size: 1.6rem; color: var(--text-soft); }

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--blush-deep);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
}
.nav-inner {
  max-width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img {
  height: 64px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--rose); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ── */
.hero {
  background: var(--white);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  border-bottom: 2px solid var(--blush-deep);
}
.hero-image-side { display: none; }
.hero-content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  display: block;
  width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(44, 95, 138, 0.15);
  flex-shrink: 0;
}
.hero h1 {
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero p {
  font-size: 1.35rem;
  margin: 0 auto 2rem;
  max-width: 560px;
  color: var(--text-soft);
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.badge {
  background: var(--white);
  border: 2px solid var(--blush-deep);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(44, 95, 138, 0.3);
}
.btn-primary:hover {
  background: #1e4266;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 138, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Section wrapper ── */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title p {
  max-width: 560px;
  margin: 0.75rem auto 0;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  border-radius: 999px;
  margin: 0.75rem auto 0;
}

/* ── Cards ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-deep);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(44, 95, 138, 0.12);
}
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.card p  { font-size: 0.95rem; margin-bottom: 1.25rem; }

/* ── About section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }
.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--blush);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

/* ── Tours ── */
.tour-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2rem 2rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-deep);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.2s;
}
.tour-card:hover { transform: translateY(-3px); }
.tour-date-block {
  background: var(--rose);
  color: var(--white);
  border-radius: 14px;
  min-width: 64px;
  text-align: center;
  padding: 0.6rem 0.8rem;
  flex-shrink: 0;
}
.tour-date-block .month {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tour-date-block .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.tour-info h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.tour-info p  { font-size: 0.9rem; margin-bottom: 0.75rem; }
.tour-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.tour-meta span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose);
  background: var(--blush);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}
.tour-list { display: flex; flex-direction: column; gap: 1.25rem; }

/* ── Retreat ── */
.retreat-hero {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--blush) 100%);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}
.retreat-hero h2 { color: var(--rose); margin-bottom: 0.5rem; }
.retreat-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.retreat-detail {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.retreat-detail .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.retreat-detail strong { display: block; color: var(--rose); font-family: 'Dancing Script', cursive; font-size: 1.1rem; }
.retreat-detail span { font-size: 0.85rem; color: var(--text-soft); font-family: 'Nunito', sans-serif; }

/* ── Book recommendations ── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
}
.book-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-deep);
  text-align: center;
  transition: transform 0.2s;
}
.book-card:hover { transform: translateY(-4px); }
.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}
.book-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.book-card h3 { font-size: 1rem; margin-bottom: 0.2rem; color: var(--rose); }
.book-card .author { font-size: 0.8rem; color: var(--text-soft); font-family: 'Nunito', sans-serif; margin-bottom: 0.5rem; }
.book-card .genre {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--blush);
  color: var(--rose);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  transition: all 0.2s;
  box-shadow: var(--shadow);
}
.contact-link:hover {
  border-color: var(--rose);
  transform: translateX(4px);
}
.contact-link .icon { font-size: 1.4rem; }
.contact-link span { font-weight: 600; font-size: 0.95rem; color: var(--text); }
form { display: flex; flex-direction: column; gap: 1rem; }
input, textarea, select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--blush-deep);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--rose); }
textarea { resize: vertical; min-height: 130px; }
label { font-size: 0.85rem; font-weight: 700; color: var(--text-soft); margin-bottom: -0.5rem; }

/* ── Footer ── */
footer {
  background: var(--white);
  border-top: 2px solid var(--blush-deep);
  padding: 2.5rem 2rem;
  text-align: center;
}
footer p { font-size: 0.85rem; color: var(--text-soft); font-family: 'Nunito', sans-serif; }
.footer-social { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer-social a {
  background: var(--blush);
  color: var(--rose);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--rose); color: var(--white); transform: translateY(-2px); }

/* ── Calendar ── */
.calendar-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--blush-deep);
}
.calendar-header {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 1.25rem 1rem;
}
.calendar-header h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--white);
  margin: 0;
}
.calendar-header p {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  margin: 0.2rem 0 0;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-day-name {
  background: var(--sage-light);
  text-align: center;
  padding: 0.8rem 0.25rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2c5f8a;
  border-bottom: 2px solid #a8cfe6;
}
.cal-cell {
  min-height: 120px;
  border-right: 1px solid var(--blush-deep);
  border-bottom: 1px solid var(--blush-deep);
  padding: 0.75rem;
  vertical-align: top;
  position: relative;
}
.cal-cell:nth-child(7n) { border-right: none; }
.cal-cell.empty { background: #fafafa; }
.cal-cell.has-walk { background: #f5faf4; }
.cal-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.cal-cell.has-walk .cal-num {
  color: #2c5f8a;
}
.cal-event {
  background: var(--sage);
  color: var(--white);
  border-radius: 6px;
  padding: 0.35rem 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cal-cell { min-height: 80px; padding: 0.4rem; }
  .cal-event { font-size: 0.8rem; padding: 0.2rem 0.35rem; }
  .cal-day-name { font-size: 0.9rem; padding: 0.5rem 0.1rem; }
  .cal-num { font-size: 1.1rem; }
}

/* ── Announcement Bar ── */
.announce-bar {
  background: #7c3d0f;
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.announce-bar a {
  background: var(--white);
  color: #7c3d0f;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}
.announce-bar a:hover { background: #fde8d0; }

/* ── Book Crawl Hero ── */
.crawl-hero {
  background: linear-gradient(160deg, #3d1a08 0%, #7c3d0f 50%, #b85c1a 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.crawl-hero-inner { max-width: 820px; margin: 0 auto; }
.crawl-eyebrow-hero {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.crawl-hero h1 {
  color: var(--white) !important;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.crawl-tagline {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 700;
  color: rgba(255,255,255,0.9) !important;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem !important;
}
.crawl-cta-btn {
  background: var(--white);
  color: #7c3d0f;
  font-size: 1.2rem;
  padding: 1.1rem 3rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.crawl-cta-btn:hover {
  background: #fde8d0;
  transform: translateY(-2px);
}
.sold-out-badge {
  display: inline-block;
  background: var(--white);
  color: #7c3d0f;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  padding: 0.7rem 2.2rem;
  border-radius: 999px;
  border: 3px solid var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.crawl-warning {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  color: rgba(255,255,255,0.65) !important;
  margin-top: 1.25rem !important;
  letter-spacing: 0.04em;
}

/* ── Book Crawl stat numbers ── */
.crawl-stat {
  font-family: 'Dancing Script', cursive;
  font-size: 5rem;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.25rem;
}

/* ── Bookstore grid ── */
.bookstore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.bookstore-card {
  background: var(--white);
  border: 2px solid var(--blush-deep);
  border-left: 5px solid #b85c1a;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.bookstore-card h3 {
  font-size: 1.4rem;
  color: #7c3d0f;
}

/* ── Book Crawl Banner ── */
.book-crawl-banner {
  background: var(--rose);
  padding: 3rem 2rem;
}
.book-crawl-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.crawl-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}
.book-crawl-text h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.5rem;
}
.book-crawl-text p {
  color: rgba(255,255,255,0.88);
  font-size: 1.2rem;
  margin: 0;
  max-width: 560px;
}
.book-crawl-btn {
  background: var(--white);
  color: var(--rose);
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.book-crawl-btn:hover {
  background: var(--blush);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .book-crawl-inner { flex-direction: column; text-align: center; }
  .book-crawl-text p { max-width: 100%; }
}

/* ── Pink alt section ── */
.section-pink { background: var(--blush); }
.section-sage  { background: var(--sage-light); }

/* ── Page header ── */
.page-header {
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.page-header p { max-width: 560px; margin: 0.75rem auto 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--blush-deep);
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-side { min-height: 320px; }
  .hero-content { padding: 3rem 1.5rem; text-align: center; }
  .hero-badges { justify-content: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { aspect-ratio: 3/2; font-size: 4rem; }
  .tour-card { flex-direction: column; }
  .section { padding: 3rem 1.25rem; }
  .retreat-hero { padding: 2rem 1.25rem; }
}

/* ── Override dark mode — this site is always light ── */
@media (prefers-color-scheme: dark) {
  :root {
    --rose:       #2c5f8a;
    --rose-light: #f472a0;
    --blush:      #edf3f9;
    --blush-deep: #ccdeed;
    --cream:      #f7f9fc;
    --sage:       #5b8db8;
    --sage-light: #d0e4f2;
    --text:       #1a2533;
    --text-soft:  #4a5c6e;
    --white:      #ffffff;
    --shadow:     0 4px 24px rgba(44, 95, 138, 0.10);
  }
  body { background: #f7f9fc !important; color: #1a2533 !important; }
  nav, .card, .tour-card, .book-card, .retreat-detail, .contact-link,
  footer, .badge { background-color: #ffffff !important; }
  .hero, .section-pink { background: #edf3f9 !important; }
  .section-sage, .retreat-hero { background: #d4e8d0 !important; }
  input, textarea, select { background: #ffffff !important; color: #1a2533 !important; }
  h1, h2, h3 { color: #2c5f8a !important; }
  p { color: #4a5c6e !important; }
}
