/* === TON CSS ORIGINAL === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: radial-gradient(circle at top, #0e4fa3, #020814);
  color: #eaf3ff;
}

.hero {
  min-height: 100vh;
  text-align: center;
  padding: 80px 20px 140px;
}

.logo {
  width: 220px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(0,160,255,1);
  margin-bottom: 30px;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

/* === PANNEAU STATUT === */
.status {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  min-width: 260px;
  text-align: center;
}

.status.loading {
  background: #666;
  color: #fff;
}

.status.open {
  background: #2aff7a;
  color: #003b1d;
}

.status.closed {
  background: #ff4b4b;
  color: #ffffff;
}

.status.closing-soon {
  background: #ffb020;
  color: #4a2a00;
}

.status.opening-soon {
  background: #3da9ff;
  color: #001f3f;
}

/* === BOUTONS === */
.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

.btn.primary {
  background: #00c6ff;
  color: #00182f;
}

.btn.outline {
  border: 2px solid #00c6ff;
  color: #aee2ff;
}

/* === CARDS === */
.card {
  width: min(92%, 900px);
  margin: 40px auto;
  padding: 35px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  text-align: center;
}

.card h2 {
  margin-bottom: 20px;
  color: #6ecbff;
}

.card ul {
  list-style: none;
}

.card li {
  padding: 8px 0;
}

iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
}

footer {
  text-align: center;
  padding: 30px;
  color: #8fbbe6;
}

/* === FIXED BUTTONS === */
.whatsapp-btn,
.contact-btn {
  position: fixed;
  right: 20px;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  z-index: 9999;
}

.whatsapp-btn {
  bottom: 90px;
  background: #25D366;
  color: #000;
}

.contact-btn {
  bottom: 20px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #000;
  border: none;
  font-size: 16px;
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #070f1f;
  width: min(90%, 420px);
  margin: 10vh auto;
  padding: 25px;
  border-radius: 20px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 10px;
  border: none;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}

.mail-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
}

/* === TEXTE DÉFILANT PANNEAU === */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 18s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
