/* ================================================
   /fr/assets/css/city.css
   Page ville — version française
   ================================================ */

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a9de8 0%, #0d6ebd 100%);
    padding: 48px 0 40px;
    color: white;
    text-align: center;
}
.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.hero h2 {
    font-size: 1rem;
    opacity: .88;
    margin-bottom: 24px;
    line-height: 1.6;
}
.highlight {
    color: #ffd700;
}

/* Search */
.hero-search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    max-width: 560px;
    margin: 0 auto 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.hero-search-icon { font-size: 1rem; color: #718096; margin-right: 8px; }
.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: .95rem;
    color: #1a202c;
    background: transparent;
}
.hero-search-btn {
    background: linear-gradient(135deg, #e0198a, #c0157a);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    transition: opacity .2s;
}
.hero-search-btn:hover { opacity: .9; }

/* Stats */
.hero-stats {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stat-card {
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 14px 24px;
    text-align: center;
    min-width: 120px;
}
.hero-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}
.hero-stat-label {
    font-size: .78rem;
    opacity: .85;
}

/* Sections */
.section { padding: 40px 0; }
.section-alt { background: #f7fafc; }
.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a202c;
    text-align: center;
    margin-bottom: 6px;
}
.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: .9rem;
    margin-bottom: 20px;
}

/* CTA */
.cta-final {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}
.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0198a, #1a9de8);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-final h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}
.cta-final p {
    opacity: .85;
    margin-bottom: 20px;
}
.cta-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: .88rem;
    opacity: .9;
}
.btn-urgent {
    display: inline-block;
    background: linear-gradient(135deg, #e0198a, #c0157a);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(224,25,138,.4);
    transition: transform .2s;
}
.btn-urgent:hover { transform: translateY(-2px); }

/* Breadcrumb */
.breadcrumb-bar {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
}
.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #718096;
}
.breadcrumb-bar a { color: #718096; text-decoration: none; }
.breadcrumb-bar a:hover { color: #1a9de8; }
.breadcrumb-bar .sep { color: #cbd5e0; }

@media (max-width: 640px) {
    .hero h1 { font-size: 1.6rem; }
    .hero-stats { flex-direction: column; align-items: center; }
    .cta-features { flex-direction: column; gap: 8px; }
}
