:root{
  --bg: #add8e6;  /* LightBlue */
  --text: #2c3e50;
  --muted: #555;
  --accent: #1e90ff;      /* DodgerBlue */
  --card: #fff1e3;
  --border: #e1e4e8;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  font-size: 18px; /* slightly larger for readability */
}

.site-header {
  padding: 2rem 1rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.site-header h1 {
  margin: 0;
  font-size: 2rem;
}

.kicker { color: var(--muted); margin-top: .25rem; }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.family-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.caption {
  margin-top: .5rem;
  color: var(--muted);
  font-size: .95rem;
}

.link-list a {
  color: var(--accent);
  text-decoration: none;
}
.link-list a:hover,
.link-list a:focus {
  text-decoration: underline;
  outline: none;
}

.link-list li {
  margin-bottom: 1em; /* adds space under each item */
}

.site-footer {
  margin-top: 2rem;
  padding: 1rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .site-header h1 { font-size: 1.6rem; }
  html, body { font-size: 17px; }
}


/* VIBE CODING EXAMPLE CSS */


/* --- Hero base --- */
.hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* keep your other .hero styles as well */
  position: relative;
  min-height: 32vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
}

/* Animated gradient background (behind content) */
.hero .hero-bg {
  position: absolute;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(60% 80% at 20% 10%, rgba(167,139,250,0.35), transparent 60%),
    radial-gradient(70% 70% at 80% 40%, rgba(244,114,182,0.35), transparent 60%),
    radial-gradient(80% 60% at 40% 90%, rgba(142,197,255,0.35), transparent 60%);
  animation: floatHue 18s linear infinite;
  filter: saturate(1.2) contrast(1.05);
}

/* Subtle grid overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.05) 0 1px,
      transparent 1px 40px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.05) 0 1px,
      transparent 1px 40px
    );
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-inner {
  max-width: 1100px;
  width: min(92vw, 1100px);
}

/* --- Wordmark (SVG) --- */
.wordmark {
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: url(#glow);
}

.wordmark text {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: lowercase;
  /* Responsive font size using SVG textLength via CSS size: */
  font-size: clamp(36px, 9vw, 160px);
  fill: none;
  stroke: url(#ink);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: draw 2.6s ease-out forwards, glowPulse 6s ease-in-out infinite alternate 2.6s;
}

/* After the stroke draws, softly fill the text */
.wordmark text::selection { background: transparent; }
.wordmark text.filled { fill: url(#ink); }

/* --- Subheading --- */
.hero-sub {
  margin-top: clamp(.5rem, 2vw, 1.25rem);
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  opacity: 0.9;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-bg,
  .wordmark text {
    animation: none;
  }
}

/* --- Animations --- */
@keyframes draw {
  0%   { stroke-dashoffset: 1200; }
  100% { stroke-dashoffset: 0; }
}

@keyframes glowPulse {
  0%   { filter: drop-shadow(0 0 6px rgba(167,139,250,0.6)); }
  100% { filter: drop-shadow(0 0 18px rgba(244,114,182,0.7)); }
}

@keyframes floatHue {
  0%   { transform: rotate(0deg) scale(1.05); }
  50%  { transform: rotate(180deg) scale(1.08); }
  100% { transform: rotate(360deg) scale(1.05); }
}

/* --- Screen-reader only utility (if you don't already have one) --- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.wordmark {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
  /* Optional: add some horizontal padding if needed */
  /* padding-left: 1rem; padding-right: 1rem; */
}


.hero-inner {
  max-width: 1200px;
  width: min(98vw, 1200px);
  margin-inline: auto;
  overflow-x: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}