/* Page L'art de la marqueterie */

/* Hero Section */
.art-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
}

.art-hero__bg {
  background: linear-gradient(rgba(1, 87, 105, 0.3), rgba(1, 87, 105, 0.4)),
    url("../assets/images/Home/Hero1.webp") center/cover no-repeat;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.art-hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.art-hero__title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #f8f8d9;
  text-shadow: 0 2px 8px rgba(1, 87, 105, 0.2);
}

.art-hero__quote {
  font-size: 1.4rem;
  color: #f8f8d9;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(1, 87, 105, 0.15);
  max-width: 700px;
  margin: 0 auto;
}

/* Section Présentation */
.art-presentation {
  background: #ffffff;
  padding: 80px 0;
}

.art-presentation__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.art-presentation__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.art-presentation__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-presentation__img:hover {
  transform: scale(1.02);
}

.art-presentation__content {
  padding-left: 20px;
}

.art-presentation__title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: #015769;
  position: relative;
}

.art-presentation__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #015769, #f8f8d9);
  border-radius: 2px;
}

.art-presentation__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.art-presentation__text p {
  margin-bottom: 20px;
}

.art-presentation__text p:last-child {
  margin-bottom: 0;
}

/* Section Histoire */
.art-histoire {
  background: linear-gradient(135deg, #f8f8d9 0%, #f8f4d0 100%);
  padding: 80px 0;
}

.art-histoire__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.art-histoire__content {
  padding-right: 20px;
}

.art-histoire__title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: #015769;
  position: relative;
}

.art-histoire__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #015769, #f8f8d9);
  border-radius: 2px;
}

.art-histoire__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.art-histoire__text p {
  margin-bottom: 20px;
}

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

.art-histoire__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.art-histoire__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-histoire__img:hover {
  transform: scale(1.02);
}

/* CTA Buttons */
.art-histoire__cta {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.art-histoire__btn {
  display: inline-block;
  padding: 16px 32px;
  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;
}

.art-histoire__btn:hover {
  background: #015769;
  color: #f8f8d9;
  border: 2px solid #f8f8d9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(1, 87, 105, 0.2);
}

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

.art-histoire__btn--secondary:hover {
  background: #015769;
  color: #f8f8d9;
  border: 2px solid #015769;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(1, 87, 105, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .art-hero__title {
    font-size: 3rem;
  }

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

  .art-presentation {
    padding: 60px 0;
  }

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

  .art-presentation__content,
  .art-histoire__content {
    padding-left: 0;
    padding-right: 0;
  }

  .art-presentation__title::after,
  .art-histoire__title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

@media (max-width: 768px) {
  .art-hero__bg {
    min-height: 60vh;
  }

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

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

  .art-presentation__title,
  .art-histoire__title {
    font-size: 2rem;
  }

  .art-presentation__img,
  .art-histoire__img {
    height: 300px;
  }

  .art-presentation__text,
  .art-histoire__text {
    font-size: 1rem;
  }

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

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

@media (max-width: 480px) {
  .art-hero__content {
    padding: 20px 16px;
  }

  .art-hero__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .art-hero__quote {
    font-size: 1rem;
  }

  .art-presentation,
  .art-histoire {
    padding: 40px 0;
  }

  .art-presentation__title,
  .art-histoire__title {
    font-size: 1.8rem;
  }

  .art-presentation__grid,
  .art-histoire__grid {
    gap: 30px;
  }
}
