/*
Theme Name: Aurelia Coming Soon
Theme URI: https://example.com
Author: Aurelia
Author URI: https://example.com
Description: Thème "site en cours de construction" professionnel avec pages légales complètes (CGV, confidentialité, remboursement, contact, mentions légales) — conçu pour présenter une boutique crédible et complète lors d'une demande d'approbation auprès d'un processeur de paiement.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurelia
*/

:root {
  --color-bg: #0f1115;
  --color-bg-soft: #161922;
  --color-surface: #1c202b;
  --color-border: #2a2f3c;
  --color-text: #f5f6f8;
  --color-muted: #9aa3b2;
  --color-accent: #6c8cff;
  --color-accent-2: #9a6cff;
  --color-success: #3ecf8e;
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1100px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent-2); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 17, 21, .8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .5px;
  color: var(--color-text);
}
.brand .brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  display: grid; place-items: center;
  font-weight: 800; color: #fff;
}
.main-nav { display: flex; gap: 24px; }
.main-nav a { color: var(--color-muted); font-size: 14px; font-weight: 500; }
.main-nav a:hover { color: var(--color-text); }

/* ---------- Hero / Coming Soon ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(600px circle at 20% 20%, rgba(108,140,255,.18), transparent 45%),
    radial-gradient(600px circle at 80% 30%, rgba(154,108,255,.16), transparent 45%),
    radial-gradient(700px circle at 50% 90%, rgba(62,207,142,.10), transparent 50%);
  filter: blur(10px);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 4px rgba(62,207,142,.15);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, #fff, #c9cfdb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.countdown .unit {
  min-width: 96px;
  padding: 20px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.countdown .num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  margin-top: 8px;
}

/* ---------- Newsletter ---------- */
.subscribe {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.subscribe input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 15px;
}
.subscribe input[type="email"]::placeholder { color: var(--color-muted); }
.subscribe input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(108,140,255,.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(108,140,255,.35); color: #fff; }

.socials { margin-top: 36px; display: flex; gap: 18px; justify-content: center; }
.socials a { color: var(--color-muted); font-size: 14px; }

/* ---------- Content pages (legal) ---------- */
.page-wrap { padding: 64px 0 96px; }
.page-wrap .container { max-width: 820px; }
.page-wrap h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.page-wrap .updated { color: var(--color-muted); font-size: 14px; margin-bottom: 36px; }
.page-wrap h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  font-weight: 700;
}
.page-wrap h3 { font-size: 18px; margin: 24px 0 8px; font-weight: 600; }
.page-wrap p, .page-wrap li { color: #d7dbe4; margin-bottom: 12px; }
.page-wrap ul, .page-wrap ol { padding-left: 24px; margin-bottom: 16px; }
.page-wrap a { text-decoration: underline; }

.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  padding: 48px 0 32px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #c9cfdb; font-size: 14px; }
.footer-legal {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  color: var(--color-muted);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .main-nav { display: none; }
  .countdown .unit { min-width: 72px; padding: 14px 10px; }
  .countdown .num { font-size: 30px; }
}
