@charset "UTF-8";
/* CSS Document */

/* ===== BASE ===== */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  background: #0077cc;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
}

.header-text h1 {
  margin: 0.5rem 0 0 0;
  font-size: 1.8rem;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: center; /* desktop center */
  align-items: center;
  position: relative;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; /* desktop: menu centered */
  position: relative;
}

/* placeholder left */
.nav-left {
  width: 40px;
  display: none;
}

/* burger button */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0077cc;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

/* Menu normal desktop */
.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.menu li a:hover {
  color: #005999;
}

/* ===== CONTAINER ===== */
.container {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

/* ===== INFO SECTION ===== */
.info-section {
  margin-bottom: 2rem;
}

/* ===== ALIGNER LES PARAGRAPHES ===== */
.info-section p {
  text-align: left;
  margin-bottom: 1rem;
}

/* ===== IFRAME ===== */
iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
  color: #0077cc;
}
.card p {
  margin-bottom: 1rem;
  font-style: italic;
}

/* ===== BUTTONS ===== */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.btn:focus {
  outline: 2px solid #0077cc;
  outline-offset: 2px;
}

.modern-primary {
  background: #0077cc;
  color: white;
}
.modern-primary:hover {
  background: #005999;
  transform: translateY(-1px);
}

.modern-secondary {
  background: #e6f1fa;
  color: #0077cc;
}
.modern-secondary:hover {
  background: #d4e8f7;
  transform: translateY(-1px);
}

.btn-call {
  display: block;
  background: #0077cc;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  margin: 1.5rem 0;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-call:hover {
  background: #005999;
  transform: translateY(-1px);
}
.btn-call:focus {
  outline: 2px solid #0077cc;
  outline-offset: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ===== CENTRER BOUTON RETOUR ACCUEIL ===== */
.container .info-section p:last-child {
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start;
  }

  .nav-inner {
    justify-content: space-between;
    padding: 0 0.25rem;
  }

  .nav-left {
    display: block;
    width: 40px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    white-space: nowrap;
    padding-right: 1rem;
    z-index: 1001;
  }

  /* Ajouter "Menu" après l’icône burger */
  .menu-toggle::after {
    content: " Menu";
    font-size: 1rem;
    font-weight: 600;
    color: #0077cc;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    display: none;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  .menu.show {
    display: flex !important;
  }

  .menu {
    top: 60px; /* décale le menu sous le header/nav */
  }

  header {
    text-align: center;
  }

  .header-content {
    justify-content: center;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .btn-call {
    font-size: 1rem;
  }
}
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
header {
  background: #0077cc;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
}

.header-text h1 {
  margin: 0.5rem 0 0 0;
  font-size: 1.8rem;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: center; /* desktop center */
  align-items: center;
  position: relative;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.nav-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; /* desktop: menu centered */
  position: relative;
}

/* placeholder left */
.nav-left {
  width: 40px;
  display: none;
}

/* burger button */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0077cc;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

/* Menu normal desktop */
.menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.menu li a:hover {
  color: #005999;
}

/* ===== CONTAINER ===== */
.container {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
}

/* ===== INFO SECTION ===== */
.info-section {
  margin-bottom: 2rem;
}

/* ===== ALIGNER LES PARAGRAPHES ===== */
.info-section p {
  text-align: left;
  margin-bottom: 1rem;
}

/* ===== IFRAME ===== */
iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* ===== CARDS ===== */
.card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
  color: #0077cc;
}
.card p {
  margin-bottom: 1rem;
  font-style: italic;
}

/* ===== BUTTONS ===== */
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.btn:focus {
  outline: 2px solid #0077cc;
  outline-offset: 2px;
}

.modern-primary {
  background: #0077cc;
  color: white;
}
.modern-primary:hover {
  background: #005999;
  transform: translateY(-1px);
}

.modern-secondary {
  background: #e6f1fa;
  color: #0077cc;
}
.modern-secondary:hover {
  background: #d4e8f7;
  transform: translateY(-1px);
}

.btn-call {
  display: block;
  background: #0077cc;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  margin: 1.5rem 0;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-call:hover {
  background: #005999;
  transform: translateY(-1px);
}
.btn-call:focus {
  outline: 2px solid #0077cc;
  outline-offset: 2px;
}

/* ===== FOOTER ===== */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ===== CENTRER BOUTON RETOUR ACCUEIL ===== */
.container .info-section p:last-child {
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start;
  }

  .nav-inner {
    justify-content: space-between;
    padding: 0 0.25rem;
  }

  .nav-left {
    display: block;
    width: 40px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    white-space: nowrap;
    padding-right: 1rem;
    z-index: 1001;
  }

  /* Ajouter "Menu" après l’icône burger */
  .menu-toggle::after {
    content: " Menu";
    font-size: 1rem;
    font-weight: 600;
    color: #0077cc;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    display: none;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }

  .menu.show {
    display: flex !important;
  }

  .menu {
    top: 60px; /* décale le menu sous le header/nav */
  }

  header {
    text-align: center;
  }

  .header-content {
    justify-content: center;
  }

  .logo {
    width: 60px;
    height: 60px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .btn-call {
    font-size: 1rem;
  }
}
/* ===== MENU MOBILE QUI POUSSE LE CONTENU ===== */
@media (max-width: 768px) {
  .menu {
    position: static;      /* le menu prend sa place dans le flux normal */
    display: none;         /* caché par défaut */
    width: 100%;
    flex-direction: column;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    padding: 1rem;
  }

  .menu.show {
    display: flex !important; /* s'affiche et pousse le contenu vers le bas */
  }

  /* on n'a plus besoin de z-index ou position absolue */
  .navbar {
    position: static;
  }
}
/* ===== ANNONCE TEMPORAIRE ===== */
.annonce-temporaire {
  background: linear-gradient(90deg, #ffe8a2, #ffd36d);
  color: #4a3b00;
  padding: 14px 20px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 2px solid #eac15a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.annonce-temporaire .icon {
  font-size: 20px;
}

.annonce-temporaire strong {
  font-weight: 700;
}

@media (max-width: 480px) {
  .annonce-temporaire {
    font-size: 15px;
    padding: 12px;
    flex-direction: column;
    gap: 4px;
  }
}