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

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ─── WordPress block editor resets ─────────────────────────────────────── */
.wp-site-blocks { padding: 0 !important; }
.wp-block-group { margin: 0 !important; }
.is-layout-flow > * { margin-block-start: 0 !important; margin-block-end: 0 !important; }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.solstice-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 48px;
  gap: 40px;
  transition: color 0.8s ease;
}

.solstice-nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: absolute;
  left: 48px;
}

.solstice-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.solstice-nav a:hover { opacity: 1; }

/* ─── Sections ───────────────────────────────────────────────────────────── */
.solstice-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 60px;
  transition: background-color 1s ease;
}

.solstice-section-content {
  position: relative;
  z-index: 20;
  max-width: 420px;
  transition: color 0.8s ease;
}

/* Remove WP block margins inside section */
.solstice-section-content .wp-block-group,
.solstice-section-content .wp-block-paragraph,
.solstice-section-content .wp-block-heading {
  margin: 0 !important;
}

.solstice-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}

.solstice-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px !important;
}

.solstice-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.6;
  font-weight: 300;
  max-width: 340px;
}

/* ─── Tags ───────────────────────────────────────────────────────────────── */
.solstice-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.solstice-tag {
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid currentColor;
  opacity: 0.6;
  cursor: default;
  transition: opacity 0.3s;
}

.solstice-tag:hover { opacity: 1; }

/* ─── Season backgrounds ─────────────────────────────────────────────────── */
.section-spring { background: var(--wp--preset--color--spring, #c8dbbe); }
.section-summer { background: var(--wp--preset--color--summer, #e8d4b0); }
.section-autumn { background: var(--wp--preset--color--autumn, #d4bfaa); }
.section-winter { background: var(--wp--preset--color--winter, #b8c8dc); }

/* ─── Scroll indicator dots ──────────────────────────────────────────────── */
.section-indicator {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.indicator-dot.active {
  background: currentColor;
  transform: scale(1.3);
}

/* ─── Scroll hint ────────────────────────────────────────────────────────── */
.scroll-hint {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.4;
  animation: pulseHint 2s ease-in-out infinite;
  transition: opacity 0.6s;
}

@keyframes pulseHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .solstice-section   { padding: 60px 28px; }
  .solstice-nav       { padding: 20px 24px; }
  .solstice-nav .logo { left: 24px; }
  .section-indicator  { right: 16px; }
}
