         /* Style pour le conteneur principal (la "carte") */
        .guichet-virtuel-card {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: #f8f9fa; /* Fond légèrement gris */
            border: 1px solid #dee2e6; /* Bordure discrète */
            border-radius: 12px;       /* Coins arrondis */
            padding: 24px;
            max-width: 900px;
            margin: 20px auto; /* Centre la carte sur la page */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Ombre douce */
        }

        /* En-tête de la carte (drapeau + titre) */
        .guichet-header {
            display: flex; /* Active Flexbox pour l'alignement */
            align-items: center; /* Centre verticalement les éléments */
            gap: 16px; /* Espace de 16px entre le drapeau et le texte */
            margin-bottom: 16px;
        }
        
        .guichet-header img {
            /* L'image n'a plus besoin de styles complexes */
            flex-shrink: 0; /* Empêche l'image de rétrécir */
        }

        .guichet-header h2 {
            font-size: 1.75rem; /* Taille du titre */
            margin: 0; /* Supprime la marge par défaut du titre */
            color: #343a40;
        }

        /* Paragraphe de description */
        .guichet-description {
            color: #495057;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        /* Liste des services */
        .guichet-services {
            list-style: none; /* Supprime les puces par défaut */
            padding: 0;
            margin: 0;
            border-top: 1px solid #dee2e6; /* Ligne de séparation */
        }

        .guichet-services li {
            display: flex;
            align-items: center;
            padding: 16px 8px;
            border-bottom: 1px solid #dee2e6;
        }

        .guichet-services .bi {
            font-size: 1.2rem;
            color: #007bff; /* Couleur bleue pour l'icône */
            margin-right: 12px;
        }
        
        .guichet-services a {
            margin-left: auto; /* Pousse le lien "comment faire" tout à droite */
            text-decoration: none;
            color: #007bff;
            font-weight: 500;
            white-space: nowrap; /* Empêche le retour à la ligne */
            padding: 4px 8px;
            border-radius: 6px;
            transition: background-color 0.2s;
        }
        
        .guichet-services a:hover {
            background-color: #e9ecef;
            text-decoration: underline;
        }
 .pv-container {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 900px;
            margin: 20px auto;
            padding: 24px;
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .pv-container h2 {
            font-size: 1.8rem;
            color: #343a40;
            border-bottom: 2px solid #007bff;
            padding-bottom: 12px;
            margin-bottom: 24px;
        }

        .year-group {
            margin-bottom: 32px;
        }

        .year-group h3 {
            font-size: 1.4rem;
            color: #495057;
            margin-bottom: 12px;
        }

        .pv-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pv-list li a {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            text-decoration: none;
            color: #212529;
            border-radius: 8px;
            transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
            border: 1px solid transparent;
        }

        .pv-list li a:hover {
            background-color: #0d6efd;
            color: #fff;
            border-color: #0a58ca;
        }

        .pv-list .bi {
            font-size: 1.5rem;
            margin-right: 16px;
            color: #0d6efd; /* Couleur de l'icône par défaut */
            transition: color 0.2s ease-in-out;
        }

        .pv-list li a:hover .bi {
            color: #fff; /* L'icône devient blanche au survol */
        }
/*----style reglement commune----*/

        .reglements-container {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 900px;
            margin: 20px auto;
            padding: 24px;
            background-color: #f8f9fa;
            border-radius: 12px;
        }

        .reglements-container > h2 {
            font-size: 1.8rem;
            color: #343a40;
            border-bottom: 2px solid #007bff;
            padding-bottom: 12px;
            margin-top: 0;
            margin-bottom: 32px;
        }

        .category-group {
            margin-bottom: 32px;
        }

        .category-group h3 {
            font-size: 1.4rem;
            color: #495057;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }
        
        .category-group h3 .bi {
            font-size: 1.3rem;
            margin-right: 12px;
            color: #007bff;
        }

        .reglement-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .reglement-list li a {
            display: flex;
            align-items: center;
            padding: 14px 16px;
            text-decoration: none;
            color: #212529;
            border-radius: 8px;
            transition: background-color 0.2s ease-in-out;
            margin-bottom: 8px;
            background-color: #fff;
            border: 1px solid #dee2e6;
        }

        .reglement-list li a:hover {
            background-color: #e9ecef;
            border-color: #ced4da;
        }

        .reglement-list .bi-file-earmark-text-fill {
            font-size: 1.5rem;
            margin-right: 16px;
            color: #6c757d; /* Gris pour l'icône de document */
        }
   
   	/* Styles généraux pour la page */
	.salle-page-container {
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		max-width: 900px;
		margin: 20px auto;
		color: #333;
	}

	/* Titres de section */
	h1,
	h2 {
		color: #2c3e50;
		border-bottom: 2px solid #3498db;
		padding-bottom: 10px;
		margin-top: 40px;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	/* Tableau des tarifs */
	.pricing-table {
		width: 100%;
		border-collapse: collapse;
		margin-top: 20px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
		border-radius: 8px;
		overflow: hidden;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 15px;
		text-align: left;
		border-bottom: 1px solid #ddd;
	}

	.pricing-table th {
		background-color: #3498db;
		color: white;
		font-size: 1.1rem;
	}

	.pricing-table tbody tr:nth-child(even) {
		background-color: #f9f9f9;
	}

	.pricing-table tbody tr:hover {
		background-color: #f1f1f1;
	}

	.pricing-table .price {
		font-weight: bold;
		font-size: 1.2rem;
		color: #27ae60;
	}

	.pricing-table small {
		display: block;
		color: #777;
		font-style: italic;
	}

	/* Galerie d'images */
	.gallery-container {
		display: flex;
		flex-wrap: wrap;
		gap: 15px;
		/* Espace entre les images */
		margin-top: 20px;
	}

	.gallery-container img {
		width: 100%;
		max-width: 200px;
		height: auto;
		border-radius: 8px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		transition: transform 0.2s ease-in-out;
	}

	.gallery-container img:hover {
		transform: scale(1.05);
	}

	/* Section Réservations */
	.reservation-section p {
		line-height: 1.6;
	}

	.document-links {
		margin: 20px 0;
		display: flex;
		gap: 15px;
	}

	.btn {
		display: inline-flex;
		align-items: center;
		padding: 10px 20px;
		border-radius: 5px;
		text-decoration: none;
		color: white;
		background-color: #2980b9;
		transition: background-color 0.2s;
	}

	.btn:hover {
		background-color: #3498db;
	}

	.btn .bi {
		margin-right: 8px;
	}

	.btn-back {
		background-color: #7f8c8d;
	}

	.btn-back:hover {
		background-color: #95a5a6;
	}

	/* Adaptation pour les écrans mobiles */
	@media (max-width: 768px) {
		.pricing-table thead {
			display: none;
			/* Cache les en-têtes sur mobile */
		}

		.pricing-table,
		.pricing-table tbody,
		.pricing-table tr,
		.pricing-table td {
			display: block;
			width: 100%;
		}

		.pricing-table tr {
			margin-bottom: 15px;
			border: 1px solid #ddd;
			border-radius: 8px;
		}

		.pricing-table td {
			text-align: right;
			padding-left: 50%;
			position: relative;
			border-bottom: 0;
		}

		.pricing-table td:before {
			content: attr(data-label);
			position: absolute;
			left: 15px;
			width: calc(50% - 30px);
			text-align: left;
			font-weight: bold;
			white-space: nowrap;
		}
	}

        /* Styles généraux pour la page salle communal*/
        .salle-page-container {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 900px;
            margin: 20px auto;
            color: #333;
        }

        /* Titres de section */
        h1, h2 {
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            margin-top: 40px;
        }
        h1 { font-size: 2rem; }
        h2 { font-size: 1.6rem; }

        /* Tableau des tarifs */
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        .pricing-table th {
            background-color: #3498db;
            color: white;
            font-size: 1.1rem;
        }
        .pricing-table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .pricing-table tbody tr:hover {
            background-color: #f1f1f1;
        }
        .pricing-table .price {
            font-weight: bold;
            font-size: 1.2rem;
            color: #27ae60;
        }
        .pricing-table small {
            display: block;
            color: #777;
            font-style: italic;
        }

        /* Galerie d'images */
        .gallery-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px; /* Espace entre les images */
            margin-top: 20px;
        }
        .gallery-container img {
            width: 100%;
            max-width: 200px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s ease-in-out;
        }
        .gallery-container img:hover {
            transform: scale(1.05);
        }

        /* Section Réservations */
        .reservation-section p {
            line-height: 1.6;
        }
        .document-links {
            margin: 20px 0;
            display: flex;
            gap: 15px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            color: white;
            background-color: #2980b9;
            transition: background-color 0.2s;
        }
        .btn:hover {
            background-color: #3498db;
        }
        .btn .bi {
            margin-right: 8px;
        }
        .btn-back {
            background-color: #7f8c8d;
        }
        .btn-back:hover {
            background-color: #95a5a6;
        }

        /* Adaptation pour les écrans mobiles */
        @media (max-width: 768px) {
            .pricing-table thead {
                display: none; /* Cache les en-têtes sur mobile */
            }
            .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
                display: block;
                width: 100%;
            }
            .pricing-table tr {
                margin-bottom: 15px;
                border: 1px solid #ddd;
                border-radius: 8px;
            }
            .pricing-table td {
                text-align: right;
                padding-left: 50%;
                position: relative;
                border-bottom: 0;
            }
            .pricing-table td:before {
                content: attr(data-label);
                position: absolute;
                left: 15px;
                width: calc(50% - 30px);
                text-align: left;
                font-weight: bold;
                white-space: nowrap;
            }
        }
/*--cabane middes--*/
        .cabin-page-container {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 1200px;
            margin: 20px auto;
            color: #333;
        }

        .cabin-page-container h1 {
            font-size: 2.2rem;
            color: #2c3e50;
            border-bottom: 2px solid #27ae60;
            padding-bottom: 10px;
            margin-bottom: 30px;
        }

        /* Layout principal en 2 colonnes avec CSS Grid */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        /* Grille 2x2 pour la galerie d'images */
        .gallery-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .gallery-grid a {
            display: block;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .gallery-grid a:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Assure que l'image remplit l'espace sans se déformer */
            display: block;
        }
        
        /* Colonne d'information */
        .info-column h2 {
            font-size: 1.6rem;
            color: #34495e;
            margin-top: 0;
            margin-bottom: 15px;
        }
        .info-section {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
        }
        
        /* Listes pour les infos, tarifs et aménagements */
        .info-list {
            list-style: none;
            padding: 0;
        }
        .info-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .info-list .bi {
            font-size: 1.2rem;
            margin-right: 12px;
            color: #27ae60;
            margin-top: 2px;
        }
        .info-list .price {
            font-weight: bold;
        }

        /* Boutons d'action */
        .action-buttons {
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            color: white;
            background-color: #2c3e50;
            transition: background-color 0.2s;
            font-size: 1rem;
            font-weight: 500;
        }
        .btn:hover {
            background-color: #34495e;
        }
        .btn-secondary {
            background-color: #7f8c8d;
        }
        .btn-secondary:hover {
            background-color: #95a5a6;
        }

        /* Responsive: passage à 1 colonne sur les écrans plus petits */
        @media (max-width: 992px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
/*--reservation---*/

        .reservation-page-container {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 900px;
            margin: 20px auto;
            color: #333;
        }

        .reservation-page-container h1 {
            font-size: 2rem;
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
        }

        /* Galerie d'images responsive avec CSS Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 colonnes sur grand écran */
            gap: 15px;
            margin-bottom: 30px;
        }
        .gallery-grid img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: block;
        }

        /* Section d'information */
        .info-section {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .info-section h2 {
            font-size: 1.5rem;
            margin-top: 0;
            color: #34495e;
        }

        /* Conteneur pour rendre l'iframe responsive */
        .booking-widget-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding-top: 82%; /* Ratio Hauteur/Largeur (500 / 610 * 100). Ajustez si nécessaire. */
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .booking-widget-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Sur les écrans plus petits, la galerie passe à 1 colonne */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }
/* ==========================================================================
   Section: Cartes d'Annonces
   ========================================================================== */
.custom-styled-article .announcements-container {
    display: grid;
    grid-template-columns: 1fr; /* Une colonne pour les cartes */
    gap: 30px; /* Espace vertical entre les cartes */
}

.custom-styled-article .announcement-card {
    background-color: var(--color-white, #fff);
    border: 1px solid var(--color-border, #dee2e6);
    border-radius: var(--border-radius-lg, 12px);
    box-shadow: var(--box-shadow, 0 4px 12px rgba(0,0,0,0.08));
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Pour s'assurer que les coins sont bien arrondis */
}

.custom-styled-article .card-header,
.custom-styled-article .card-body {
    padding: 20px 24px;
}

.custom-styled-article .card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-text, #343a40);
}

.custom-styled-article .card-body p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-text-light, #495057);
}

.custom-styled-article .card-body p:last-child {
    margin-bottom: 0;
}

.custom-styled-article .highlight-blue {
    color: #000080;
    font-weight: bold;
    font-size: 1.2rem;
}

.custom-styled-article .highlight-red {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Styles pour la liste de liens en bas de la carte */
.custom-styled-article .card-links {
    background-color: var(--color-bg-light, #f8f9fa);
    padding: 16px 24px;
    border-top: 1px solid var(--color-border, #dee2e6);
}

.custom-styled-article .card-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-styled-article .card-links li a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-primary, #007bff);
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
}

.custom-styled-article .card-links li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.custom-styled-article .card-links li a .bi {
    font-size: 1.2rem;
    margin-right: 12px;
}
