/* =====================================================
   DOCU-THÉÂTRE FORUM — Page détail multi-villes
===================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Banner (reprend ton style) */
.banner {
  background-color: #ffd700;
  color: #0f2430;
  padding: 12px 0;
  font-weight: 700;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
}
.banner-track {
  display: inline-flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}
.banner-track span { padding-right: 60px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header (reprend ton style existant) */
.main-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-name { font-size: 22px; font-weight: 800; color: #1f2937; margin: 0; }
.brand-location { font-size: 13px; color: #d97706; margin: 4px 0 0; }
.header-center { flex: 1; display: flex; justify-content: center; }
.header-logo { height: 52px; width: auto; }
.header-nav { display: flex; gap: 28px; }
.nav-item { color: #374151; text-decoration: none; font-weight: 500; font-size: 15px; }
.nav-item:hover, .nav-item.active { color: #d97706; }
.mobile-btn { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: #fff;
    padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.12); gap: 12px;
  }
  .mobile-btn { display: block; }
}

/* ---------- HERO ---------- */
.dt-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dt-hero-bg {
  position: absolute;
  inset: 0;
}
.dt-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,0.92) 0%, rgba(10,10,20,0.4) 50%, transparent 100%);
}
.dt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px 60px;
  color: #fff;
}
.dt-badge {
  display: inline-block;
  background: #c9a227;
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.dt-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.dt-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}
.dt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.95rem;
  opacity: 0.85;
}
.dt-meta i { margin-right: 6px; color: #c9a227; }

/* ---------- INTRO ---------- */
.dt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.dt-intro {
  padding: 80px 0;
  background: #fff;
}
.dt-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}
.dt-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.dt-intro-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
  text-align: justify;
}
.dt-intro-text strong { color: #111; }

.dt-prize {
  display: flex;
  gap: 16px;
  background: #f8f5eb;
  border-left: 4px solid #c9a227;
  padding: 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}
.dt-prize i {
  font-size: 1.8rem;
  color: #c9a227;
}
.dt-prize strong { display: block; font-size: 1.1rem; margin-bottom: 4px; }
.dt-prize span { font-size: 0.9rem; color: #666; }

.dt-disciplines {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dt-disciplines li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}
.dt-disciplines i { color: #c9a227; width: 20px; }

/* ---------- VILLES / SWITCHER ---------- */
.dt-cities {
  padding: 80px 0 100px;
  background: #f4f4f4;
}
.dt-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}
.dt-section-desc {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.city-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.city-tab {
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 14px 22px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  min-width: 140px;
}
.city-tab:hover {
  border-color: #c9a227;
}
.city-tab.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}
.city-tab.active .city-region { color: #c9a227; }
.city-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}
.city-region {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
}

.city-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.city-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.city-panel-header {
  text-align: center;
  margin-bottom: 28px;
}
.city-panel-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 8px;
}
.city-panel-header p {
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}

.city-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ddd;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

/* ---------- CTA ---------- */
.dt-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  text-align: center;
}
.dt-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 12px;
}
.dt-cta p {
  opacity: 0.85;
  margin-bottom: 30px;
}
.dt-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a227;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  border-radius: 40px;
  transition: background 0.3s;
}
.btn-primary:hover { background: #e0b83a; }
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 40px;
  transition: border-color 0.3s;
}
.btn-secondary:hover { border-color: #c9a227; color: #c9a227; }

/* ---------- FOOTER (ton style) ---------- */
.main-footer {
  background: #111827;
  color: #9ca3af;
  padding: 60px 0 30px;
}
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand { color: #fff; font-size: 22px; font-weight: 800; }
.footer-title { color: #fff; margin-bottom: 12px; }
.footer-link { display: block; color: #9ca3af; text-decoration: none; margin-bottom: 8px; }
.footer-link:hover { color: #fbbf24; }
.social-icons { display: flex; gap: 16px; flex-wrap: wrap; }
.social-icon { color: #9ca3af; font-size: 20px; }
.social-icon:hover { color: #fbbf24; }
.footer-contact { color:  #fbbf24; font-size: 15px; }
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #374151;
  font-size: 14px;
  color: #6b7280;
}

a{
  color: #fbbf24;
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .dt-intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .city-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dt-hero { height: 60vh; }
  .dt-hero-content { padding: 0 20px 40px; }
  .city-tabs { gap: 8px; }
  .city-tab { min-width: 120px; padding: 12px 14px; }
  .city-gallery { grid-template-columns: 1fr; }
  .dt-disciplines { grid-template-columns: 1fr; }
}

/* ========== GALERIE DES VILLES ========== */
.city-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #f3f4f6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== Cas d’une seule image (Bouaké) ===== */
.city-gallery.single-image {
  display: flex;
  justify-content: center;
  grid-template-columns: none; /* on désactive la grille */
}

.city-gallery.single-image .gallery-item {
  width: 100%;
  max-width: 520px;          /* même largeur visuelle qu’une image dans la grille 2 colonnes */
  aspect-ratio: 4 / 3;       /* on garde exactement le même format */
}