/* =============================================
   ACCUEIL — Styles spécifiques
   ============================================= */

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Portée musicale décorative */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 42px,
    rgba(2, 0, 71, 0.055) 42px, rgba(2, 0, 71, 0.055) 43px
  );
  pointer-events: none;
}

/* Images décoratives */
.hero-deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
}
.hero-deco-top-right {
  right: -2%; top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 22vw, 500px);
}
.hero-deco-top-left {
  left: 7%; top: 5%;
  width: clamp(80px, 10vw, 200px);
}
.hero-deco-bottom-left {
  left: 7%; top: 60%;
  width: clamp(80px, 24vw, 200px);
}

/* Contenu centré */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-caps);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.65;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.9s ease both;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  margin-bottom: 1.8rem;
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero h1 em { font-style: italic; color: #1a0f6e; }

.hero-sep {
  width: 50px; height: 1.5px;
  background: var(--navy); opacity: 0.25;
  margin: 0 auto 1.8rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-sub {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.72;
  max-width: 520px;
  margin: 0 auto 3rem;
  animation: fadeUp 0.9s 0.45s ease both;
}

.hero-cta-column {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.55s ease both;
}

.hero-cta {
  margin-top: 5px;
  margin-left: 10px;
  margin-bottom: 10px;
  font-family: var(--font-caps);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 1rem 2.8rem;
  border: 1.5px solid var(--navy);
  transition: background 0.3s, color 0.3s;
  animation: fadeUp 0.9s 0.6s ease both;
  display: inline-block;
}

.hero-cta:hover { background: transparent; color: var(--navy); }


/* ===== BADGE PROCHAIN CONCERT (hero) ===== */
.hero-next-concert {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(255, 235, 184, 0.25);
  padding: 0.6rem 1.2rem;
  margin-bottom: 2rem;
  transition: border-color 0.25s, background 0.25s;
  animation: fadeUp 0.9s 0.38s ease both;
}
.hero-next-concert:hover {
  border-color: rgba(255, 235, 184, 0.6);
  background: rgba(255, 235, 184, 0.05);
}
.hero-next-label {
  font-family: var(--font-caps);
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
  white-space: nowrap;
}
.hero-next-info {
  font-family: var(--font-caps);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: var(--navy);
  opacity: 0.9;
}
.hero-next-arrow {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.9rem;
  transition: transform 0.2s, opacity 0.2s;
}
.hero-next-concert:hover .hero-next-arrow {
  transform: translateX(3px);
  opacity: 1;
}

@media (max-width: 480px) {
  .hero-next-concert { flex-direction: column; gap: 0.3rem; text-align: center; }
  .hero-next-arrow { display: none; }
}


.logo-right-text {
  position: absolute;
  width: clamp(200px, 28vw, 520px);
  right: 6%; top: 102%;
}


/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(2, 0, 71, 0.1);
  border: 1px solid rgba(2, 0, 71, 0.1);
  margin-top: 4rem;
}

.stat { background: var(--cream); padding: 2.5rem; text-align: center; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.stat-label {
  font-family: var(--font-caps);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.7;
  margin-top: 0.5rem;
  display: block;
}


/* ===== MOT DU PRÉSIDENT ===== */
.president-section { background: var(--navy); padding: 6rem 2.5rem; }

.president-inner {
  max-width: var(--section-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.president-photo-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.president-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(255, 235, 184, 0.3);
  background: rgba(255, 235, 184, 0.08);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.president-photo img {
  width: 180px;
}

.president-name {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  color: var(--gold); text-align: center;
}

.president-role {
  font-family: var(--font-caps);
  font-size: var(--text-xs); font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
  text-align: center; margin-top: 0.3rem;
}

.president-quote-wrap { position: relative; }

.president-quote-mark {
  font-family: var(--font-serif);
  font-size: 8rem; line-height: 1;
  color: var(--gold); opacity: 0.15;
  position: absolute; top: -2rem; left: -1rem;
  pointer-events: none; user-select: none;
}

.president-tag {
  font-family: var(--font-caps);
  font-size: var(--text-xs); font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); opacity: 0.75;
  margin-bottom: 1.5rem; display: block;
}

.president-quote {
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 300; font-style: italic;
  color: var(--gold); line-height: 1.7;
  opacity: 0.9; position: relative; z-index: 1;
}

.president-sig { margin-top: 2rem; width: 40px; height: 1px; background: rgba(255, 235, 184, 0.3); }


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

/* ── 1440px ── */
@media (max-width: 1440px) {
  .hero { min-height: calc(100vh - 70px); padding: 4rem 2rem 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 5vw, 5rem); }
  .president-section { padding: 5rem 2rem; }
  .president-inner { gap: 3.5rem; }
}

/* ── 1100px ── */
@media (max-width: 1100px) {
  .hero-deco-top-left     { width: clamp(120px, 18vw, 280px); }
  .hero-deco-bottom-right { width: clamp(120px, 20vw, 320px); }
  .hero-deco-top-right    { width: clamp(70px, 9vw, 150px); }
  .president-inner { gap: 2.5rem; }
  .logo-right-text { width: clamp(90px, 12vw, 200px); }
}

/* ── Tablette 860px ── */
@media (max-width: 860px) {
  .hero { padding: 3.5rem 1.5rem 3rem; min-height: 70vh; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
  .hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.15em; }
  .hero-deco-bottom-right { display: none; }
  .hero-deco-top-right { right: 2%; top: 2%; width: clamp(60px, 10vw, 120px); }
  .hero-deco-top-left  { width: clamp(100px, 18vw, 220px); }
  .hero-cta { padding: 0.85rem 2rem; }

  .logo-right-text {
    position: static;
    display: block;
    width: clamp(80px, 25vw, 160px);
    margin: 1.5rem auto 0;
  }

  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 2rem 1rem; }
  .stat-number { font-size: clamp(1.6rem, 4vw, 2.5rem); }

  .president-section { padding: 4rem 1.5rem; }
  .president-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .president-photo-wrap { margin: 0 auto; }
  .president-sig { margin: 1.5rem auto 0; }
  .president-photo { width: 140px; height: 140px; }
  .president-quote { font-size: clamp(1rem, 2.5vw, 1.4rem); }
}

/* ── Mobile 640px ── */
@media (max-width: 640px) {
  .hero { padding: 2.5rem 1rem 2.5rem; min-height: 80vh; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-deco-top-right { display: none; }
  .hero-deco-top-left  { display: none; }
  .hero-cta-column { flex-direction: column; align-items: center; gap: 0.5rem; }
  .hero-cta { padding: 0.8rem 1.8rem; margin: 0; }

  .stats { grid-template-columns: 1fr; }
  .stat { padding: 1.5rem 1rem; }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
  .president-section { padding: 3rem 1rem; }
  .president-photo { width: 110px; height: 110px; }
  .president-name { font-size: 1rem; }
  .president-quote-mark { font-size: 5rem; }
}

/* ── Très petit mobile 380px ── */
@media (max-width: 380px) {
  .hero { padding: 2rem 0.8rem; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .hero-eyebrow { font-size: 0.72rem; letter-spacing: 0.1em; }
  .hero-next-concert { padding: 0.5rem 0.8rem; gap: 0.2rem; }
  .hero-cta { padding: 0.75rem 1.4rem; font-size: 0.75rem; }
  .stat { padding: 1.2rem 0.6rem; }
  .stat-number { font-size: 1.6rem; }
  .president-section { padding: 2.5rem 0.8rem; }
  .president-photo { width: 90px; height: 90px; }
  .president-quote { font-size: 1rem; }
}
