/* ========================================
   PAGE ENTREPRISE - Style unifié
   ======================================== */

/* ========================================
   HERO AVEC LOGO
   ======================================== */

.page-hero-logo .page-hero-logo-bg {
  background: linear-gradient(135deg, #1e3a4c 0%, #2c485b 50%, #1e3a4c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-logo .hero-logo-centered {
  position: relative;
  width: auto;
  height: auto;
  max-width: 750px;
  max-height: 375px;
  object-fit: contain;
  opacity: 0.15;
  animation: float-slow 8s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.02);
  }
}

/* ========================================
   BARQUE ANIMÉE
   ======================================== */

.barque-animated {
  animation: float-barque 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(95, 191, 171, 0.2));
}

@keyframes float-barque {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

/* ========================================
   SECTION HISTOIRE
   ======================================== */

.section-histoire {
  padding: 100px 0;
  background-color: #F5FBFA;
}

.histoire-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: center;
}

.histoire-image {
  text-align: center;
}

.histoire-image img {
  max-width: 250px;
  height: auto;
  opacity: 0.8;
}

.histoire-title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 24px;
}

.histoire-quote {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: #5FBFAB;
  margin-bottom: 24px;
  padding-left: 20px;
  border-left: 3px solid #5FBFAB;
}

.histoire-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4a6572;
  margin-bottom: 16px;
}

.histoire-text strong {
  color: #1e3a4c;
}

/* ========================================
   SECTION VALEURS (sur fond bleu marine)
   ======================================== */

.section-valeurs {
  padding: 100px 0 80px;
}

.valeurs-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.valeurs-main-title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.valeurs-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.valeur-card-dark {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.valeur-card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.valeur-icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  background: rgba(95, 191, 171, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5FBFAB;
}

.valeur-card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.valeur-card-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   SECTION ÉQUIPE (fond clair)
   ======================================== */

.section-equipe {
  padding: 80px 0;
  background-color: #F5FBFA;
}

.equipe-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.equipe-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 58, 76, 0.15);
  aspect-ratio: 1 / 1;
  max-width: 400px;
}

.equipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.equipe-title {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  color: #1e3a4c;
  margin-bottom: 24px;
}

.equipe-bio {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4a6572;
  margin-bottom: 20px;
}

.equipe-bio strong {
  color: #1e3a4c;
}

.equipe-quote {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #5FBFAB;
  font-style: italic;
  margin-bottom: 20px;
}

/* ========================================
   SECTION ENGAGEMENT (sur fond bleu marine)
   ======================================== */

.section-engagement {
  padding: 80px 0;
}

.engagement-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.engagement-title {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 32px;
}

.engagement-text {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.engagement-text strong {
  color: #ffffff;
}

.engagement-signature {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signature-name {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: #5FBFAB;
}

.signature-role {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

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

@media (max-width: 1023px) {
  .histoire-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .histoire-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid #5FBFAB;
    padding-top: 20px;
  }

  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .equipe-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .equipe-image {
    max-width: 350px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .section-histoire {
    padding: 60px 0;
  }

  .histoire-title {
    font-size: 26px;
  }

  .histoire-quote {
    font-size: 16px;
  }

  .histoire-image img {
    max-width: 180px;
  }

  .section-valeurs {
    padding: 60px 0;
  }

  .valeurs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .valeur-card-dark {
    padding: 32px 24px;
  }

  .valeurs-main-title,
  .equipe-title,
  .engagement-title {
    font-size: 26px;
  }

  .section-equipe,
  .section-engagement {
    padding: 60px 0;
  }

  .equipe-image {
    max-width: 250px;
    max-height: 250px;
  }

  .equipe-image img {
    max-height: 250px;
  }

  /* Logo hero responsive */
  .page-hero-logo .hero-logo-centered {
    max-width: 300px;
    max-height: 150px;
  }
}
