/* ==========================================================
   Bowling de Kourou — style rétro diner américain
   ========================================================== */

:root {
  --rouge-cerise: #c9283e;
  --rouge-dark:   #8e1a2a;
  --creme:        #f5e9d4;
  --creme-dark:   #e8d9bc;
  --turquoise:    #3ec1c8;
  --turquoise-dk: #1f8a90;
  --jaune:        #e8c547;
  --noir:         #1a1a1a;
  --blanc:        #fafafa;

  --font-display: 'Lobster', cursive;
  --font-neon:    'Bungee', cursive;
  --font-body:    'Poppins', system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 14px;
  --shadow-md: 0 8px 24px rgba(0,0,0,.15);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--noir);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--rouge-cerise); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ==========================================================
   HEADER / NAV
   ========================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--noir);
  border-bottom: 3px solid var(--rouge-cerise);
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

.logo-link { display: flex; align-items: center; gap: 12px; color: var(--creme); }
.logo-link:hover { text-decoration: none; }
.logo {
  width: 56px; height: 56px; border-radius: 50%;
  border: 3px solid var(--jaune); object-fit: cover;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem; line-height: 1; color: var(--creme);
}
.logo-text small {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  color: var(--turquoise); letter-spacing: 2px; text-transform: uppercase;
}

.main-nav ul {
  list-style: none; display: flex; gap: 4px; align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--creme); text-transform: uppercase; font-weight: 600;
  font-size: .85rem; letter-spacing: 1px;
  padding: 8px 12px; border-radius: 8px;
  transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--rouge-cerise); color: var(--creme); text-decoration: none; }

.cta-call {
  background: var(--jaune); color: var(--noir) !important;
  border-radius: 999px !important; padding: 8px 16px !important;
}
.cta-call:hover { background: var(--rouge-cerise); color: var(--creme) !important; }

.burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.burger span {
  display: block; width: 28px; height: 3px;
  background: var(--creme); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.55) saturate(1.1);
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,.7) 90%),
    linear-gradient(180deg, rgba(201,40,62,.25) 0%, rgba(26,26,26,.5) 100%);
  z-index: -1;
}

.hero-content {
  color: var(--creme);
  padding: 40px 20px;
  max-width: 900px;
}

.hero-kicker, .section-kicker {
  font-family: var(--font-neon);
  color: var(--turquoise);
  font-size: .9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.neon-sign {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 1;
  color: var(--creme);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow:
    0 0 6px var(--creme),
    0 0 14px var(--rouge-cerise),
    0 0 28px var(--rouge-cerise),
    0 0 42px var(--rouge-dark),
    0 4px 0 rgba(0,0,0,.4);
  animation: flicker 6s infinite;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 6px var(--creme),
      0 0 14px var(--rouge-cerise),
      0 0 28px var(--rouge-cerise),
      0 0 42px var(--rouge-dark),
      0 4px 0 rgba(0,0,0,.4);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

.hero-slogan {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  margin-bottom: 32px;
  color: var(--creme);
}

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-neon);
  font-size: .95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  border: 3px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: var(--shadow-lg); }

.btn-primary { background: var(--rouge-cerise); color: var(--creme); }
.btn-primary:hover { background: var(--rouge-dark); color: var(--creme); }

.btn-outline {
  background: transparent; color: var(--creme); border-color: var(--creme);
}
.btn-outline:hover { background: var(--creme); color: var(--noir); }

.hero-hours {
  display: inline-block;
  background: rgba(0,0,0,.5);
  border: 2px solid var(--turquoise);
  color: var(--turquoise);
  padding: 10px 22px; border-radius: 999px;
  font-weight: 600; font-size: .95rem;
}

/* ==========================================================
   SECTIONS communes
   ========================================================== */

.section { padding: 80px 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--rouge-cerise);
  margin-bottom: 14px;
  line-height: 1.1;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  text-align: center;
}

.section-kicker { text-align: center; display: block; }
.section > .container > .section-title { text-align: center; }

/* ==========================================================
   DAMIER séparateur
   ========================================================== */

.divider-checker {
  height: 34px;
  background:
    conic-gradient(var(--noir) 25%, var(--creme) 0 50%, var(--noir) 0 75%, var(--creme) 0);
  background-size: 34px 34px;
  border-top: 4px solid var(--rouge-cerise);
  border-bottom: 4px solid var(--rouge-cerise);
}

/* ==========================================================
   PISTES
   ========================================================== */

.section-pistes { background: var(--creme); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  border: 4px solid var(--blanc);
  box-shadow: var(--shadow-md);
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}

.gallery-item--big {
  grid-column: span 2;
  grid-row: span 2;
}

/* ==========================================================
   SALLE DE JEUX
   ========================================================== */

.section-jeux {
  background:
    linear-gradient(135deg, var(--turquoise) 0%, var(--turquoise-dk) 100%);
  color: var(--creme);
}
.section-jeux .section-title { color: var(--creme); }
.section-jeux .section-kicker { color: var(--jaune); text-align: left; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-2-text .section-title { text-align: left; }

.features-list {
  list-style: none;
  margin-top: 24px;
}
.features-list li {
  padding: 10px 0;
  border-bottom: 2px dashed rgba(255,255,255,.3);
  font-size: 1.05rem;
  font-weight: 500;
}

.grid-2-image img {
  border-radius: var(--radius);
  border: 6px solid var(--creme);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}

/* ==========================================================
   TARIFS
   ========================================================== */

.section-tarifs {
  background:
    var(--creme)
    repeating-linear-gradient(45deg, rgba(201,40,62,.04) 0 20px, transparent 20px 40px);
}

.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.tarif-card {
  background: var(--blanc);
  border: 3px solid var(--noir);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 0 var(--rouge-cerise);
  transition: transform .2s, box-shadow .2s;
}
.tarif-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--rouge-cerise);
}

.tarif-card h3 {
  font-family: var(--font-neon);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--noir);
  margin-bottom: 14px;
}

.tarif-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--rouge-cerise);
  line-height: 1;
  margin-bottom: 8px;
}
.tarif-card .price span { font-size: 1.5em; }

.tarif-desc {
  font-size: .9rem;
  color: #555;
}

.tarif-card.highlighted {
  background: var(--jaune);
  border-color: var(--rouge-cerise);
  box-shadow: 6px 6px 0 var(--noir);
}

.tarifs-note {
  text-align: center;
  font-size: .95rem;
  color: #555;
}

/* ==========================================================
   ÉVÉNEMENTS
   ========================================================== */

.section-events {
  background: var(--noir);
  color: var(--creme);
}
.section-events .section-title { color: var(--creme); }
.section-events .section-kicker { color: var(--jaune); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.event-card {
  background: rgba(255,255,255,.05);
  border: 2px solid var(--rouge-cerise);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  transition: transform .3s, background .3s, border-color .3s;
}
.event-card:hover {
  transform: translateY(-6px);
  background: rgba(201,40,62,.1);
  border-color: var(--jaune);
}

.event-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.event-card h3 {
  font-family: var(--font-neon);
  font-size: 1.2rem;
  color: var(--turquoise);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.center-cta { text-align: center; }

/* ==========================================================
   CONTACT / HORAIRES
   ========================================================== */

.section-contact { background: var(--creme); }
.contact-info .section-title { text-align: left; }
.contact-info .section-kicker { text-align: left; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: var(--blanc);
  border: 3px solid var(--noir);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--turquoise);
}

.hours-table th, .hours-table td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px dashed var(--creme-dark);
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }

.hours-table th {
  font-family: var(--font-neon);
  font-size: .9rem;
  color: var(--rouge-cerise);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 40%;
}
.hours-table td {
  font-weight: 600;
  color: var(--noir);
}

.hours-table tr.today {
  background: var(--jaune);
}
.hours-table tr.today th { color: var(--noir); }

.contact-block p { margin-bottom: 14px; font-size: 1.05rem; }
.contact-block strong { color: var(--rouge-cerise); }

.contact-map iframe {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid var(--noir);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================
   FOOTER
   ========================================================== */

.site-footer {
  background: var(--noir);
  color: var(--creme);
  padding: 40px 0 24px;
  border-top: 4px solid var(--rouge-cerise);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--turquoise);
  margin-bottom: 4px;
}

.footer-brand p, .footer-brand a { color: var(--creme); font-size: .95rem; }

.footer-copy {
  font-size: .85rem;
  color: rgba(245,233,212,.6);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 78px; right: 0; bottom: 0;
    width: min(320px, 100%);
    background: var(--noir);
    padding: 30px 20px;
    transform: translateX(110%);
    transition: transform .3s ease;
    border-left: 3px solid var(--rouge-cerise);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .main-nav a { display: block; padding: 14px 16px; font-size: 1rem; }

  .burger { display: flex; }

  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-2-image img { transform: none; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--big { grid-column: span 2; grid-row: span 1; }

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

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .logo { width: 44px; height: 44px; }
  .logo-text { font-size: 1.2rem; }

  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--big { grid-column: span 1; }

  .tarifs-grid { grid-template-columns: 1fr; }

  .btn { padding: 12px 22px; font-size: .85rem; }

  .footer-inner { flex-direction: column; text-align: center; }
}
