body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: white;
}

/* HEADER FIXE */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000; /* Bande noire */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header img {
    height: 90px; /* Logo plus grand et étiré */
    width: auto;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px 40px; /* Réduction de l'espace */
    margin-top: 90px; /* Pour ne pas être caché sous le header */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    color: #aaa;
    font-size: 20px;
}

/* SECTION */
.section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px; /* Réduction de l’écart */
}

/* CARD */
.card {
    background: #111;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.08);
}

.card img {
    width: 120px;
    margin-bottom: 20px;
}

.card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.card p {
    color: #aaa;
    font-size: 14px;
}

/* Coin Section */
.coin-section {
    text-align: center;
    margin-top: 60px; /* Réduit l'écart */
}

.coin-section h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff;
}

.coin-section img {
    width: 180px; /* Taille ajustée au milieu */
    height: auto;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.coin-section img:hover {
    transform: scale(1.1); /* Effet zoom au survol */
}


a {
    color: inherit;     /* Prend la couleur du parent */
    text-decoration: none; /* Enlève le soulignement */
}

a:hover {
    color: inherit; /* Garde la même couleur au survol */
    text-decoration: underline; /* Si tu veux ajouter un léger soulignement au survol, enlève si non voulu */
}




/* FOOTER */
.footer {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size:
