/* Category Tourisme - Cinema & Culture Theme
   Colors: #0d47a1 (Deep Blue), #e91e63 (Magenta), #ffc107 (Amber)
   No gradients - Solid colors only
   System fonts only
*/

.category-main {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.category-hero {
    padding: 80px 0 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    opacity: 0.95;
    max-width: 700px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 600;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-divider {
    opacity: 0.5;
}

/* Articles Section */
.articles-section {
    padding: 60px 0 40px;
    background-color: #ffffff;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0d47a1;
    margin: 0 0 15px 0;
}

.section-intro {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.card-title a {
    color: #0d47a1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.card-title a:hover {
    color: #e91e63;
}

.card-description {
    font-size: 15px;
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.card-date {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* No Articles State */
.no-articles {
    text-align: center;
    padding: 80px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

.no-articles svg {
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-articles p {
    font-size: 16px;
    margin: 0;
}

/* Content Rich Section */
.content-rich {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-block {
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #0d47a1;
    margin: 0 0 15px 0;
}

.info-block p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Table Styles */
.table-container {
    margin: 40px 0;
}

.table-title {
    font-size: 24px;
    font-weight: 700;
    color: #0d47a1;
    margin: 0 0 25px 0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    min-width: 600px;
}

.data-table thead {
    background-color: #0d47a1;
    color: #ffffff;
}

.data-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.data-table tbody tr:hover {
    background-color: #f5f5f5;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.table-note {
    font-style: italic;
}

/* Highlight Box */
.highlight-box {
    border-radius: 8px;
}

.highlight-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Disclaimer */
.disclaimer-banner {
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-hero {
        padding: 50px 0 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .data-table {
        font-size: 14px;
    }
    
    .data-table th,
    .data-table td {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .articles-section,
    .content-rich {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .article-card {
        margin: 0 -5px;
    }
    
    .table-responsive {
        border-radius: 4px;
    }
    
    .highlight-box {
        padding: 20px;
    }
    
    .highlight-box h3 {
        font-size: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .article-card {
        transition: none;
    }
    
    .article-card:hover {
        transform: none;
    }
}

/* Focus styles for keyboard navigation */
.article-card:focus-within {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

.card-title a:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}