/* ==============================
   STYLE MENTIONS LÉGALES
   ============================== */

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: #333;
  background-color: #faf9f6;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}

/* --- Hero Section --- */
.witchy-hero {
  background: linear-gradient(135deg, #e7dfcf, #f9f6f0);
  text-align: center;
  padding: 80px 20px;
  border-bottom: 3px solid #d6b370;
}

.witchy-hero h1 {
  font-size: 2.4rem;
  color: #4a3b2f;
  margin-bottom: 10px;
}

.witchy-hero p {
  font-size: 1.2rem;
  color: #6e5b4b;
}

/* --- Main Content --- */
.witchy-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.witchy-section h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  color: #4a3b2f;
  border-left: 4px solid #d6b370;
  padding-left: 10px;
}

.witchy-section h3 {
  font-size: 1.4rem;
  margin-top: 25px;
  color: #6e5b4b;
}

.witchy-section p,
.witchy-section ul {
  font-size: 1rem;
  margin: 15px 0;
}

.witchy-section ul {
  padding-left: 20px;
  list-style: "🌿 ";
}

.witchy-section a {
  color: #b48b40;
  text-decoration: none;
  border-bottom: 1px dotted #b48b40;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.witchy-section a:hover {
  color: #805d1d;
  border-bottom: 1px solid #805d1d;
}

/* --- Footer --- */
.footer {
  background-color: #4a3b2f;
  color: #fff;
  padding: 40px 20px 20px;
}

.footer h3, .footer h4 {
  margin-bottom: 10px;
  color: #d6b370;
}

.footer a {
  color: #f2e6d2;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 20px;
  border-top: 1px solid #6e5b4b;
  padding-top: 10px;
  color: #ccc;
}
/* --- Navbar --- */
.navbar {
  background-color: #faf9f6;
  border-bottom: 2px solid #d6b370;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.navbar li {
  display: inline-block;
}

.navbar a {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4a3b2f;
  text-decoration: none;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

/* Soulignement doré animé au survol */
.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #d6b370;
  transition: width 0.3s ease;
}

.navbar a:hover {
  color: #b48b40;
}

.navbar a:hover::after {
  width: 100%;
}

/* --- Responsive (menu qui se replie sur mobile) --- */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }
}
