/* =========================
   Septième Vague — style.css
   Version stable (menu + active + footer)
   ========================= */

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

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f4f4f5;
  color: #1f2937;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Menu */
.site-nav {
  width: 100%;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.95rem;
}

.site-nav a {
  margin: 0 1.2rem;
  color: #374151;
  text-decoration: none;
}

.site-nav a:hover { text-decoration: underline; }

.site-nav a.active {
  font-weight: 600;
  text-decoration: underline;
}

/* Layout */
.layout {
  max-width: 820px;
  padding: 2.8rem 2.4rem;
  text-align: center;
}

/* Image */
.visual { margin-bottom: 2.2rem; }

.visual img {
  max-height: 340px;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

/* Texte */
.content {
  max-width: 720px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.6rem;
}

h2 {
  font-size: 1.3rem;
  margin: 2.2rem 0 1rem;
  font-weight: 600;
}

.content p {
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 1.7rem;
}

.intro {
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.75;
}

.status {
  font-style: italic;
  color: #555;
}

/* Footer */
.site-footer {
  margin-top: auto;
  width: 100%;
  padding: 1.4rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

.site-footer a {
  color: #374151;
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 800px) {
  .layout { padding: 2rem 1.2rem; }
  h1 { font-size: 2.2rem; }
}