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

/* TOP HERO */
.top-hero {
    width: 100%;
    height: clamp(120px, 20vw, 300px);
    background-image: url('/assets/banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* LOGO */
.hero-logo {
    position: absolute;
    left: 80px; /* plus à droite */
    top: 50%;
    transform: translateY(-50%);
    height: clamp(90px, 15vw, 180px); /* plus grand */
}


.radio-player {
    position: absolute;
    right: 20px;
    top: 20px;
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
}

/* NAV */
.nav {
    background: #000;
    padding: 10px;
    text-align: center;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 13px;
}

/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* SECTION TITLE */
.section-title {
    font-size: 24px;
    margin: 20px 0 10px;
    font-weight: bold;
    text-transform: uppercase;
}

/* DJ GRID */
.dj-grid {
    display: flex;
    gap: 20px;
}
.club-card {
    width: 100%;
    height: 320px;
    background: #2b2b2b;
    margin-bottom: 30px;
}

.small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dj-card {
    height: 150px;
    background: #2b2b2b;
}

.small-card {
    height: 120px;
    background: #ddd;
}

/* ARTICLES */
.articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.article-card {
    height: 200px;
    background: #f2f2f2;
}

/* FOOTER */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}