/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
  --primary: #1b264f;       /* deep indigo-blue */
  --secondary: #395b64;     /* muted teal-blue */
  --accent: #5bc0be;        /* bright teal */
  --background: #f1f6f9;    /* very light gray-blue */
  --text: #212529;          /* near-black for body text */
  --text-light: #495464;    /* softer gray for secondary text */
  --max-width: 800px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  padding: 2rem 1rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
header {
  /* subtle diagonal stripes */
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--primary),
      var(--primary) 40px,
      var(--secondary) 40px,
      var(--secondary) 80px
    );
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2.25rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.125rem;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 4px;
  background-color: var(--accent);
  opacity: 0.4;
  border-radius: 2px;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
main {
  max-width: var(--max-width);
  margin: 3rem auto;
  text-align: center;
  padding: 0 1rem;
}

main p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 4rem;
}

/* ==========================================================================
   Utility & Responsive
   ========================================================================== */
@media (min-width: 600px) {
  body {
    padding: 3rem;
  }
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

