/*
 * POLES HERO LAYOUT
 * Layout en 2 colonnes pour les pages de pôles
 * Fond gris clair, section hero avec texte à gauche et rectangle rouge à droite
 */

/* === VARIABLES === */
:root {
  --pole-bg: #F0F1F5;
  --pole-red: #860E0E;
  --pole-dark: #0E0E0E;
  --pole-text: #111111;
  --pole-max-width: 1200px;
}

/* === BODY & CONTAINER === */
.pole-page {
  background-color: var(--pole-bg);
  min-height: 100vh;
}

/* Fix pour que le header soit visible sur fond clair */
.pole-page .site-header {
  background: transparent;
}

/* Style pour le logo cliquable */
.pole-page .logo-link {
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.pole-page .logo-link:hover {
  opacity: 0.8;
}

.pole-hero {
  background-color: var(--pole-bg);
  padding: 120px 40px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pole-hero-container {
  max-width: var(--pole-max-width);
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* === COLONNE GAUCHE (TEXTE) === */
.pole-hero-left {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pole-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--pole-dark);
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.pole-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--pole-text);
  margin: 0;
  font-weight: 400;
}

.pole-mission-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--pole-dark);
  margin: 24px 0 16px;
  font-family: 'Inter', sans-serif;
}

.pole-mission-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pole-text);
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--pole-dark);
  font-weight: 400;
}

/* === BOUTONS === */
.pole-cta-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 16px;
}

.pole-btn {
  position: relative;
  display: inline-block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pole-red);
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.pole-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--pole-red);
}

.pole-btn::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--pole-red);
}

.pole-btn:hover {
  opacity: 0.7;
}

/* === COLONNE DROITE (RECTANGLE ROUGE) === */
.pole-hero-right {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pole-image-box {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3/4;
  background-color: var(--pole-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    -8px 0 24px rgba(134, 14, 14, 0.15),
    8px 0 24px rgba(134, 14, 14, 0.15);
  position: relative;
}

.pole-image-text {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: center;
  padding: 40px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pole-hero-container {
    gap: 40px;
  }

  .pole-hero-left {
    flex: 0 0 55%;
  }

  .pole-hero-right {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .pole-hero {
    padding: 100px 24px 60px;
    min-height: auto;
  }

  .pole-hero-container {
    flex-direction: column;
    gap: 48px;
  }

  .pole-hero-left,
  .pole-hero-right {
    flex: 0 0 100%;
    width: 100%;
  }

  .pole-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .pole-image-box {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  .pole-title {
    font-size: 42px;
  }

  .pole-mission-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .pole-hero {
    padding: 90px 20px 40px;
  }

  .pole-title {
    font-size: 36px;
  }

  .pole-mission-title {
    font-size: 28px;
  }

  .pole-description,
  .pole-mission-text {
    font-size: 14px;
  }

  .pole-image-text {
    font-size: 24px;
  }
}

/* === SECTION MAIN === */
.pole-page main {
  background-color: #FFFFFF;
  padding-top: 0;
}

.pole-page main section:first-child {
  padding-top: 80px;
}
