* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

header {
    background: #f4b400;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

header .btn {
    background: #3367d6;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

section {
    padding: 2rem 1.5rem;
}

.logo {
    width: 100px;
    /* Ajustez la taille selon vos besoins */
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    /* Centrer le logo et ajouter un espace en dessous */
}

.banner {
    width: 100%;
    height: 400px;
    /* Ajuste la hauteur selon tes besoins */
    background-image: url('./img/jsk-photo/main-image.jpg');
    /* Remplace par le chemin de ton image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 2rem;
}

/* Ajustement pour les petits écrans */
@media (max-width: 768px) {
    .banner {
        height: 300px;
        font-size: 1.5rem;
    }
}

h2 {
    color: #3367d6;
    margin-bottom: 1rem;
}

.activite {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 5px solid #3367d6;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#contact form label {
    font-weight: bold;
}

#contact form input,
#contact form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact form button {
    padding: 0.7rem;
    border: none;
    background: #3367d6;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

#galerie {
    padding: 2rem 1.5rem;
    text-align: center;
}

#galerie h2 {
    color: #3367d6;
    margin-bottom: 1rem;
}

.galerie-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.galerie-images img {
    width: 100%;
    /* La largeur occupe toute la colonne */
    height: 200px;
    /* Hauteur fixe pour toutes les images */
    object-fit: cover;
    /* Recadre les images si nécessaire pour garder leur aspect */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

iframe {
    width: 80%;
    /* Ajuste la largeur de la carte */
    height: 80%;
    /* Ajuste la hauteur de la carte */
    border: none;
}

footer {
    text-align: center;
    padding: 1rem;
    background: #333;
    color: #fff;
}