/*
Theme Name: Muslim Magazine
Theme URI: https://muslim-mag.ddns.net
Author: Muslim Mag
Author URI: https://muslim-mag.ddns.net
Description: Un thème WordPress de type "news magazine" à tendance islamique avec 3 colonnes. Design moderne et élégant avec des couleurs inspirées de la culture islamique.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: muslim-magazine
Tags: news, magazine, islamic, three-columns, responsive, custom-menu, featured-images, post-formats
*/

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Couleurs du thème islamique */
:root {
    --primary-green: #0d7377;
    --dark-green: #0a5d61;
    --light-green: #14a085;
    --gold: #d4af37;
    --cream: #f8f6f0;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #e0e0e0;
}

/* Container principal */
.site-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.site-header .site-container {
    position: relative;
    z-index: 2;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.site-title {
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

.site-title a {
    color: var(--primary-green);
    text-decoration: none;
}

.site-description {
    font-size: 0.9em;
    color: var(--text-light);
    margin-top: 5px;
}

/* Logo responsive */
.site-branding img.custom-logo {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
.main-navigation {
    margin-top: 15px;
    position: relative;
    display: block;
}

/* Sur desktop, masquer le bouton hamburger et afficher le menu */
@media (min-width: 992px) {
    .menu-toggle {
        display: none !important;
    }
    
    .main-navigation {
        display: block !important;
    }
    
    .main-navigation ul {
        display: flex !important;
    }
}

.main-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--primary-green);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
    display: block;
}

.main-navigation a:hover {
    background-color: var(--cream);
    color: var(--dark-green);
}

/* Bouton menu hamburger */
.menu-toggle {
    display: none;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 5px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu-toggle-icon {
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    min-height: 3px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Container pleine largeur pour les 3 derniers articles */
.featured-articles {
    width: 100%;
    margin: 30px 0;
    padding: 0 20px;
}

.featured-articles-container {
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .featured-articles {
        padding: 0;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    
    .featured-articles-container {
        padding: 0 20px;
    }
}

.featured-articles-title {
    font-size: 2em;
    color: var(--primary-green);
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 15px;
}

.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Cards d'articles */
.article-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.article-card-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.article-card:hover .article-card-thumbnail img {
    transform: scale(1.1);
}

.article-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a5d61 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    align-self: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(13, 115, 119, 0.2);
}

.article-card-category:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 115, 119, 0.3);
}

.article-card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.article-card-title a:hover {
    color: var(--primary-green);
}

.article-card-meta {
    color: var(--text-light);
    font-size: 0.85em;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.article-card-excerpt {
    color: var(--text-light);
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.article-card-read-more {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.article-card-read-more:hover {
    background: var(--dark-green);
}

/* Container pour la liste de tous les articles */
.articles-list-container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding: 0 20px !important;
    box-sizing: border-box;
    clear: both;
    position: relative;
    left: 0;
    right: 0;
}

.articles-list-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.articles-list-title {
    font-size: 2.5em;
    color: var(--primary-green);
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    width: 100% !important;
    max-width: 100% !important;
}

/* S'assurer que le site-content ne limite pas la largeur */
.site-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.site-content .site-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.site-content .site-container .articles-list-container {
    padding: 0 20px;
}

/* Container pour les pages single et page - même largeur que la page d'accueil */
.page-content-area {
    width: 100%;
    margin: 30px 0;
    padding: 0 20px;
}

.page-content-area .site-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.page-main-content {
    width: 100%;
    max-width: 100%;
}

/* Header d'archive */
.archive-header {
    margin-bottom: 40px;
}

.archive-title {
    font-size: 2.5em;
    color: var(--primary-green);
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--gold);
}

.archive-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1em;
    margin-top: 20px;
    line-height: 1.6;
}

/* Layout 3 colonnes pour les catégories */
.content-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .content-area {
        padding: 0;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    
    .category-column {
        padding: 20px 15px;
    }
}

.category-column {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-column-title {
    font-size: 1.5em;
    color: var(--primary-green);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
    text-align: center;
}

.category-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-article-card {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.category-article-card:last-child {
    border-bottom: none;
}

.category-article-card:hover {
    transform: translateX(5px);
}

.category-article-thumbnail {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.category-article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-article-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-article-content .article-card-category {
    margin-bottom: 8px;
    font-size: 0.7em;
    padding: 4px 12px;
}

.category-article-title {
    font-size: 1em;
    margin-bottom: 8px;
    line-height: 1.4;
}

.category-article-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.category-article-title a:hover {
    color: var(--primary-green);
}

.category-article-meta {
    color: var(--text-light);
    font-size: 0.8em;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Layout 3 colonnes */
.content-area-old {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

/* Sidebar gauche */
.sidebar-left {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Contenu principal */
.main-content {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Sidebar droite */
.sidebar-right {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Widgets */
.widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.widget:last-child {
    border-bottom: none;
}

.widget-title {
    color: var(--primary-green);
    font-size: 1.3em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--gold);
    position: relative;
}

.widget-title::before {
    content: "🕌";
    margin-right: 8px;
}

/* Articles */
.post {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.post:last-child {
    border-bottom: none;
}

.post-header {
    margin-bottom: 20px;
    position: relative;
    padding-right: 140px; /* Espace pour l'icône */
}

.post-title {
    font-size: 1.8em;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: var(--primary-green);
}

.post-meta {
    color: var(--text-light);
    font-size: 0.9em;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-thumbnail {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.post-thumbnail:hover img {
    transform: scale(1.05);
}

/* Icône d'image mise en avant en haut à droite dans single.php */
.page-main-content .post-thumbnail-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-green);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.page-main-content .post-thumbnail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.post-content p {
    margin-bottom: 15px;
}

.post-content a {
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-green);
}

.post-content a:hover {
    color: var(--dark-green);
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more:hover {
    background: var(--dark-green);
}

/* Featured post */
.featured-post {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid var(--gold);
    margin-bottom: 30px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border: 2px solid var(--primary-green);
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination .current {
    background: var(--primary-green);
    color: var(--white);
}

/* Footer */
.site-footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-widget h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-widget a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-widget a:hover {
    opacity: 1;
}

.site-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-area {
        grid-template-columns: 1fr;
    }
    
    .featured-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-area-old {
        grid-template-columns: 1fr;
    }
    
    .sidebar-left,
    .sidebar-right {
        order: 3;
    }
    
    .main-content {
        order: 1;
    }
}

/* Media query pour tablettes et smartphones */
@media (max-width: 991px) {
    .site-header {
        min-height: auto;
        padding: 15px 0;
    }
    
    /* Afficher le bouton hamburger sur mobile */
    .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Masquer le menu navigation par défaut sur mobile */
    .main-navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: -20px;
        right: -20px;
        background-color: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 0;
        z-index: 1000;
        width: calc(100% + 40px);
        display: block;
    }
    
    /* Afficher le menu quand il est ouvert */
    .main-navigation.toggled {
        max-height: 500px;
        overflow-y: auto;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
        width: 100%;
        display: block !important;
    }
    
    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        padding: 15px 0;
        width: 100%;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .site-container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .site-branding {
        flex: 1;
        order: 1;
        max-width: calc(100% - 60px);
    }
    
    .site-branding img.custom-logo {
        max-width: 100%;
        height: auto;
        max-height: 60px;
    }
    
    .menu-toggle {
        display: flex !important;
        order: 2;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
    }
    
    .main-navigation {
        order: 3;
    }
    
    .site-title {
        font-size: 1.5em;
    }
    
    .post-title {
        font-size: 1.4em;
    }
    
    .content-area {
        gap: 20px;
    }
    
    .featured-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-list-title {
        font-size: 2em;
    }
    
    .articles-list-container {
        margin-left: -20px !important;
        margin-right: -20px !important;
        width: calc(100% + 40px) !important;
        max-width: calc(100% + 40px) !important;
    }
    
    .category-article-card {
        flex-direction: column;
    }
    
    .category-article-thumbnail {
        width: 100%;
        height: 200px;
    }
    
    .site-header {
        min-height: 150px;
    }
}

/* Styles spécifiques */
.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: var(--primary-green);
    margin-top: 25px;
    margin-bottom: 15px;
}

.entry-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-light);
}

.entry-content ul,
.entry-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Fichiers audio attachés */
.post-audio-attachments {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.audio-attachments-title {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.audio-attachments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.audio-attachment-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.audio-attachment-title {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.audio-attachment-item .wp-audio-shortcode {
    width: 100%;
    margin: 0;
}

.audio-attachment-item audio {
    width: 100%;
    max-width: 100%;
}

/* Responsive pour les fichiers audio */
@media (max-width: 768px) {
    .audio-attachment-item {
        padding: 15px;
    }
    
    .audio-attachments-title {
        font-size: 1.1em;
    }
    
    /* Icône d'image sur mobile */
    .page-main-content .post-header {
        padding-right: 0;
        padding-top: 130px;
    }
    
    .page-main-content .post-thumbnail-icon {
        width: 80px;
        height: 80px;
        top: 10px;
        right: 10px;
    }
}

/* Catégories et tags */
.post-taxonomies {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-categories-wrapper,
.post-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
}

.taxonomy-label {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.95em;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 4px;
}

.post-categories,
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.post-categories a.category-tag,
.post-tags a.tag-item {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--cream) 0%, #f8f6f0 100%);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 115, 119, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.post-categories a.category-tag:hover,
.post-tags a.tag-item:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, #0a5d61 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 115, 119, 0.3);
    border-color: var(--primary-green);
}

/* Responsive pour les taxonomies */
@media (max-width: 768px) {
    .post-taxonomies {
        margin-top: 25px;
        padding-top: 20px;
        gap: 15px;
    }
    
    .post-categories-wrapper,
    .post-tags-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .taxonomy-label {
        font-size: 0.9em;
    }
    
    .post-categories a.category-tag,
    .post-tags a.tag-item {
        padding: 6px 14px;
        font-size: 0.85em;
    }
}

/* Styles pour la page des mosquées de Grenoble */
.mosquees-grenoble-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.mosquees-grenoble-header {
    text-align: center;
    color: var(--text-dark);
    padding: 30px 20px;
    margin-bottom: 20px;
}

.mosquees-grenoble-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.mosquees-grenoble-header p {
    font-size: 1.2em;
    color: var(--text-light);
    margin: 5px 0;
}

.mosquees-count {
    font-size: 1em !important;
    margin-top: 10px;
    opacity: 0.8;
}

.mosquees-grenoble-info-panel {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mosquees-grenoble-info-panel h2 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.mosquees-grenoble-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.mosquees-grenoble-item {
    background: var(--cream);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.mosquees-grenoble-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mosquees-grenoble-item h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.mosquees-grenoble-item p {
    color: var(--text-light);
    font-size: 0.9em;
    margin: 4px 0;
}

.mosquees-grenoble-item .address {
    color: var(--text-light);
    font-style: italic;
}

/* Style personnalisé pour les popups Leaflet */
.leaflet-popup-content-wrapper {
    border-radius: 10px;
}

.leaflet-popup-content h3 {
    margin: 0 0 8px 0;
    color: var(--primary-green);
}

.leaflet-popup-content p {
    margin: 4px 0;
}

