/* Base reset and variables */
:root {
  /* Lazooz palette */
  --bg: #00669a; /*#FFFFCC;  */       /* light background */
  --bg-soft: #FFF6B3;    /* subtle gradient stop */
  --card: #ffffcc;
  --card-soft: #ffffcc;
  --text: #1f2937;       /* slate-800 */
  --muted: #6b7280;      /* slate-500 */
  --primary: #DC4715;    /* warm orange */
  --accent: #006699;     /* deep teal-blue */
  --primary-ink: #ffffff;
  --outline: #e5e7eb;    /* gray-200 */
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 680px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Nachlieli CLM', 'Heebo', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: transparent;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="560" viewBox="0 0 1440 560" fill="none"><g opacity="0.16" filter="url(%23f)"><path d="M-50 400C120 330 350 280 540 340C730 400 880 520 1100 500C1320 480 1500 320 1600 280" stroke="%2322d3ee" stroke-width="2"/></g><defs><filter id="f" x="-200" y="0" width="2000" height="800" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation="40"/></filter></defs></svg>') center/cover no-repeat;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero__content { z-index: 1; padding-block: 56px; }
.hero__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero__subtitle {
  margin: 0 0 20px;
  color: var(--muted);
}

/* Sections */
.section { padding-block: 28px; }
.section--info { padding-top: 20px; }
.section--image { padding-top: 0; }
.section__title {
  margin: 0 0 16px;
  font-size: 22px;
  color:#ffffcc;
}
.section__title--tight { margin-bottom: 8px; }

.lead { font-size: 18px; }
.stack { display: grid; }
.gap-m { gap: 12px; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.card--soft { background: #FFFFCC; }
.card--highlight { background: #FFFFCC; }

/* Media */
.media { margin: 0; }
.media--wide .media__placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: #FFFBE0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow);
}
.media--avatar { text-align: center; }
.media__avatar {
  width: 120px;
  height: 120px;
  margin-inline: auto;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow);
}
.media figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* Buttons and links */
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, opacity .15s ease, background-color .2s ease;
}
.btn--primary {
  background: #DC4715;
  color: #fff;
}
.btn--primary:active { transform: translateY(1px); }
.btn--outline {
  border: 1px solid var(--outline);
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}
.btn--outline:active { transform: translateY(1px); }

.cta-row { margin-top: 8px; }

.link { color: var(--accent); text-decoration: underline; }

/* Lists */
.list { padding-right: 18px; }
.list li { margin-bottom: 8px; }

/* Footer */
.footer {
  padding-block: 28px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
.footer small { color: var(--muted); }

/* Larger screens */
@media (min-width: 720px) {
  .hero { min-height: auto; }
  .section { padding-block: 36px; }
}


