/* ==============
   RESET SIMPLE
   ============== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f4f4f6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

/* =======================
   HERO WRAPPER GLOBAL
   ======================= */
.hero-wrapper {
  padding: 32px 16px 64px;
}

@media (min-width: 992px) {
  .hero-wrapper {
    padding: 40px 40px 80px;
  }
}

/* =======================
   CARD PRINCIPALE
   ======================= */
.hero-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  /*max-width: 1440px;*/
  margin: 0 auto;
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* =======================
   MEDIA (IMAGE / VIDÉO)
   ======================= */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =======================
   DÉGRADÉ GAUCHE
   ======================= */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.93) 0%,
    rgba(0, 0, 0, 0.88) 30%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.15) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* =======================
   CONTENU TEXTE HERO
   ======================= */
.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 480px;
  padding: 70px 32px;
}

@media (min-width: 992px) {
  .hero-content {
    padding: 80px 60px;
  }
}

.hero-content h1 {
  font-weight: 800;
  font-size: 3.1rem;
  line-height: 1.05;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.6rem;
  }
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* =======================
   BOUTON HERO
   ======================= */
.btn-hero {
  display: inline-block;
  background-color: #00b7ff;
  border-radius: 40px;
  padding: 14px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 20px rgba(0, 183, 255, 0.35);
}

.btn-hero:hover,
.btn-hero:focus {
  background-color: #00a7eb;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 183, 255, 0.45);
}

/* ========================================================================
   SECTION LEADERSHIP
   ======================================================================== */

.leadership-section {
  background-color: #f4f4f6;
}

.leadership-title {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 24px;
}

.leadership-title span {
  font-style: italic;
  font-weight: 400;
}

@media (min-width: 992px) {
  .leadership-title {
    font-size: 3.4rem;
  }
}

.leadership-card {
  background-color: #e4e8dd;
  border-radius: 28px;
  padding: 32px 20px 24px;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 992px) {
  .leadership-card {
    padding: 40px 40px 30px;
  }
}

/* Slider */
.leader-slider {
  position: relative;
  min-height: 320px;
}

.leader-slide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  position: absolute;
  inset: 0;
}

.leader-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

/* Texte */
.leader-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #6b6f69;
}

.leader-name {
  font-weight: 700;
  font-size: 1.7rem;
}

.leader-text {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #222;
}

/* Bouton */
.btn-leader {
  display: inline-block;
  background-color: #00b7ff;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-leader:hover,
.btn-leader:focus {
  background-color: #00a7eb;
  color: #ffffff;
}

/* Photo */
.leader-photo-wrap {
  border-radius: 20px;
  overflow: hidden;
  max-width: 420px;
  margin: 0 auto;
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation flèches */
.leader-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
  padding-right: 12px;
}

.leader-nav-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  padding: 4px 10px;
  cursor: pointer;
  color: #333;
  border-radius: 999px;
}

.leader-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

/* ========================================================================
   HEADER / MENU
   ======================================================================== */

.pc-header {
  padding: 18px 16px 10px;
  background-color: #f4f4f6;
}

@media (min-width: 992px) {
  .pc-header {
    padding: 20px 40px 12px;
  }
}

/* Logo */
.pc-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 2px solid #000;
  font-weight: 700;
  font-size: 1.1rem;
}

.pc-logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: lowercase;
}

/* Bouton événements */
.btn-header-events {
  background-color: #00b7ff;
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  color: #fff;
  letter-spacing: 0.08em;
}

.btn-header-events:hover {
  background-color: #00a7eb;
  color: #fff;
}

/* Hamburger */
.pc-menu-toggle {
  width: 34px;
  height: 26px;
  border: none;
  background: transparent;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.pc-menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background-color: #000;
}

/* ========================================================================
   MEGA MENU
   ======================================================================== */

.pc-mega {
  position: fixed;
  inset: 0;
  background-color: #05070b;
  color: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  padding-top: 24px;
  overflow: visible;
}

.pc-mega-inner {
  max-width: 1200px;
}

/* Ouvert */
.pc-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* DIAGONALE BAS DE PAGE (style Passion) */
.pc-mega::after {
  content: "";
  position: absolute;
  left: 0;
  width: 150%;
  height: 480px;
  pointer-events: none;
  z-index: -1;

  /* commence sous le contenu, pour glisser sur le hero */
  top: calc(100% - 180px);

  /* dégradé doux */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.07) 40%,
    rgba(0, 0, 0, 0.04) 70%,
    rgba(0, 0, 0, 0.00) 100%
  );

  transform: rotate(-3deg);
  transform-origin: top left;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pc-mega.is-open::after {
  opacity: 1;
}

/* top bar dans le mega */
.pc-mega-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 18px;
}

/* logo light */
.pc-logo-mark-light {
  border-color: #fff;
}
.pc-logo-text-light {
  color: #fff;
}

/* Nav du mega */
.pc-mega-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-decoration: none;
}
.pc-mega-nav a:hover {
  color: #00b7ff;
}

/* bouton close */
.pc-menu-close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}

/* Carte feature */
.pc-mega-feature {
  background-color: #0f1118;
  border-radius: 18px;
  overflow: hidden;
}

.pc-mega-feature-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.pc-mega-feature-body {
  padding: 16px 18px 14px;
}

.pc-mega-feature-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.pc-mega-feature-body p {
  font-size: 0.88rem;
  opacity: 0.9;
}

.pc-mega-feature-date {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Colonnes de liens */
.pc-mega-col-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.pc-mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-mega-links li {
  margin-bottom: 4px;
}

.pc-mega-links a {
  font-size: 0.9rem;
  color: #f5f5f5;
  text-decoration: none;
}

.pc-mega-links a:hover {
  color: #00b7ff;
}

/* Social */
.pc-mega-social {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

.pc-mega-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-right: 6px;
  color: #fff;
  text-decoration: none;
}

.pc-mega-social-icons a:hover {
  background-color: #fff;
  color: #000;
}

/* Mobile */
@media (max-width: 767.98px) {
  .pc-mega-inner {
    padding: 0 16px;
  }
}
/* Fin menu */


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

.pc-footer {
  background-color: #e5e7dd;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* GROS TEXTE EN ARRIÈRE PLAN */
.pc-footer-bgtext {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 200%;
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  text-transform: lowercase;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 992px) {
  .pc-footer-bgtext {
    font-size: 6rem;
    bottom: -10px;
  }
}

/* TITRES */
.pc-footer-small {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  text-transform: uppercase;
}

.pc-footer-title {
  font-size: 1.5rem;
  font-weight: 700;
}

/* FORMULAIRE */
.pc-footer-input {
  padding: 12px;
  border-radius: 6px;
}

.pc-footer-submit {
  background-color: #00b7ff;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
}

.pc-footer-submit:hover {
  background-color: #00a7eb;
  color: #fff;
}

/* COLONNES */
.pc-footer-col-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
  margin-bottom: 10px;
}

.pc-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-footer-links li {
  margin-bottom: 6px;
}

.pc-footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
}

.pc-footer-links a:hover {
  text-decoration: underline;
}

/* BAS */
.pc-footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.pc-footer-legal a {
  color: inherit;
  text-decoration: none;
}

.pc-footer-legal a:hover {
  text-decoration: underline;
}

/* Réseaux sociaux */
.pc-footer-social a {
  font-size: 1.2rem;
  color: #000;
  opacity: 0.9;
}

.pc-footer-social a:hover {
  opacity: 1;
}

/* FIN FOOTER */