/* ==========================================================================
   PAGE EUROPE — classes alignées sur page-europe.php
   ========================================================================== */

/* SECTION PARTENARIAT (texte gauche + images droite) */
.cdj-europe__partnership {
  padding: 80px 0;
  background: var(--cdj-white);
}

.cdj-europe__partnership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cdj-europe__text-col h2 {
  margin-bottom: 24px;
}

.cdj-europe__text-col p {
  font-size: 15px;
  color: var(--cdj-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.cdj-europe__img-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}

.cdj-europe__img {
  width: 100%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-left: auto;
}

.cdj-europe__img-col .cdj-europe__img:first-child {
  border-radius: 0 50% 50% 0;
  height: 380px;
}

/* SECTION AVENTURE (blurbs / points clés) */
.cdj-europe__adventure {
  padding: 80px 0;
  background: var(--cdj-beige);
}

.cdj-europe__adventure h2 {
  margin-bottom: 48px;
}

.cdj-europe__adventure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cdj-europe__adventure-item {
  padding: 28px 0;
  border-bottom: 1px solid #e0dcd4;
}

.cdj-europe__adventure-item:last-child {
  border-bottom: none;
}

.cdj-europe__adventure-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cdj-text-dark);
  margin-bottom: 12px;
}

.cdj-europe__adventure-item p {
  font-size: 14px;
  color: var(--cdj-text-muted);
  line-height: 1.7;
}

/* SECTION GALERIE */
.cdj-europe__gallery {
  padding: 80px 0;
  background: var(--cdj-dark);
}

.cdj-europe__gallery h2 {
  color: var(--cdj-white);
  text-align: center;
  margin-bottom: 50px;
}

.cdj-europe__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cdj-europe__gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1;
}

.cdj-europe__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cdj-europe__gallery-item:hover img {
  transform: scale(1.05);
}

.cdj-europe__gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: var(--cdj-white);
  font-size: 13px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .cdj-europe__partnership-inner { grid-template-columns: 1fr; gap: 40px; }
  .cdj-europe__img-col { align-items: center; }
  .cdj-europe__img-col .cdj-europe__img:first-child { border-radius: 50%; max-width: 400px; height: 400px; }
  .cdj-europe__adventure-grid { grid-template-columns: 1fr; }
  .cdj-europe__gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .cdj-europe__img-col .cdj-europe__img:first-child { max-width: 280px; height: 280px; }
  .cdj-europe__gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
