* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    height: 100vh;
}

header {
    text-align: center;
    color: white;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

section {
    padding: 60px 20px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

section h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    color: #0056b3;
}

section p {
    font-size: 1.1em;
    line-height: 1.8;
}

section:hover {
    background-color: #f4f4f4;
}

button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #004494;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    max-width: 250px;
    border-radius: 8px;
}

.gallery img:hover {
    transform: scale(1.1);
}

.gallery img.blurred {
    filter: blur(5px);
    opacity: 0.7;
}

.popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 15px;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.popup-content button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.popup-content button:hover {
    background-color: #0056b3;
}

a {
    color: #7A7C80;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
}

#theme-btn {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    transition: color 0.5s ease;
}

#theme-btn:hover {
    color: #f0f0f0;
}

body.light-theme {
    background-color: #f0f0f0;
    color: #000;
}

body.light-theme h2,
body.light-theme .white {
    color: #000;
}

body.light-theme .btn {
    background-color: #ff9800;
}

body.light-theme .btn:hover {
    background-color: #e68a00;
}

body.light-theme #theme-btn {
    color: #000;
}

.icon {
    width: 300px;
    display: block;
    margin: 0 auto;
    border-radius: 100px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 780px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .icon {
        width: 200px;
    }
}

#horaires-tarifs {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.horaires, .tarifs {
    width: 48%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.horaires:hover, .tarifs:hover {
    background-color: #f4f4f4;
}

.icon-text {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.icon {
    font-size: 24px;
    margin-right: 10px;
}

h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

p {
    margin: 5px 0;
    color: #555;
}

#banner {
    background-image: url('');
    background-size: cover;
    background-position: center;
    height: 300px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2em;
    font-weight: bold;
    margin: 0;
}

#comm {
    font-family: 'Brush Script MT', cursive;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    padding: 20px;
}

.slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    z-index: 2;
}

@media (min-width: 1024px) {
    .slider-background {
        object-position: center center;
    }
}

@media (max-width: 768px) {
    .slider-background {
        object-position: top center;
    }
}

iframe {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
