/* 🌸 Thème zen orangé pastel */
:root {
  --orange-light: #fde6c8;
  --orange-medium: #f8b88b;
  --brown: #8b5a2b;
  --text: #3b2f2f;
  --bg: #fffaf5;
}

/* Corps général */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(to bottom right, var(--orange-light), var(--bg));
  color: var(--text);
  line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
  background: var(--orange-medium);
  color: white;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .title {
  flex: 1 1 60%;
}

.header .title h1 {
  margin: 0;
  font-size: 1.8em;
}

.header .title p {
  margin: 0;
  font-size: 0.9em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.header .title i {
  color: white;
  margin-right: 4px;
  font-size: 0.9em;
}

.header .title a {
  color: white;
  text-decoration: underline;
}

.header .title a:hover {
  text-decoration: none;
}

.header .logo {
  flex: 1 1 30%;
  text-align: right;
}

.header .logo img {
  height: 70px;
  max-width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: var(--orange-light);
  padding: 14px 0;
  text-align: center;
  gap: 20px;
}

.nav a {
  color: var(--brown);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15em;      /* boutons plus gros */
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

/* ===== Effet hover animé ===== */
.nav a:hover {
  background: var(--orange-medium);
  color: white;
  transform: scale(1.08); /* zoom léger */
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ===== CONTENU PRINCIPAL ===== */
.container {
  max-width: 900px;
  margin: 40px auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

h2, h3, h4 {
  color: var(--brown);
}

ul {
  padding-left: 20px;
}

.divider {
  border: none;
  border-top: 1px solid var(--orange-medium);
  margin: 30px 0;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 20px;
  background: var(--orange-medium);
  color: white;
  margin-top: 40px;
  font-size: 0.9em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header .wrap {
    flex-direction: column;
    text-align: center;
  }

  .header .logo {
    text-align: center;
    margin-top: 10px;
  }

  .header .title p {
    justify-content: center;
    line-height: 1.4;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
  }

  .nav a {
    display: block;
    width: 90%;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 1.2em;
  }

  .container {
    margin: 20px;
    padding: 20px;
  }
}
.photo-block {
  margin-top: 30px;
  text-align: center;
}

.photo-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.header .title h2 {
  font-size: 1.4rem; /* taille plus petite que le h1 */
  font-weight: 400; /* pas trop gras */
  margin: 0.2em 0 0.5em 0;
  color: #555; /* gris doux pour un look élégant */
  font-family: 'Arial', sans-serif; /* ou votre police principale */
}
