* {
  box-sizing: border-box;
}

:root {
  --accent: #8aa67a; /* soft sage green */
  --accent-dark: #6f8f61;
  --muted: #7c7c7c;
  --card-bg: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,0.06);
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #fbfbfb;
  font-size: 16px;
  line-height: 1.62;
}

body {
  overflow-x: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.95);
}

.logo-holder img {
  display: block;
  max-height: 90px;
  width: auto;
}

.nav-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-button span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #111;
}

.main-menu {
  display: flex;
  align-items: center;
}

.main-menu ul {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu a {
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  margin-top: 90px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-track {

/* subtle improvements for content cards and buttons */
.post.fl-wrap.fw-post {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.post.fl-wrap.fw-post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
  padding: 24px 0 34px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  touch-action: pan-x;
}

.slider-track.dragging {
  cursor: grabbing;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 860px;
  height: 100%;
  position: relative;
  scroll-snap-align: center;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* filter: saturate(0.2) brightness(0.95); */
}

/* Button theme override: softer, floral-friendly accent */
.btn.fl-btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 28px rgba(138,166,122,0.16);
}
.btn.fl-btn:hover,
.btn.fl-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

/* small helpers */
.muted { color: var(--muted); }

/* Typography scale and clearer headings */
h1 { font-size: 2.2rem; line-height: 1.05; font-weight: 700; margin: 0 0 12px; }
h2 { font-size: 1.6rem; line-height: 1.08; font-weight: 700; margin: 0 0 10px; }
h3 { font-size: 1.125rem; line-height: 1.25; font-weight: 700; margin: 0 0 8px; }
h4 { font-size: 0.95rem; font-weight: 600; margin: 0 0 8px; color: var(--muted); }

/* Section title accent */
.section-title.fl-wrap {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 18px;
}
.section-title.fl-wrap h3 {
  font-size: 1.35rem;
  text-transform: none;
}
.section-title.fl-wrap h3::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: var(--accent);
  margin-top: 8px;
  border-radius: 2px;
}

.hero-overlay {
  position: absolute;
  right: clamp(24px, 4vw, 60px);
  top: 28%;
  width: clamp(280px, 30vw, 420px);
  min-height: clamp(320px, 48vh, 520px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.20);
  border-radius: 40px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

@media (max-width: 860px) {
  .main-header {
    padding: 0 24px;
  }

  .nav-button {
    display: inline-flex;
  }

  .main-menu {
    display: none;
  }

  .main-menu.open {
    display: flex;
    position: fixed;
    inset: 90px 0 0;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 40px 24px;
  }

  .main-menu.open ul {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 680px) {
  .hero-overlay {
    display: none;
  }
}
