/*
Theme Name: DAKAR.DEV — Page d'attente
Theme URI: https://dakar.dev
Author: dakar.dev
Author URI: https://dakar.dev
Description: Page d'attente a la marque dakar.dev, affichee tant que le site n'est pas construit. Pour mettre votre site en ligne, activez un autre theme depuis Apparence puis Themes.
Version: 1.0.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dakardev-parking
*/

:root {
  --brand-a: #667eea;
  --brand-b: #764ba2;
  --grad: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --ink: #14142b;
  --muted: #5d5d78;
  --card: rgba(255, 255, 255, .82);
  --card-line: rgba(20, 20, 43, .08);
  --bg: #eef0f8;
  --pill: rgba(102, 126, 234, .10);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2f2f8;
    --muted: #a3a3bd;
    --card: rgba(28, 28, 42, .78);
    --card-line: rgba(255, 255, 255, .10);
    --bg: #0d0d16;
    --pill: rgba(102, 126, 234, .18);
  }
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body.dd-parking {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Halos colores en arriere-plan */
.dd-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.dd-orb--a { width: 46vmax; height: 46vmax; top: -18vmax; left: -14vmax; background: var(--brand-a); animation: dd-drift-a 22s ease-in-out infinite alternate; }
.dd-orb--b { width: 38vmax; height: 38vmax; bottom: -16vmax; right: -12vmax; background: var(--brand-b); animation: dd-drift-b 26s ease-in-out infinite alternate; }

@keyframes dd-drift-a { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(6vmax, 5vmax, 0) scale(1.12); } }
@keyframes dd-drift-b { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-5vmax, -6vmax, 0) scale(1.1); } }

@media (prefers-reduced-motion: reduce) {
  .dd-orb { animation: none; }
  .dd-dot { animation: none; }
}

.dd-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(20, 20, 43, .16);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  overflow: hidden;
}

.dd-card__accent { height: 5px; background: var(--grad); }

.dd-card__body { padding: 52px 46px 40px; text-align: center; }

.dd-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--pill);
  color: var(--brand-a);
  padding: 7px 17px 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.dd-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-a);
  box-shadow: 0 0 0 0 rgba(102, 126, 234, .65);
  animation: dd-pulse 2.4s cubic-bezier(.66,0,0,1) infinite;
}

@keyframes dd-pulse {
  to { box-shadow: 0 0 0 12px rgba(102, 126, 234, 0); }
}

.dd-domain {
  margin: 0 0 14px;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  word-break: break-word;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dd-tagline {
  margin: 0 auto 6px;
  max-width: 42ch;
  font-size: 17px;
  color: var(--muted);
}

.dd-rule {
  height: 1px;
  background: var(--card-line);
  margin: 34px 0 26px;
}

.dd-contact-label {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}

.dd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.dd-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.dd-action--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(102, 126, 234, .38);
}
.dd-action--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(102, 126, 234, .46); }

.dd-action--ghost {
  background: var(--pill);
  color: var(--brand-a);
}
.dd-action--ghost:hover { transform: translateY(-2px); }

.dd-action svg { width: 16px; height: 16px; flex: none; }

.dd-by {
  margin: 32px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.dd-by a {
  color: var(--brand-a);
  text-decoration: none;
  font-weight: 700;
}
.dd-by a:hover { text-decoration: underline; }

@media (max-width: 520px) {
  .dd-card { border-radius: 18px; }
  .dd-card__body { padding: 38px 24px 30px; }
  .dd-actions { flex-direction: column; }
  .dd-action { justify-content: center; }
}
