/* ==========================================================================
   Hôtel de l'Union Kara — Page Tourisme & Fêtes Traditionnelles
   ========================================================================== */

.tourism-section { padding: 70px 0; scroll-margin-top: 70px; }

.tourism-section--alt { background: var(--off-white); }

.tourism-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 380px;
  margin-bottom: 40px;
}

.tourism-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.5s ease;
}

.tourism-gallery-img:hover { transform: scale(1.02); }

.tourism-gallery-img--main { grid-row: span 2; }

.tourism-gallery--split {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  height: 320px;
}

.tourism-gallery--single {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 380px;
}

.tourism-text {
  max-width: 800px;
  margin: 0 auto 30px;
}

.tourism-text p { color: var(--text); margin-bottom: 18px; font-size: 1.02rem; }

.tourism-text p:last-child { margin-bottom: 0; }

.tourism-callout {
  max-width: 800px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.tourism-callout i { font-size: 1.8rem; color: var(--gold); }

.tourism-callout strong { display: block; color: var(--navy); margin-bottom: 4px; }

.tourism-callout span { color: var(--grey); font-size: 0.92rem; }

.video-embed {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-top: 45%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: var(--navy-dark);
}

.tourism-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  text-align: center;
  padding: 80px 0;
}

.tourism-cta-inner { max-width: 640px; margin: 0 auto; }

.tourism-cta h2 { color: var(--navy-dark); margin-bottom: 14px; }

.tourism-cta p { color: var(--navy-dark); opacity: 0.85; margin-bottom: 30px; font-size: 1.05rem; }

@media (max-width: 860px) {
  .tourism-gallery, .tourism-gallery--split { grid-template-columns: 1fr; grid-template-rows: repeat(3, 160px); height: auto; }
  .tourism-gallery--split { grid-template-rows: repeat(2, 200px); }
  .tourism-gallery-img--main { grid-row: span 1; }
  .video-embed { padding-top: 56.25%; }
  .tourism-callout { flex-direction: column; text-align: center; }
}
