* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

/* HEADER */
header {
    text-align: center;
    padding: 30px 15px;
    border-bottom: 1px solid #222;
}

header h1 {
    color: #2ecc71;
    font-size: 36px;
    letter-spacing: 0px;
}

header p {
     background: #0f0f0f;
    border-bottom: 1px solid #222;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 10px;.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container img {
    width: 48px;      /* taille du logo */
    height: auto;
}

.logo-container span {
    font-weight: 900;
    font-size: clamp(32px, 4vw, 44px);
    color: #0adb68;
    letter-spacing: 2px;
}

}

.hero p {
    color: #ccc;
}

/* MENU */
.menu {
    padding: 50px 20px;
    text-align: center;
}

.menu h2 {
    color: #2ecc71;
    margin-bottom: 30px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    border-radius: 15px;
    width: 260px;
    overflow: hidden;
    border: 1px solid #222;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    color: #2ecc71;
    margin: 15px 0 5px;
}

.card p {
    color: #bbb;
    padding-bottom: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #222;
    color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 22px;
    }
}
.btn {
    display: inline-block;
    background-color: #2ecc71;
    color: #000;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #27ae60;
}
.logo {
    font-weight: 900;
    font-size: clamp(32px, 4vw, 44px);
    color: #0adb68;
    letter-spacing: 2px;
}
nav a {
    color: #0adb68;
}nav a {
    margin-left: 35px; /* espace entre les liens */
}

nav a {
    border-bottom: 1px solid rgba(10,219,104,0.3);
}
.horaires {
    background: #000;
}

.horaire-item {
    background: #111;
    margin-bottom: 15px;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.horaire-item span {
    color: #ccc;
}

.horaire-item strong {
    color: #00c853;
    text-align: right;
    font-weight: bold;
}

.horaire-item.closed strong {
    color: #ff5252;
}
.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact {
    text-align: center;
}

.contact-box {
    background: #111;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
}

.contact-box h3 {
    color: #00c853;
    margin-bottom: 10px;
}

.contact-box a {
    color: #fff;
    text-decoration: none;
}

.contact-box a:hover {
    color: #00c853;
}


.ligne-verte-centree {
    width: 80px;
    height: 4px;
    background-color: green;
    margin: 20px auto;
    border-radius: 5px;
}
