
:root {
  --bg: #fafafa;
  --text: #222;
  --muted: #666;
  --accent: #3a6ea5;
  --border: #ddd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.hero {
  min-height: 60vh;
  background-image: url("images/IMG_9567.JPEG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: white;
  position: relative;
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  padding: 2rem;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero nav a {
  color: white;
}


h1 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.subtitle {
  font-size: x-large;
  font-weight: 600;
  color: white;
  margin-top: 0;
}

nav {
  margin-top: 1.5rem;
}

nav a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 500;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

ul {
  padding-left: 1.2rem;
}

.button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 0.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--muted);
}
