/* =========================================================
   Ajmool2Win — Page "Site fermé"
   Palette calquée sur l'identité visuelle réelle du site :
   fond blanc, accent bleu #0088cc, police Open Sans,
   et les 4 couleurs du logo (vert / orange / bleu / rouge).
   ========================================================= */

:root {
  --color-bg: #ffffff;
  --color-text: #333333;
  --color-text-light: #6b7280;
  --color-accent: #0088cc;      /* couleur d'accent officielle du site */
  --color-accent-dark: #006ea3;
  --color-green: #78b833;       /* couleurs extraites du logo */
  --color-orange: #f7941d;
  --color-blue: #0088cc;
  --color-red: #e2401c;
  --color-border: #e5e7eb;
  --color-card-bg: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --font-main: "Open Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 45%);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 48px 20px;
  line-height: 1.6;
}

.page {
  width: 100%;
  max-width: 640px;
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  padding: 48px 40px;
}

/* ===== Section logo ===== */
.brand {
  text-align: center;
  margin-bottom: 28px;
}

.brand-logo {
  max-width: 187px;
  height: auto;
  display: inline-block;
}

.brand-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-green { background: var(--color-green); }
.dot-orange { background: var(--color-orange); }
.dot-blue { background: var(--color-blue); }
.dot-red { background: var(--color-red); width: 6px; height: 6px; align-self: center; }

/* ===== Message d'adieu ===== */
.farewell {
  text-align: center;
  margin-bottom: 40px;
}

.status-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(0, 136, 204, 0.08);
  border: 1px solid rgba(0, 136, 204, 0.25);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

.farewell h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 18px;
}

.farewell p {
  color: var(--color-text-light);
  font-size: 0.98rem;
  margin-bottom: 14px;
  text-align: left;
}

.farewell p:last-child {
  margin-bottom: 0;
}

/* ===== Contact & réseaux sociaux ===== */
.contact {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.contact h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.contact-intro {
  color: var(--color-text-light);
  font-size: 0.92rem;
  text-align: center;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-row input,
.form-row textarea {
  font-family: var(--font-main);
  font-size: 0.95rem;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fafafa;
  color: var(--color-text);
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: #ffffff;
}

.contact-form button {
  align-self: center;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--color-accent);
  border: none;
  border-radius: 999px;
  padding: 11px 32px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-form button:hover {
  background: var(--color-accent-dark);
}

.form-note,
.social-note {
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
}

.form-note code,
.social-note code {
  background: #f3f4f6;
  padding: 1px 5px;
  border-radius: 4px;
}

/* ===== Réseaux sociaux ===== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--color-accent);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.social-icon:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== Pied de page ===== */
.site-footer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-sub {
  margin-top: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 480px) {
  .page {
    padding: 32px 22px;
  }

  .farewell h1 {
    font-size: 1.35rem;
  }
}
