@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800&display=swap');

/* L’Antre du Rétro — mini-site vitrine statique OVH */
:root {
  --bg: #080812;
  --panel: rgba(21, 21, 40, .92);
  --panel2: rgba(29, 29, 52, .94);
  --text: #f6f6ff;
  --muted: #c6c7d8;
  --accent: #8fd6ff;
  --accent2: #7c5cff;
  --gold: #f2c15c;
  --green: #9dffb0;
  --red: #ff9c9c;
  --border: rgba(255,255,255,.13);
  --shadow: 0 16px 55px rgba(0,0,0,.32);
  --title-font: 'Orbitron', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(8, 8, 18, .88), rgba(8, 8, 18, .94)),
    radial-gradient(circle at top left, rgba(89, 215, 255, .16), transparent 35%),
    radial-gradient(circle at bottom right, rgba(166, 107, 255, .18), transparent 35%),
    url('fond-antre-retro.jpg'),
    var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

a:hover { text-decoration: underline; }

header {
  padding: 34px 20px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.32);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
}

.site-logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
}

.logo-fallback {
  width: min(170px, 40vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  place-items: center;
  border: 2px solid rgba(242, 193, 92, .72);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 247, 173, .22), transparent 36%),
    linear-gradient(145deg, rgba(89, 215, 255, .12), rgba(166, 107, 255, .18)),
    rgba(10,10,22,.92);
  color: #ffd36b;
  font-family: var(--title-font);
  font-weight: 800;
  font-size: clamp(34px, 8vw, 58px);
  letter-spacing: .06em;
  box-shadow: 0 10px 34px rgba(0,0,0,.38);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--title-font);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
  background: rgba(255,255,255,.05);
}

h1 {
  font-family: var(--title-font);
  font-weight: 800;
  margin: 0 auto;
  max-width: 1150px;
  font-size: clamp(34px, 7vw, 68px);
  line-height: 1.05;
  letter-spacing: .035em;
  background: linear-gradient(180deg, #fff7ad 0%, #ffd45c 28%, #ff8a1f 66%, #d84a16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 0 rgba(78, 20, 6, .20), 0 0 24px rgba(255, 130, 28, .22);
}

.brand-subtitle {
  font-family: var(--title-font);
  font-weight: 800;
  margin: 9px auto 0;
  max-width: 1150px;
  font-size: clamp(19px, 4.0vw, 39px);
  line-height: 1.08;
  letter-spacing: .035em;
  background: linear-gradient(180deg, #fff7ad 0%, #ffd45c 28%, #ff8a1f 66%, #d84a16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 3px 0 rgba(78, 20, 6, .20), 0 0 22px rgba(255, 130, 28, .20);
}

h2 {
  font-family: var(--title-font);
  font-weight: 700;
  margin: 14px 0 0;
  color: var(--accent);
  font-size: clamp(17px, 3vw, 28px);
}

h3 {
  font-family: var(--title-font);
  font-weight: 700;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

nav a {
  display: inline-block;
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.045);
  color: var(--text);
  font-family: var(--title-font);
  font-size: 13px;
}

nav a.active {
  color: #05050a;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
}

main {
  width: min(1160px, calc(100% - 32px));
  margin: 28px auto 0;
  padding-bottom: 44px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.030));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(4px);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.status {
  color: var(--gold);
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}

p, li {
  color: var(--muted);
  line-height: 1.6;
}

.intro p {
  font-size: 18px;
  margin: 14px 0 0;
}

.note {
  margin-top: 22px;
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  background: rgba(89, 215, 255, .08);
  border-radius: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.warning {
  border-left-color: var(--gold);
  background: rgba(255, 211, 107, .08);
}

.section-title {
  margin: 30px 0 16px;
  color: var(--gold);
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 26px;
}

.contact-line {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  line-height: 1.45;
}

.contact-line strong { color: var(--text); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #05050a;
  font-weight: bold;
  text-decoration: none;
}

.cta.secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.service, .product, .photo-card, .mini-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 26px rgba(0,0,0,.18);
}

.service h3, .product h3, .photo-card h3, .mini-card h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 18px;
}

.slot-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(89, 215, 255, .24);
  margin-bottom: 14px;
  background: rgba(255,255,255,.045);
  box-shadow: 0 8px 26px rgba(0,0,0,.18);
}

.slot-img.compact {
  min-height: 130px;
}

.image-slot {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  border: 1px solid rgba(89, 215, 255, .24);
  background:
    radial-gradient(circle at top left, rgba(89, 215, 255, .16), transparent 42%),
    radial-gradient(circle at bottom right, rgba(166, 107, 255, .18), transparent 42%),
    rgba(255,255,255,.045);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--muted);
  margin-bottom: 14px;
  min-height: 170px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}

.image-slot.compact {
  min-height: 130px;
}

.image-slot .title {
  display: block;
  color: var(--gold);
  font-family: var(--title-font);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.image-slot .small {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.product .price {
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  margin: 8px 0;
}

.product .meta {
  margin: 8px 0 0;
  font-size: 14px;
}

.tag {
  display: inline-block;
  padding: 5px 9px;
  margin: 4px 4px 4px 0;
  border-radius: 999px;
  background: rgba(89, 215, 255, .10);
  border: 1px solid rgba(89, 215, 255, .22);
  color: var(--accent);
  font-size: 13px;
  font-weight: bold;
}

.tag.gold {
  color: var(--gold);
  background: rgba(255, 211, 107, .10);
  border-color: rgba(255, 211, 107, .25);
}

.tag.green {
  color: var(--green);
  background: rgba(157, 255, 176, .10);
  border-color: rgba(157, 255, 176, .25);
}

.tag.red {
  color: var(--red);
  background: rgba(255, 156, 156, .10);
  border-color: rgba(255, 156, 156, .25);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  min-height: 120px;
}

.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #05050a;
  font-weight: bold;
  margin-bottom: 12px;
}

.hours {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.hour-row strong { color: var(--text); }

.legal p {
  margin: 8px 0;
}

footer {
  text-align: center;
  margin-top: 26px;
  padding: 24px;
  color: var(--muted);
}

footer a {
  color: var(--accent);
}

@media (max-width: 920px) {
  .hero, .grid, .grid.two, .steps {
    grid-template-columns: 1fr;
  }

  header { padding-top: 28px; }

  .card { padding: 20px; }

  .hour-row { display: block; }

  .hour-row span {
    display: block;
    margin-top: 5px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .brand-subtitle {
    font-size: clamp(17px, 6vw, 25px);
  }
}
