/* Page Mon Histoire */

/* Hero Section */
.page-hero {
  background: linear-gradient(135deg, #f8f8d9 0%, #f8f4d0 100%);
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 2px solid #f8f8d9;
}

.page-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: #015769;
}

.page-hero__quote {
  font-size: 1.3rem;
  color: #015769;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 0;
}

/* Section principale Mon Histoire */
.mon-histoire {
  background: #ffffff;
  padding: 80px 0;
}

.mon-histoire__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: flex-start;
}

.mon-histoire__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 40px;
}

.mon-histoire__img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.mon-histoire__content {
  padding-left: 20px;
}

.mon-histoire__title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 12px;
  color: #015769;
}

.mon-histoire__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.mon-histoire__text p {
  margin-bottom: 24px;
}

.mon-histoire__text p:last-child {
  margin-bottom: 0;
}

/* CTA Buttons - En utilisant les vrais styles du site */
.mon-histoire__cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.mon-histoire__btn {
  display: inline-block;
  padding: 16px 40px;
  background: #f8f8d9;
  color: #015769;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #015769;
  font-size: 1rem;
  text-align: center;
}

.mon-histoire__btn:hover {
  background: #015769;
  color: #f8f8d9;
  border: 2px solid #f8f8d9;
  transform: translateY(-2px);
}

.mon-histoire__btn--secondary {
  background: transparent;
  color: #015769;
  border: 2px solid #015769;
}

.mon-histoire__btn--secondary:hover {
  background: #015769;
  color: #f8f8d9;
  border: 2px solid #f8f8d9;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .page-hero {
    padding: 60px 0 40px;
  }

  .page-hero__title {
    font-size: 2.5rem;
  }

  .page-hero__quote {
    font-size: 1.2rem;
  }

  .mon-histoire {
    padding: 60px 0;
  }

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

  .mon-histoire__content {
    padding-left: 0;
  }

  .mon-histoire__image {
    position: static;
  }

  .mon-histoire__img {
    height: 400px;
  }

  .mon-histoire__cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-hero__title {
    font-size: 2.2rem;
  }

  .page-hero__quote {
    font-size: 1.1rem;
  }

  .mon-histoire__title {
    font-size: 2rem;
  }

  .mon-histoire__img {
    height: 350px;
  }

  .mon-histoire__cta {
    flex-direction: column;
    align-items: center;
  }

  .mon-histoire__btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 40px 0 30px;
  }

  .page-hero__title {
    font-size: 1.8rem;
  }

  .page-hero__quote {
    font-size: 1rem;
    padding: 0 20px;
  }

  .mon-histoire__title {
    font-size: 1.8rem;
  }

  .mon-histoire__text {
    font-size: 0.95rem;
  }

  .mon-histoire__img {
    height: 280px;
  }

  .mon-histoire__btn {
    padding: 14px 32px;
    font-size: 0.9rem;
  }
}
