/* JPS — Thème rock'n'roll — v1.0.0 — 02/08/2026 — DAMOTIC */

:root {
  --bg: #0c0a09;
  --bg-alt: #161211;
  --card: #1e1917;
  --ink: #f3ede8;
  --muted: #a89d95;
  --accent: #e63b2e;
  --accent-2: #f5a623;
  --line: #322a26;
  --font-title: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Topbar ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 28px;
  background: linear-gradient(rgba(12,10,9,.92), rgba(12,10,9,.75));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: var(--font-title);
  font-size: 2rem; letter-spacing: 3px;
  color: var(--ink); text-decoration: none;
}
.logo-dot { color: var(--accent); }
.mainnav { display: flex; gap: 4px; margin-left: auto; flex-wrap: wrap; }
.mainnav a {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-title);
  font-size: 1.05rem; letter-spacing: 2px;
  color: var(--ink); text-decoration: none;
  padding: 8px 13px; border-radius: 4px;
  transition: color .2s, background .2s;
}
.mainnav a svg { width: 16px; height: 16px; color: var(--accent-2); }
.mainnav a:hover { color: var(--accent); background: rgba(230,59,46,.08); }
.langswitch { display: flex; gap: 2px; }
.langswitch a {
  font-size: .72rem; font-weight: 600; letter-spacing: 1px;
  color: var(--muted); text-decoration: none;
  padding: 4px 7px; border: 1px solid transparent; border-radius: 3px;
}
.langswitch a.active { color: var(--accent-2); border-color: var(--accent-2); }
.langswitch a:hover { color: var(--ink); }
/* ── Bouton Facebook ── */
.fb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  color: var(--accent-2); text-decoration: none;
  padding: 6px; border-radius: 4px;
  transition: color .2s, background .2s, transform .2s;
}
.fb-btn svg { width: 20px; height: 20px; }
.fb-btn:hover { color: var(--accent); background: rgba(230,59,46,.08); transform: scale(1.1); }
.fb-btn-footer {
  font-family: var(--font-title);
  font-size: 1rem; letter-spacing: 2px;
  padding: 8px 14px; border: 1px solid var(--line);
}
.fb-btn-footer:hover { transform: none; border-color: var(--accent); }
.footer-social { margin-top: 12px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ── Hero / Ken Burns ── */
.hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.kenburns { position: absolute; inset: 0; }
.kb-slide {
  position: absolute; inset: -8%;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: kb-cycle 24s infinite;
  will-change: transform, opacity;
}
.kb-1 { animation-delay: 0s; }
.kb-2 { animation-delay: 8s; }
.kb-3 { animation-delay: 16s; }
@keyframes kb-cycle {
  0%   { opacity: 0; transform: scale(1)    translate(0, 0); }
  6%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; transform: scale(1.14) translate(-1.5%, 1.5%); }
  100% { opacity: 0; }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12,10,9,.25) 0%, rgba(12,10,9,.78) 100%),
    linear-gradient(rgba(12,10,9,.35), rgba(12,10,9,.9));
}
.hero-content { position: relative; text-align: center; padding: 0 20px; }
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(5rem, 16vw, 12rem);
  letter-spacing: 14px; line-height: 1;
  text-shadow: 0 4px 40px rgba(0,0,0,.8), 0 0 80px rgba(230,59,46,.35);
}
.hero-tag {
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  color: var(--ink); opacity: .9;
  margin: 12px 0 32px; font-style: italic;
}

/* ── Boutons ── */
.btn {
  display: inline-block;
  font-family: var(--font-title); letter-spacing: 2.5px;
  color: #fff; text-decoration: none;
  background: linear-gradient(135deg, var(--accent), #b52418);
  border: 0; border-radius: 4px; cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(230,59,46,.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(230,59,46,.5); }
.btn-big { font-size: 1.25rem; padding: 14px 38px; }
.btn-small { font-size: .95rem; padding: 8px 18px; }

/* ── Sections ── */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }
.sec-title {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 5px;
}
.sec-title svg { width: 34px; height: 34px; color: var(--accent); flex: none; }
.sec-sub { color: var(--muted); margin: 6px 0 42px; font-size: 1.05rem; }
.empty { color: var(--muted); font-style: italic; }

/* ── Events ── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.event-card {
  display: flex; gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 20px; transition: transform .2s, border-color .2s;
}
.event-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.event-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 74px; padding: 10px;
  background: linear-gradient(160deg, var(--accent), #8f1d13);
  border-radius: 6px; text-align: center; align-self: flex-start;
}
.event-date .d { font-family: var(--font-title); font-size: 2rem; line-height: 1; }
.event-date .m { font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.event-date .y { font-size: .72rem; opacity: .85; }
.event-body h3 { font-family: var(--font-title); font-size: 1.4rem; letter-spacing: 1.5px; }
.event-place { color: var(--accent-2); font-size: .92rem; margin: 2px 0 8px; }
.event-desc { color: var(--muted); font-size: .92rem; margin-bottom: 12px; }
.event-foot { display: flex; align-items: center; gap: 16px; }
.event-price { font-weight: 600; color: var(--ink); }

/* ── Calendrier ── */
.cal { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-month { font-family: var(--font-title); font-size: 1.6rem; letter-spacing: 3px; }
.cal-nav {
  color: var(--ink); text-decoration: none; font-size: 1.3rem;
  padding: 4px 14px; border: 1px solid var(--line); border-radius: 4px;
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow {
  text-align: center; font-size: .78rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 0;
}
.cal-cell {
  min-height: 64px; padding: 6px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 4px;
  font-size: .85rem;
}
.cal-empty { background: transparent; border-color: transparent; }
.cal-num { color: var(--muted); }
.cal-event { border-color: var(--accent); background: rgba(230,59,46,.12); }
.cal-event .cal-num { color: var(--ink); font-weight: 700; }
.cal-tip {
  display: block; margin-top: 3px;
  font-size: .68rem; color: var(--accent-2);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  cursor: help;
}

/* ── Formulaires ── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; color: var(--muted); }
.form input, .form select, .form textarea {
  background: var(--card); color: var(--ink);
  border: 1px solid var(--line); border-radius: 5px;
  padding: 11px 13px; font-family: var(--font-body); font-size: 1rem;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(230,59,46,.18);
}
.form .btn { align-self: flex-start; margin-top: 6px; }
.hp { position: absolute !important; left: -9999px !important; height: 0; width: 0; opacity: 0; }
.flash { padding: 14px 18px; border-radius: 6px; margin-bottom: 22px; font-weight: 600; }
.flash-ok  { background: rgba(46,160,67,.15);  border: 1px solid #2ea043; color: #7ee2a8; }
.flash-err { background: rgba(230,59,46,.15); border: 1px solid var(--accent); color: #ff9d94; }

/* ── Boutique ── */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.shop-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 18px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, border-color .2s;
}
.shop-card:hover { transform: translateY(-4px); border-color: var(--accent-2); }
.shop-img {
  height: 140px; border-radius: 6px;
  background: repeating-linear-gradient(45deg, #241e1b, #241e1b 12px, #1c1714 12px, #1c1714 24px);
  display: flex; align-items: center; justify-content: center;
}
.shop-logo {
  font-family: var(--font-title); font-size: 2.6rem; letter-spacing: 6px;
  color: rgba(243,237,232,.28);
}
.shop-card h3 { font-family: var(--font-title); font-size: 1.25rem; letter-spacing: 1.5px; }
.shop-card p { color: var(--muted); font-size: .88rem; flex: 1; }
.shop-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.shop-price { font-weight: 700; color: var(--accent-2); font-size: 1.1rem; }
.shop-note { color: var(--muted); font-size: .88rem; margin-top: 26px; font-style: italic; }

/* ── Nous ── */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; align-items: center; }
.about-photo {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 4 / 3; border: 1px solid var(--line);
}
.kenburns-mini .kb-slide {
  inset: -6%; opacity: 1;
  animation: kb-slow 18s ease-in-out infinite alternate;
}
@keyframes kb-slow {
  from { transform: scale(1)    translate(0, 0); }
  to   { transform: scale(1.12) translate(2%, -2%); }
}
.about-text p { margin-bottom: 16px; color: var(--ink); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg-alt); }
.footer-in { text-align: center; }
.logo-footer { font-size: 1.6rem; }
.footer p { color: var(--muted); font-size: .88rem; margin-top: 8px; }
.footer .version { font-size: .75rem; opacity: .7; letter-spacing: 1px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .burger { display: block; margin-left: auto; }
  .mainnav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: rgba(12,10,9,.97);
    padding: 16px 24px; border-bottom: 1px solid var(--line);
  }
  .mainnav.open { display: flex; }
  .langswitch { margin-left: 0; }
  .about { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cal-cell { min-height: 48px; }
  .cal-tip { display: none; }
}
