:root {
            --primary-color: #1e3a8a;
            --secondary-color: #60a5fa;
            --accent-color: #fbbf24;
            --text-color: #1f2937;
            --background-color: #f3f4f6;
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Raleway', sans-serif;
            color: black;
            background-color: var(--background-color);
            line-height: 1.6;
        }

        header {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 2em 1em;
            position: relative;
            overflow: hidden;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--secondary-color), transparent);
            opacity: 0.3;
            z-index: 1;
        }

        #banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; 
    z-index: 1;
}


        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            margin: 0;
        }

        h1 {
            font-size: 3em;
            margin-bottom: 0em;
            position: relative;
            z-index: 2;
        }

        header p {
            font-size: 1.2em;
            position: relative;
            z-index: 2;
            margin-top: -2px;
        }

        nav {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0.5em 0;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 0.3em 0;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        nav ul li {
            margin: 0 0.5em;
        }

        nav ul li a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9em;
            padding: 0.5em 1em;
            display: block;
            transition: all 0.3s ease;
            border-radius: 20px;
        }

        nav ul li a:hover {
            background-color: var(--secondary-color);
            color: white;
        }
nav ul li a svg path:hover {
            fill: var(--secondary-color);
            color: white;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2em;
        }

        section {
            margin-bottom: 3em;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            padding: 2em;
            transition: all 0.3s ease;
        }

        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        h2 {
            color: var(--primary-color);
            margin-bottom: 0.5em;
            font-size: 2.2em;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5em;
            margin-top: 2em;
        }

        .gallery img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .gallery img:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5em;
            margin-top: 1em;
        }

        .service-item {
            background-color: #f9fafb;
            border-radius: 12px;
            padding: 1.5em;
            text-align: center;
            transition: all 0.3s ease;
	    
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
.service-item2 {
            background-color: #f9fafb;
            border-radius: 12px;
            padding: 1.5em;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .service-item:hover {
            background-color: rgba(193, 240, 255, 0.1);
            color: black;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(193, 240, 255, 0.1);
        }
.service-item2:hover {
            background-color: rgba(193, 240, 255, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .service-item i {
            font-size: 2em;
            margin-bottom: 0.5em;
            color: var(--accent-color);
        }
        .service-item2 i {
            font-size: 2em;
            margin-bottom: 0.5em;
            color: var(--accent-color);
        }
#horaires {
        text-align: center;
        margin: 2em 0;
    }

    #horaires h2 {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 1em;
    }

    .horaires-details {
        display: flex;
        justify-content: center;
        gap: 2em;
    }

    .horaires-item {
        background-color: #f9fafb;
        border-radius: 12px;
        padding: 1.5em;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        width: 200px;
    }

    .horaires-item:hover {
        background-color: var(--secondary-color);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .horaires-item h3 {
        font-size: 1.5em;
        margin-bottom: 0.5em;
    }

    .horaires-item p {
        font-size: 1.2em;
        margin: 0;
    }

        
        footer {
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            padding: 2em;
            margin-top: 2em;
            border-top-left-radius: 30px;
            border-top-right-radius: 30px;
        }

        @media (max-width: 768px) {
            nav ul {
                flex-wrap: wrap;
            }

            nav ul li {
                margin: 0.3em;
            }

            nav ul li a {
                padding: 0.5em 0.8em;
            }
        }




        .fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fullscreen-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fullscreen-overlay.show img {
    transform: scale(1);
}
.styled-button {
    margin-top: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

/* Pour les écrans petits */
@media (max-width: 600px) {
    .styled-button {
        width: 100%; /* Le bouton prendra toute la largeur disponible */
        padding: 10px 0; /* Ajustement du padding pour être centré */
        font-size: 0.9em; /* Diminuer un peu la taille de la police si nécessaire */
    }
}

.styled-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.styled-button:active {
    background-color: var(--accent-color);
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2; /* S'assurer que cela reste au-dessus de l'image de fond */
    position: relative;
}

.logo {
    width: 50px; /* Ajustez la largeur selon vos besoins */
    height: auto;
    margin-right: 10px; /* Espace entre le logo et le titre */
}

.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fullscreen-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.fullscreen-overlay.show img {
    transform: scale(1);
}

.fullscreen-overlay .caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(30, 58, 138, 0.95); /* Bleu transparent */
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1em;
    text-align: center;
    word-wrap: break-word;
    margin-top: -10px;
}

.booking-button {
            background-color: #0071c2;
            color: white;
            border: none;
            border-radius: 4px;
            padding: 10px 20px;
            font-family: Arial, sans-serif;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .booking-button:hover {
            background-color: #005a9c;
        }

        .booking-button .icon {
            margin-right: 10px;
            width: 24px;
            height: 24px;
        }


        .rbooking-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #0071c2;
            color: white;
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .rbooking-button:hover {
            background-color: #005a9c;
            transform: scale(1.1);
        }

        .rbooking-button svg {
            width: 30px;
            height: 30px;
        }