:root {
    --primary-color: #2196F3;    /* Bleu vif */
    --secondary-color: #03A9F4;  /* Bleu clair */
    --accent-color: #00BCD4;     /* Bleu-cyan */
    --text-color: #ffffff;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    position: absolute;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
}

.navbar-brand {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 500;
}

.navbar-brand img {
    max-height: 50px;
}

.navbar-brand:hover {
    color: var(--text-color);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 400;
    margin: 0 1rem;
}

.btn-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: var(--accent-color);
    color: white !important;
    border: 1px solid var(--accent-color);
    transition: background-color 0.2s ease;
    text-decoration: none;
}

.btn-help:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    text-decoration: none;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler {
        background-color: white !important;
}

.btn-light {
    background: var(--secondary-color);
    color: white !important;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.btn-light:hover {
    background: var(--accent-color);
    color: white !important;
}

.btn-primary, .btn-outline-primary {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: 2px solid transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 83, 155, 0.7), rgba(0, 105, 148, 0.4)), url("../images/MONS EN BAROEUL_1.jpg");
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    padding: 100px 0;
    margin-top: -76px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--secondary-color);
    opacity: 0.8;
}

/* Hero Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    height: 40px;
    padding: 0.5rem 1rem;
    background-color: #262626;
    color: white;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.hero-button:hover {
    background-color: #404040;
    color: white;
    text-decoration: none;
}

.hero-button:focus-visible {
    outline: none;
    ring: 2px solid #262626;
    ring-offset: 2px;
}

.hero-button:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(3, 169, 244, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 8px rgba(3, 169, 244, 0.3);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Comment ça marche Section */
.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Reservation Form */
.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control {
    padding: 0.75rem;
    border-radius: 5px;
}

/* Contact Section */
#contact i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Tarifs Section */
.tarifs-section {
    padding: 100px 0;
    background-color: white;
}

.tarifs-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

.tarif-card {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    text-align: center;
    animation: fadeIn 0.5s ease-out forwards;
    border: 1px solid var(--secondary-color);
}

.tarif-card:nth-child(1) {
    animation-delay: 0.1s;
}

.tarif-card:nth-child(2) {
    animation-delay: 0.2s;
}

.tarif-card:nth-child(3) {
    animation-delay: 0.3s;
}

.tarif-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tarif-icon {
    margin-bottom: 1rem;
}

.tarif-icon svg {
    width: 32px;
    height: 32px;
    color: #333;
    margin: 0 auto;
    display: block;
}

.tarif-card h3 {
    color: #333;
}

.tarif-card .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.pricing-card {
    width: 256px;
    height: 230px;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    text-align: center;
    transition: transform 0.3s ease;
    margin: 0 auto;
    border: 1px solid var(--secondary-color);
}

.pricing-card:hover {
    border-color: var(--primary-color);
}

.pricing-card .price {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

/* Typography */
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Utility Classes */
.text-4xl {
    font-size: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.text-estate-800 {
    color: #1a1a1a;
}

.text-estate-600 {
    color: #4a4a4a;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-3xl {
    max-width: 48rem;
}

.p-6 {
    padding: 1.5rem;
}

.bg-estate-100 {
    background-color: #f5f5f5;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Laundry cards */
.laverie-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    height: auto;
    max-width: 380px;
    margin: 0 auto;
    transition: transform 0.3s ease;
    border: 1px solid var(--secondary-color);
    position: relative;
}

.laverie-card:hover {
    transform: translateY(-5px);
}

.laverie-info {
    padding: 1.5rem;
}

.laverie-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #262626;
}

.laverie-info p {
    color: #666;
    margin-bottom: 1rem;
}

/* Style pour le badge de la laverie */
.laverie-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3182ce, #2c5282);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.laverie-badge-2 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: green;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Carousel styling */
.carousel-item img {
    height: 280px;
    object-fit: cover;
}

.carousel-item .reduced-zoom {
    object-fit: contain;
    max-height: 400px;
    width: auto !important;
    margin: 0 auto;
}

.carousel-item {
    background-color: #f8f9fa;
}

/* Map Section */
#map {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--secondary-color);
}

/* Entrepreneur Section */
.entrepreneur-section {
    padding: 80px 0;
    position: relative;
    z-index: 0;
}

.entrepreneur-container {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 60px 30px;
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
}

.entrepreneur-container h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.entrepreneur-container p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.entrepreneur-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Entrepreneurs Section */
.entrepreneurs-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.entrepreneurs-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.entrepreneurs-section .section-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title {
    color: #1976D2 !important;
    font-size: 2.5rem !important;
    font-weight: bold !important;
    margin-bottom: 1.5rem;
    text-align: center;
}

#entrepreneurs .section-title {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.btn-dark {
    background-color: #222;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Itinerary button */
.btn-itineraire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-itineraire:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.btn-itineraire i {
    font-size: 14px;
}

/* Social buttons */
.social-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

/* Button styles */
.btn-savoir-plus, .btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-savoir-plus {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-savoir-plus:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-savoir-plus.btn-light {
    background-color: #1780c2 !important;
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 170px;
    height: 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}

.btn-savoir-plus.btn-light i {
    font-size: 14px;
}

.btn-savoir-plus.btn-light:hover {
    background-color: #168fda !important;
    color: white;
}

.btn-linkedin {
    background-color: #0077b5;
    color: #fff;
}

.btn-linkedin:hover {
    background-color: #006396;
    color: #fff;
}

.btn-linkedin i {
    font-size: 1.1rem;
}

.btn-savoir-plus, .btn-discuss {
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-savoir-plus:hover, .btn-discuss:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    color: #ffffff;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

footer p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: #007bff;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .feature-section .col-md-4 {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0;
    }
    
    .contact-info {
        gap: 1rem;
        font-size: 14px;
    }
    
    .feature-image {
        margin-bottom: 2rem;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .text-center .btn {
        width: 80%;
        margin-bottom: 1rem;
    }
    .text-center .btn:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .navbar-brand img {
        max-height: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 400px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-outline-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
}

/* Media Queries Supplémentaires */
@media screen and (max-width: 1200px) {
    .pricing-card {
        width: 100%;
        max-width: 256px;
        margin-bottom: 2rem;
    }
    
    .tarif-card {
        margin-bottom: 2rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 768px) {
    .tarifs-section {
        padding: 60px 0;
    }
    
    .tarifs-section h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .reservation-form {
        padding: 1.5rem;
    }
    
    #contact i {
        font-size: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .tarifs-section {
        padding: 40px 0;
    }
    
    .pricing-card {
        height: auto;
        padding: 1rem;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .reservation-form {
        padding: 1rem;
    }
    
    .form-control {
        padding: 0.5rem;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .text-4xl {
        font-size: 1.75rem;
    }
    
    .text-lg {
        font-size: 1rem;
    }
}

/* Ajustements pour les très petits écrans */
@media screen and (max-width: 400px) {
    .tarifs-section h2 {
        font-size: 1.75rem;
    }
    
    .pricing-card .price {
        font-size: 1.25rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    #contact i {
        font-size: 1.75rem;
    }
}

/* Media Queries pour les Laveries et autres sections */
@media screen and (max-width: 992px) {
    .laveries-section {
        padding: 60px 0;
    }
    
    .laverie-card {
        margin-bottom: 2rem;
    }
    
    .location-card {
        margin-bottom: 2rem;
    }
    
    .entrepreneurs-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .laverie-card {
        height: auto;
    }
    
    .laverie-badge, .laverie-badge-2 {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .location-info {
        padding: 1rem;
    }
    
    .location-card h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 576px) {
    .laveries-section {
        padding: 40px 0;
    }
    
    .laverie-card {
        padding: 1rem;
    }
    
    .location-card {
        padding: 1rem;
    }
    
    .entrepreneurs-section {
        padding: 40px 0;
    }
    
    #entrepreneurs h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 400px) {
    .laverie-badge, .laverie-badge-2 {
        font-size: 0.7rem;
        padding: 3px 6px;
        top: 10px;
        right: 10px;
    }
    
    .location-card h3 {
        font-size: 1.1rem;
    }
    
    #entrepreneurs h2 {
        font-size: 1.75rem;
        padding: 10px;
    }
}

.navbar-collapse {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
    text-align: center;
}

.navbar-collapse.show {
    display: block;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

@media screen and (min-width: 992px) {
    .navbar-collapse {
        position: static;
        transform: none;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
        width: auto;
        max-width: none;
    }
    
    .modal-backdrop {
        display: none !important;
    }
}

@media screen and (max-width: 991px) {

    .navbar-collapse .nav-link {
        color: #000 !important;
    }

    .navbar-collapse .nav-link:hover {
        color: white !important;
    }

    .navbar-collapse .btn-savoir-plus {
        display: block;
        margin: 1rem auto;
        width: fit-content;
    }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
        display: block !important;
    }
    
    .modal-close::before,
    .modal-close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        transform-origin: center;
    }
    
    .modal-close::before {
        transform: rotate(45deg);
    }
    
    .modal-close::after {
        transform: rotate(-45deg);
    }
    
    .modal-close:hover::before,
    .modal-close:hover::after {
        background-color: var(--primary-color);
    }
}

.modal-close {
    display: none;
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 30%;
        height: 30%;
        background-color: white;
        padding: 2rem;
        transition: right 0.3s ease;
        display: block;
        transform: none;
        left: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin-top: 3rem;
    }
}

/* Style spécifique pour recadrer les images  */
img[src*="Moroy_1.jpeg"],
img[src*="Moroy_2.jpeg"],
img[src*="Drapiez_1.jpeg"],
img[src*="Forbin_6.jpeg"],
img[src*="Liberté_6.jpeg"] {
    object-fit: contain !important;
}
