/* =============================================
   CSS PAGES RÉGION - MaréeFrance
   ============================================= */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0ea5e9;
    letter-spacing: -0.5px;
    margin: 2rem 0 1.5rem;
    text-align: center;
}

/* Hero Card */
.hero-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem 0;
    border-left: 5px solid #0ea5e9;
}

.hero-card p {
    color: #334155;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.hero-card p:last-child {
    margin-bottom: 0;
}

/* Content Section */
.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    color: #0ea5e9;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

/* Stats Infographic */
.stats-infographic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.stat-icon {
    font-size: 2.5rem;
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cities Showcase */
.cities-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.city-showcase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.city-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.2);
    border-color: #0ea5e9;
}

.city-showcase-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    padding: 1.5rem;
}

.city-showcase-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.city-showcase-subtitle {
    font-size: 0.9rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.city-showcase-body {
    padding: 1.5rem;
}

.city-showcase-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.city-showcase-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.city-badge {
    background: #e0f2fe;
    color: #0284c7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.city-badge.highlight {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.3);
}

.city-showcase-activities {
    color: #475569;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Nearby Cities */
.nearby-cities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.city-card {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.city-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
    border-color: #0ea5e9;
}

.city-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 0.3rem;
}

.city-distance {
    font-size: 0.9rem;
    color: #64748b;
}

.city-card i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.table-city-name {
    font-weight: 700;
    color: #0f172a;
}

/* Mobile Cards */
.comparison-mobile-cards {
    display: none;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.activity-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0ea5e9;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}

.activity-name {
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-name i {
    color: #10b981;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    line-height: 1.6;
    color: #334155;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #0ea5e9;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .stats-infographic {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cities-showcase {
        grid-template-columns: 1fr;
    }
    
    .nearby-cities {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        display: none;
    }
    
    .comparison-mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .comparison-mobile-card {
        background: white;
        border-radius: 12px;
        padding: 1.25rem;
        border-left: 4px solid #0ea5e9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    
    .comparison-mobile-card-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: #0ea5e9;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .comparison-mobile-card-row {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .comparison-mobile-card-row:last-child {
        border-bottom: none;
    }
    
    .comparison-mobile-card-label {
        font-size: 0.85rem;
        color: #64748b;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .comparison-mobile-card-value {
        font-size: 0.9rem;
        color: #1e293b;
        font-weight: 600;
    }
    
    .comparison-mobile-card-link {
        margin-top: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: #0ea5e9;
        color: white;
        padding: 0.75rem;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
    }
}
