
body {
    background-color: #000;
    color: #fff;
    margin: 0;
    font-family: Arial, sans-serif;
}


form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #b60708;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

form button {
    background-color: #f10908;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding: 5px 8px; 
    font-size: 0.8em; 
}

form button:hover {
    background-color: #c83c44;
    transform: scale(1.05);
}

main section {
    width: 100%; 
    margin: 0;
    padding: 20px;
    background-color: #1a1a1a;
    color: #fff;
    border-bottom: 1px solid #b60708;
    display: flex;
    align-items: center;
    gap: 20px;
    box-sizing: border-box; 
    transition: background-color 0.3s ease;
    flex-wrap: wrap;
}

main section:hover {
    background-color: #222; 
}

main section div {
    flex: 1; 
}

main section img {
    width: 80px; 
    max-width: 90vw;
    height: auto; 
    border-radius: 10%; 
    background-color: #333;
    padding: 5px;
    transition: transform 0.3s ease;
}

main section img:hover {
    transform: scale(1.1);
}

main section h3 {
    color: #f10908;
    margin-bottom: 10px;
    font-size: 1.5em; 
}

main section a {
    color: #f10908;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

main section a:hover {
    text-decoration: underline;
    color: #c83c44;
}

main section p, main section ul {
    font-size: 1.1em;
    line-height: 1.6; 
}

main section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

main section ul li {
    margin-bottom: 10px;
}

main section ul li a {
    color: #0066cc;
    font-weight: bold;
    transition: color 0.3s ease;
}

main section ul li a:hover {
    color: #004080;
    text-decoration: underline;
}


.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}


.horaires {
    margin-left: 40px; 
    list-style: none; 
    padding: 0; 
}

.horaires li {
    text-align: left; 
    margin-bottom: 10px; 
}

@media (max-width: 700px) {
    main section {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    main section img {
        width: 80px;
        max-width: 98vw;
    }
    main section h3 {
        font-size: 1.1em;
    }
}
.social-circles {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.social-circle {
    width: 30px; 
    height: 30px; 
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    transition: transform 0.2s, background 0.2s;
}
.social-circle:hover {
    transform: scale(1.1);
    background: #f10908;
}
.social-circle img {
    width: 18px; 
    height: 18px; 
    object-fit: contain;
}
@media (max-width: 600px) {
    .social-circle {
        width: 32px;
        height: 32px;
    }
    .social-circle img {
        width: 18px;
        height: 18px;
    }
}