/* ========================================
   DJ COUVERTURE - Pages Villes
======================================== */

/* ========================================
   HERO VILLE
======================================== */
.ville-hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #2d1515 50%, #9B1515 100%);
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

/* Pattern toiture en fond */
.ville-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(196,30,30,0.04) 40px, rgba(196,30,30,0.04) 41px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M0 60 L100 10 L200 60' fill='none' stroke='rgba(196,30,30,0.08)' stroke-width='2'/%3E%3C/svg%3E") center/300px;
}

.ville-hero-overlay {
  display: none;
}

.ville-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.ville-hero h1 {
  font-size: 3.8rem;
  color: var(--blanc);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.ville-hero h1 span { color: var(--rouge-clair); }

.ville-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 650px;
}

/* ========================================
   INTRO LOCALE
======================================== */
.ville-intro-section {
  padding: 80px 0;
}

.ville-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Stats */
.ville-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.ville-stat {
  background: var(--blanc);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  border-top: 3px solid var(--rouge);
}

.ville-stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--rouge);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ville-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .ville-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ville-hero h1 { font-size: 2.4rem; }
  .ville-stats { grid-template-columns: 1fr 1fr; }
}

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--rouge-clair) !important; }

.breadcrumb span {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.85rem;
}

.breadcrumb span:last-child {
  color: #ffffff !important;
  font-weight: 600;
}

/* Badge hero ville */
.ville-hero .hero-badge {
  display: inline-block;
  background: rgba(196,30,30,0.25);
  border: 1px solid var(--rouge);
  color: #ffffff !important;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border-radius: 4px;
}
