body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #172346; /* ton bleu nuit un peu plus clair, sans dégradé */
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #181e31;
  color: #ff4800;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: relative;
}

.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 100px; /* Augmente la taille du logo */
  margin-right: 20px;
}

header h1 {
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 15px 0 0 0;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  color: #ff4800;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.2s;
}

nav ul li a:hover {
  color: #fff;
}

/* Ajoutez ceci dans styles.css */
nav ul li a.active {
  border-bottom: 3px solid #ff4800;
  padding-bottom: 2px;
  color: #ff4800;
  border-radius: 0 0 6px 6px; /* léger arrondi sur le soulignement */
}

.hero {
  background: linear-gradient(120deg, #181e31 60%, #ff4800 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-btn-wrapper {
  position: relative;
  display: inline-block;
}

.cta-btn {
  display: inline-block;
  background: #ff4800;
  color: #fff;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.cta-btn:hover {
  background: #fff;
  color: #ff4800;
}

.upcoming-btn {
  position: absolute;
  top: -10px;      /* place au-dessus du bouton */
  right: 0;        /* colle au bord droit du bouton */
  transform: translateX(50%) rotate(45deg); /* centre sur le coin supérieur droit */
  color: #ffd700;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.upcoming-menu {
  color: #ffd700;
  font-style: italic;
  font-size: 0.95rem;
  margin-left: 2px; /* colle le texte à "Événements" */
  transform: rotate(25deg);
  font-weight: bold;
  vertical-align: middle;
  white-space: nowrap;
  pointer-events: none;
}

main {
  flex: 1;
}

footer {
  background: #181e31;
  color: #ff4800;
  text-align: center;
  padding: 18px 0;
  font-size: 1rem;
  border-radius: 30px 30px 0 0;
  width: 100%;
  z-index: 100;
  position: relative; /* retire fixed */
  bottom: 0;
  left: 0;
}

.mail-link {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}
.mail-link:hover {
  text-decoration: underline;
}

.actus {
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 20px 30px 20px;
}

.actus h3 {
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.6rem;
  letter-spacing: 1px;
}


.actus-cases {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;

}


.actu-case {
  background: #181e31;
  border: 2px solid #ff4800;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26,35,64,0.07);
  padding: 22px 18px;
  width: 260px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.actu-case h4 {
  margin: 0 0 10px 0;
  color: #fff;
  font-size: 1.15rem;
}

.actu-case p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.social-icons-fixed {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 16px;
  z-index: 10;
}

.social-logo {
  width: 32px;
  height: 32px;
  /* Supprime le filtre pour afficher le logo normalement */
  filter: none;
  transition: filter 0.2s;
}

.social-logo:hover {
  /* Ajoute un effet si tu veux, par exemple une légère ombre */
  filter: drop-shadow(0 0 4px #fff);
}

/* Ajoutez ceci dans styles.css */
.h1-box {
  background: linear-gradient(90deg, #181e31 60%, #ff4800 100%);
  color: #ff4800;
  padding: 32px 0;
  margin: 0;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  border-radius: 0 0 18px 18px;
  box-shadow: none;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== Responsive global ===== */

img {
  max-width: 100%;
  height: auto;
}

/* ----- Mobile & tablette ----- */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  header, main, footer {
    padding: 10px;
  }

  .logo-title {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .social-icons-fixed {
    position: static;
    margin-top: 10px;
    justify-content: center;
  }
}

/* ===== Événement annulé ===== */
.event-cancelled {
  text-decoration: line-through;
  opacity: 1;
  color: rgb(255, 255, 255);
}
