/* Général */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-blue: #00d9ff;
    --neon-pink: #ff00ff;
    --neon-purple: #8a2be2;
    --dark-bg: #0d0d0d;
    --light-text: #ffffff;
    --glow-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue);
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

nav ul li {
    margin: 0 20px;
}
nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}

.hero {
    text-align: center;
    margin: 40px 0;
}

.hero h1 {
    font-size: 2.5em;
}

.accessoires {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.produit {
    margin: 20px;
    text-align: center;
    width: 250px;
}

.produit img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.infos-pratiques {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.horaires {
    width: 100%;
    margin: 10px auto;
    border-collapse: collapse;
}

.horaires thead {
    background-color: #0077aa;
    color: white;
}

.horaires th, .horaires td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.horaires tr:nth-child(even) {
    background-color: #f9f9f9;
}

.ferme {
    background-color: #ffcccc;
    font-weight: bold;
}

.address-link {
    color: #0077aa;
    text-decoration: none;
    font-weight: bold;
}

.phone-link {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.phone-link:hover {
    text-decoration: underline;
}

.blue {
    color: rgb(57, 179, 255);
}
.white {
    color: white;
}

b {
    font-size: smaller;
    font-weight: normal;
    text-align: center;
}

footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer .footer-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

footer .social-icons a {
    color: var(--light-text);
    font-size: 2rem;
    margin: 0 15px;
    text-decoration: none;
}

footer .social-icons a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);

}

footer .social-icons i {
    margin-right: 10px;
}
