:root {
  --gold: #d4b26a;
  --gold-light: #e4c88f;
  --bg: #111;
  --text: #eee;
  --max-width: 900px;
  --font-body: 'Open Sans', sans-serif;
}

/* ===== Base ===== */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  background:
    radial-gradient(1200px 600px at 70% 20%, rgba(212,178,106,0.08), transparent 60%),
    radial-gradient(900px 500px at 20% 80%, rgba(60,180,140,0.06), transparent 55%),
    #0e0e0e;
}
h2, h3, .concert-title, .artist-name {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.06em;
}

.concert-title {
  color: #f0d890;                 /* EXACTEMENT la couleur des artistes */
  font-size: 2.4rem;              /* plus grand */
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 600;

  margin: 0;

  text-shadow:
    0 0 14px rgba(212,178,106,0.55),
    0 0 36px rgba(212,178,106,0.30);
}

.tagline{
  margin: 1rem auto 1.2rem;
  text-align: center;
  max-width: 780px;

  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 300;

  color: rgba(238,238,238,0.88);
  letter-spacing: 0.2px;

  /* petit “pytune glow” discret */
  text-shadow: 0 0 18px rgba(212,178,106,0.10);
}

.tagline{
  margin: 1rem auto 1.2rem;
  text-align: center;
  max-width: 780px;

  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 300;

  color: rgba(238,238,238,0.88);
  letter-spacing: 0.2px;

  /* petit “pytune glow” discret */
  text-shadow: 0 0 18px rgba(212,178,106,0.10);
}
.tagline{
  padding: .75rem 1rem;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.12));
  border: 1px solid rgba(212,178,106,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.tagline-strong{
  color: rgba(212,178,106,0.95);
  font-weight: 500;
  letter-spacing: 0.6px;
}

.tagline-soft{
  color: rgba(238,238,238,0.80);
  font-style: italic;
}

/* Mobile: plus compact */
@media (max-width: 700px){
  .tagline{
    font-size: 0.98rem;
    margin: .85rem auto 1rem;
    padding: 0 .5rem;
  }
}

@media (max-width: 700px) {
  .concert-title {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
}

/* Mobile: plus compact */
@media (max-width: 700px){
  .tagline{
    font-size: 0.98rem;
    margin: .85rem auto 1rem;
    padding: 0 .5rem;
  }
}
.home-image {
  position: relative;
}

.home-image::after {
  content: "";
  position: absolute;
  inset: -20px;
  background:
    radial-gradient(circle at center, rgba(212,178,106,0.15), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: #0a0a0a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3rem;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand { font-size: 1rem; letter-spacing: 1px; color: #fff; font-weight: 100; }
.brand .gold { color: var(--gold); font-weight: 100; }

.nav-links { display: flex; align-items: center; gap: 0.8rem; }
.nav-links a {
  color: #fff; text-decoration: none; font-weight: 100;
  transition: color .2s ease, border-bottom .3s ease; padding-bottom: 2px;
}
.nav-links a:hover { color: var(--gold); border-bottom: 1px solid var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom: 1px solid var(--gold); }
.nav-links span { color: var(--gold); margin: 0 .2rem; }

/* ===== Sections ===== */
.section {
  padding: 2rem 1.5rem;
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
}
.section h2 {
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2rem;
}
.section .concert-title,
.artists-line .artist-name {
  color: #f0d890;
}

/* ===== Accueil ===== */
.home-header {
  text-align: center;
  margin-top: 1.2rem;
  margin-bottom: 1rem;
}

.concert-banner {
  max-width: var(--max-width);
  margin: 2rem auto 1rem auto;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: rgba(25, 25, 25, 0.9);
  box-shadow: 0 0 14px rgba(212, 178, 106, 0.12);
  text-align: center;
}


.concert-details {
  color: #ddd;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 0.4rem;
  font-weight: 300;
}

.calendar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  margin-top: 1.6rem;
  padding: 0.7rem 1.4rem;

  font-size: 1.05rem;          /* AVANT: 0.9rem */
  font-weight: 600;

  color: #0f0f0f;
  background: linear-gradient(180deg, #f0d890, #d4b26a);

  border-radius: 8px;
  text-decoration: none;

  box-shadow:
    0 6px 18px rgba(212,178,106,0.45),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition: transform .15s ease, box-shadow .2s ease;
}

.calendar-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212,178,106,0.65);
}
.calendar-link:hover { background: var(--gold-light); color: #111; }
.calendar-link,
.map-link,
.download-btn {
  background: linear-gradient(180deg, #e4c88f, #c8a97e);
  box-shadow: 0 6px 20px rgba(212,178,106,0.35);
}
.calendar-link:hover,
.map-link:hover,
.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,178,106,0.5);
}

/* ===== Artists line ===== */
.artists-line {
  margin-top: 1.6rem;
  font-size: 1.8rem;     /* AVANT: 1.4rem */
  letter-spacing: 0.08em;
  font-weight: 400;
}

.artist-name {
  color: #f0d890;        /* plus lumineux */
  text-shadow: 0 0 14px rgba(212,178,106,0.45);
}
.separator { color: var(--gold-light); margin: 0 1rem; }

/* ===== Image ===== */
.home-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem auto;
  max-width: 1000px;
  background: #0d0d0d;
  padding: 0.5rem;
}
.home-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #222;
}

/* ===== Info blocks ===== */
.home-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem auto;
  max-width: var(--max-width);
  padding: 0 1rem;
}

.info-block {
  background: #0a0a0a;
  border: 1px solid rgba(212,178,106,0.6);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border-radius: 6px;
  padding: 1.5rem;
  flex: 1 1 300px;
  text-align: left;
  background: linear-gradient(
    180deg,
    rgba(18,18,18,0.95),
    rgba(12,12,12,0.95)
  );
}

.info-block h3 {
  color: var(--gold);
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.4rem;
}
.info-block p { font-size: 0.95rem; line-height: 1.5; }

/* ===== Programme ===== */
.program ul { list-style: none; padding-left: 0; margin: 0.6rem 0 0 0; }
.program li {
  margin: 0.4rem 0;
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 0.6rem;
}
.program .note { font-size: 0.85rem; opacity: 0.75; margin-top: 0.6rem; }

/* ===== Bloc concert ===== */
.info-block.concert { text-align: center; }
.concert-date {
  background: #c8a97e;
  padding: 1rem;
  border-radius: 4px;
  /* margin-top: 1rem; */
  font-weight: 600;
  color: #111;
}

/* ===== Bloc Donation ===== */
.info-block.donation {
  background: #0a0a0a;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1.3rem 1.5rem;
  text-align: left;
  max-width: 820px;
  /* margin: 1.2rem auto; */
}

.info-block.donation h3 {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.4rem;
  display: flex;
  align-items: center;
  g
}
.info-block.donation h3::before {
  content: "🎩";
  font-size: 1.2rem;
  margin-right: 0.4rem;
}
.info-block.donation p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.8rem 0;
}
.info-block.donation .note {
  font-size: 0.85rem;
  opacity: 0.8;
  font-style: italic;
  margin-top: 0.rem;
}

/* ===== Biographies ===== */
.bio-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 850px;
  margin: 1rem auto;
  padding: 0 1rem;
}
.bio { flex: 1 1 300px; text-align: left; }

/* ===== Contact ===== */
.contact-link,
.section a[href^="mailto:"] {
  color: #3bd17f;             /* Vert PyTune */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover,
.section a[href^="mailto:"]:hover {
  color: var(--gold-light);   /* Doré clair au survol */
  text-decoration: underline;
}
.bio a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
}

.bio a:hover {
  color: #fff;
  text-decoration: underline;
}

.video-actions {
  display: flex;
  gap: .6rem;
  margin-top: .4rem;
}

.like-btn, .share-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: .95rem;
  transition: background .2s ease, color .2s ease, transform .05s ease;
}

.like-btn:hover, .share-btn:hover {
  background: var(--gold);
  color: #111;
}

.like-btn.active {
  background: var(--gold);
  color: #111;
}

.like-btn:active, .share-btn:active {
  transform: translateY(1px);
}

@media (max-width: 700px) {
  .video-actions { justify-content: center; flex-wrap: wrap; }
}

/* ===== Responsive — MOBILE ONLY ===== */
@media (max-width: 700px) {
  :root { --gutter: 1rem; }          /* unique gouttière à gauche/droite */

  /* Navbar */
  .navbar { flex-direction: column; height: auto; padding: 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: .5rem; }

  /* Toutes les sections ont la même gouttière */
  .section { padding: 5.5rem var(--gutter) 1.5rem; }

  /* Haut de page */
  .concert-banner { padding: 1rem; margin: 1rem auto; }
  .artists-line { display: flex; flex-direction: column; gap: .3rem; }
  .separator { display: none; }

  /* Photo */
  .home-image { margin: 0 auto 1.5rem; }   /* la gouttière vient de .section */

  /* Grille Programme / Concert */
  .home-info {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 1rem auto;
    padding: 0;                           /* pas de gouttière supplémentaire */
  }
  .info-block {
    width: 100%;
    margin: 0;
    padding: 1rem;                        /* même padding interne partout */
    box-sizing: border-box;
  }
  .info-block.concert .concert-date { padding: .8rem; }

  /* Participation aux frais (souvent hors .section) :
     on lui applique explicitement la même gouttière latérale */
  .info-block.donation {
    width: auto;
    margin: 1rem var(--gutter);
    padding: 1rem;
  }

  /* Biographies : même largeur que le reste */
  .bio-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin: 1rem auto;
    padding: 0;                           /* gouttière déjà via .section */
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
  }
  .bio { flex: 1 1 100%; }
}

/* === Vidéos === */
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.video {
  flex: 1 1 400px;
  max-width: 480px;
  text-align: center;
}

.video video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.video p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--gold-light);
}
.video video:hover {
  transform: scale(1.02);
  transition: transform 0.2s ease;
  box-shadow: 0 0 14px rgba(212, 178, 106, 0.4);
}

/* ========== Affiche officielle ========== */
.affiche-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 380px;
  margin: 0 auto;
  background: #0a0a0a;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1rem;
}

.affiche-preview img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--gold);
  border-radius: 4px;
}

.download-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 0.8rem;
  border-radius: 4px;
  margin-top: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ====== Partenaires & Soutiens ====== */
.soutiens {
  width: 100%;
  max-width: 950px; /* exactement comme la section "Vidéos" */
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.soutiens h2 {
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* Grille fluide qui remplit la largeur disponible */
.soutiens-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; /* étale les logos */
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  margin: 0 auto 1rem;
}

/* Logos mieux proportionnés */
.soutiens-logos img {
  height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0.95);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.soutiens-logos img:hover {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Note en bas */
.soutiens .note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.8rem;
  color: #bbb;
}
/* ===== Soutien principal (PyTune) ===== */
.soutiens-logos .support-main {
  padding: 0.6rem 1rem;
  border-radius: 10px;

  background: radial-gradient(
    circle at center,
    rgba(212,178,106,0.22),
    rgba(0,0,0,0.15) 70%
  );

  box-shadow:
    0 0 22px rgba(212,178,106,0.45),
    inset 0 0 12px rgba(212,178,106,0.25);
}

/* Logo PyTune plus présent */
.soutiens-logos .support-main img {
  height: 130px;               /* AVANT: 100px */
  max-width: 260px;
  filter: brightness(1.05);
}
/* Groupe des soutiens non financiers */
.support-others {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* Ligne des 3 logos */
.support-others > a {
  display: inline-block;
}

/* Groupe des soutiens non financiers */
.support-others {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ligne des 3 logos à droite */
.support-others-logos {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

/* La note sous les 3 logos */
.support-others .note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.7;
  color: #bbb;
  text-align: center;
  max-width: 420px;
}


/* Mobile : les logos passent sur 2 lignes */
@media (max-width: 700px) {
  .soutiens-logos {
    justify-content: center;
    gap: 1.5rem;
  }
  .soutiens-logos img {
    height: 60px;
    max-width: 140px;
  }
}
/* ===== Se rendre au concert ===== */
.access {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
}

.access h2 {
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.access-block {
  background: #0a0a0a;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 1.8rem 2rem;
  text-align: left;
  max-width: 850px;
  margin: 0 auto;
  box-shadow: 0 0 14px rgba(212, 178, 106, 0.1);
}

.access-block p {
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.6;
}

.access-block .gold {
  color: var(--gold);
  font-weight: 600;
}

.access-modes {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.access-modes .mode {
  background: #111;
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1rem;
  border-radius: 4px;
  line-height: 1.5;
  font-size: 0.95rem;
  color: #ddd;
}

.map-link {
  display: inline-block;
  margin: 1.5rem 0 1rem;
  text-decoration: none;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.map-link:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.map-frame {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(212, 178, 106, 0.1);
}
.access .arrival-note {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  font-style: italic;
  opacity: 0.85;
}
/* À proximité */
.access-modes .mode.nearby {
  background: #101010;
  border-left-color: #8fd4a9; /* petit accent différent */
}
.access-modes .mode.nearby strong {
  color: var(--gold);
}

/* Mobile */
@media (max-width: 700px) {
  .access-block {
    padding: 1rem;
  }
  .access-modes .mode {
    font-size: 0.9rem;
  }
}
/* === Overlay d’accès === */
#access-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.access-box {
  background: #1a1a1a;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: var(--text);
  box-shadow: 0 0 15px rgba(212, 178, 106, 0.2);
}

.access-box h2 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.access-box input {
  padding: 0.6rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--gold-light);
  background: #111;
  color: var(--text);
  margin-bottom: 0.8rem;
  width: 200px;
}

.access-box button {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.2s;
}

.access-box button:hover {
  background: var(--gold-light);
}

#error-msg {
  color: #e66;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 700px) {
  .video-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 700px) {
  .artists-line {
    font-size: 1.3rem;
  }
}
/* ===== Mini footer ===== */
.site-footer{
  margin-top: 3rem;
  padding: 1.2rem 1rem 1.6rem;
  border-top: 1px solid rgba(212,178,106,0.25);
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.85),
    rgba(5,5,5,0.95)
  );
}

.footer-inner{
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  align-items: center;
  justify-content: space-between;

  font-size: 0.82rem;
  color: rgba(238,238,238,0.65);
}

.site-footer a{
  color: var(--gold-light);
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer a:hover{
  color: var(--gold);
  text-decoration: underline;
}

.footer-center{
  display: flex;
  align-items: center;
  gap: .4rem;
  text-align: center;
}

.footer-center .sep{
  opacity: 0.4;
}

.ga-note{
  font-style: italic;
  opacity: 0.55;
}

/* Mobile */
@media (max-width: 700px){
  .footer-inner{
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
}

@media (max-width: 700px) {
  .calendar-link {
    font-size: 1rem;
    padding: 0.65rem 1.2rem;
  }
}

.section.legal {
  max-width: 700px;
  margin: 6rem auto 3rem;
  text-align: left;
}

.section.legal h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.section.legal h3 {
  color: var(--gold);
  margin-top: 1.8rem;
  font-weight: 500;
}

.section.legal p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.8rem 0;
}

.section.legal .back-link {
  margin-top: 2.5rem;
  text-align: center;
}

//* ===== Médaillon à droite du bandeau ===== */
.concert-banner.with-medallion {
  position: relative;
  padding-right: 180px; /* réserve la place du médaillon */
}

/* ===== Médaillon ancré dans le cadre ===== */
.concert-banner.with-medallion {
  position: relative;
  padding-right: 160px; /* réserve la place */
}

.concert-medallion {
  position: absolute;
  top: 50%;
  right: 32px;               /* DANS le cadre */
  transform: translateY(-50%);
  z-index: 2;                /* au-dessus du fond */
}

.concert-medallion img {
  width: 130px;
  height: auto;

  /* Ombre douce, réaliste, non agressive */
  filter:
    drop-shadow(0 6px 14px rgba(0,0,0,0.45));
    drop-shadow(0 0 10px rgba(212,178,106,0.25));
    drop-shadow(0 5px 12px rgba(0,0,0,0.5));

  transition: transform 0.25s ease, filter 0.25s ease;
}

.concert-medallion img:hover {
  transform: scale(1.035);
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,0.55))
    drop-shadow(0 0 14px rgba(212,178,106,0.35));
}
@media (max-width: 700px) {
  .concert-banner.with-medallion {
    padding-right: 1rem;
  }

  .concert-medallion {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0 auto 1.2rem auto;
    text-align: center;
  }

  .concert-medallion img {
    width: 100px;
  }
}