/* home.css — Page Accueil */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,7,0.3) 0%,
    rgba(8,8,7,0.75) 60%,
    var(--ink) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
}

.hero__logo {
  height: clamp(70px, 10vw, 110px);
  width: auto;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--gold);
  letter-spacing: 2px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-pulse 2s ease-in-out infinite;
}

.hero__scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--smoke);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ── SECTION EVENTS ── */
.section-events {
  padding: var(--gap-xl) var(--pad-x);
  background: var(--ink);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-top: 0.75rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-events {
    padding: var(--gap-xl) 3rem;
  }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── CARDS ACCUEIL ── */
.section-events .ev-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
  border: 1px solid var(--border);
  overflow: hidden;
}

.section-events .ev-card__poster {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  flex-shrink: 0;
}

.section-events .ev-card__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}

.section-events .ev-card:hover .ev-card__poster img {
  transform: scale(1.04);
}

.section-events .ev-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,7,0.25) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.section-events .ev-card__body {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: static;
  transform: none;
  opacity: 1;
  z-index: 2;
}

.section-events .ev-card__date {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-events .ev-card__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: none;
}

.section-events .ev-card__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--smoke);
}

.section-events .ev-card__venue {
  font-size: 0.72rem;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-events .ev-card__venue i {
  color: var(--gold);
  font-size: 0.62rem;
}

/* Boutons — identiques agenda */
.section-events .ev-card__actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  margin-top: 1rem !important;
  opacity: 1 !important;
  transform: none !important;
}

.section-events .ev-card__cta {
  opacity: 1 !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-size: 0.62rem !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  transition: background 0.3s !important;
  border: none !important;
}

.section-events .ev-card__cta:hover {
  background: var(--gold-light) !important;
  color: var(--ink) !important;
}

.section-events .ev-card__more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 10px 20px !important;
  border: 1px solid var(--border) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: var(--smoke) !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: border-color 0.3s, color 0.3s !important;
}

.section-events .ev-card__more:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ── WALL OF FAME TEASER ── */
.section-wof {
  padding: var(--gap-xl) var(--pad-x);
  background: var(--ink2);
}

.wof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-bottom: 0;
}

.wof-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}

.wof-item__poster {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  font-size: 2.5rem;
  filter: grayscale(1);
  transition: filter var(--t-med);
}

.wof-item__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter var(--t-med), transform var(--t-med);
}

.wof-item:hover .wof-item__poster img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.wof-item:hover .wof-item__poster {
  filter: grayscale(0);
}

.wof-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,7,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.wof-item:hover .wof-item__overlay {
  opacity: 1;
  transform: translateY(0);
}

.wof-item__name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.2;
}

.wof-item__year {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .wof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-wof {
    padding: var(--gap-xl) 3rem;
  }
}

/* ── CONTACT STRIP ── */
.contact-strip {
  background: var(--charcoal);
  padding: 6rem var(--pad-x);
  position: relative;
}

.contact-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.contact-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.contact-strip__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--cream);
}

.contact-strip__title em {
  font-style: italic;
  color: var(--gold);
}

.contact-strip__email {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--smoke);
  letter-spacing: 1px;
  transition: color var(--t-fast);
}

.contact-strip__email:hover {
  color: var(--gold);
}

@media (min-width: 1024px) {
  .contact-strip {
    padding: 7rem 3rem;
  }
}

/* ── HISTOIRE + NEWSLETTER ── */
.histoire-newsletter {
  background: var(--charcoal);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.histoire-newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 80px; right: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.histoire-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  color: var(--cream);
  border: none;
  margin-top: 16px;
}

.sec-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--cream);
  margin-top: 0.75rem;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.newsletter-sub {
  font-size: .95rem;
  color: var(--smoke);
  margin: 12px 0 0;
  line-height: 1.7;
}

.newsletter-form-wrap {
  margin-top: 32px;
}

.newsletter-form-wrap input[type="email"],
.newsletter-form-wrap input[type="text"] {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--cream) !important;
  font-family: var(--font-body) !important;
  padding: 14px 20px !important;
  border-radius: 0 !important;
}

.newsletter-form-wrap input:focus {
  border-color: var(--gold) !important;
  outline: none !important;
}

.newsletter-form-wrap button,
.newsletter-form-wrap input[type="submit"] {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-size: .72rem !important;
  padding: 14px 36px !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background .3s !important;
}

.newsletter-form-wrap button:hover,
.newsletter-form-wrap input[type="submit"]:hover {
  background: var(--gold-light) !important;
}

@media (max-width: 1024px) {
  .histoire-newsletter {
    grid-template-columns: 1fr;
    padding: 80px 30px;
    gap: 60px;
  }
  .histoire-newsletter::before { left: 30px; right: 30px; }
}