/* ── Variables ─────────────────────────────── */
:root {
  --cream:      #f5f0e8;
  --terracotta: #c0614a;
  --forest:     #2d4a3e;
  --text:       #1e1e1e;
  --muted:      #7a7060;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

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

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
}

/* ── Nav ────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  background-color: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--terracotta);
}

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 4rem;
  position: relative;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
  color: var(--forest);
  margin-bottom: 1.5rem;
}
h2 {
  color: var(--forest);
}

.topics > p {
  color: var(--text);
}
/* ── Footer ─────────────────────────────────── */
.footer {
  background-color: var(--forest);
  color: var(--cream);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.82rem;
  opacity: 0.55;
  letter-spacing: 0.04em;
}

.container {
  display: flex;
}
img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.img {
  border: thin solid white;
}
.topics {
  width: 40%;
}
@media (max-width: 640px) {
  .navbar  { padding: 1.25rem 1.5rem; }
  .hero    { padding: 4rem 1.5rem; }
  .content-section { padding: 3rem 1.5rem; }
  .footer  { flex-direction: column; gap: 0.5rem; padding: 2rem 1.5rem; text-align: center; }
}
