/* ============================================================
   responsive.css — Adaptation spécifique pour les écrans < 768px
   ============================================================ */

/* 📱 Affiche le menu burger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 10px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #ff7f2a;
  transition: 0.3s;
}

/* 🧭 Cacher les liens de navigation par défaut */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ✅ Active menu burger quand cliqué */
.nav-links.active {
  display: flex;
}

/* 🎨 Style des liens */
.nav-links a {
  background-color: #ff7f2a;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* 🧩 Sous-menu en vertical sans effet hover */
.sub-menu {
  position: static;
  display: none;
  padding-left: 10px;
  margin-top: 5px;
  border-left: 2px solid #ff7f2a;
}

.nav-item:hover .sub-menu {
  display: block;
}

.sub-menu li a {
  padding: 8px;
  font-size: 0.95em;
  color: #444;
  background: none;
}

/* 🖼️ Ajustements visuels */
.banniere {
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

h1 {
  font-size: 1.6em;
}

.announcement {
  font-size: 1em;
  padding: 15px;
  word-break: break-word;
}

.container {
  padding: 10px;
}

footer {
  font-size: 0.9em;
  padding: 10px 5px;
}


.install-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}
.install-button:hover {
  background-color: #cc5200;
}
