/* =========================
   STYLE GENERAL IMC
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


body {
    background: #ffffff;
    color: #111;
    line-height: 1.6;
}



header {
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
}



.logo img {
    width: 120px;
}



nav a {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
}


nav a:hover {
    color: #f5c400;
}





/* =========================
   SECTION HERO
========================= */


.hero {

    min-height: 85vh;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
    linear-gradient(
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)
    ),
    url("background.jpg");

    background-size: cover;
    background-position: center;

    color: white;

}



.hero h1 {

    max-width: 900px;
    font-size: 48px;
    margin-bottom: 25px;

}



.hero p {

    max-width: 750px;
    font-size: 18px;
    margin-bottom: 35px;

}



button {

    width: fit-content;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    background: #e30613;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-right: 15px;

}



button.dark {

    background: #f5c400;
    color: black;

}





/* =========================
   SECTIONS
========================= */


section {

    padding: 70px 8%;

}


h2 {

    text-align: center;
    font-size: 32px;
    margin-bottom: 35px;

}



.about p {

    max-width: 900px;
    margin: 15px auto;
    text-align: center;
    font-size: 18px;

}





/* =========================
   CERTIFICATIONS
========================= */


.cards {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;

}



.card {

    width: 220px;
    padding: 35px 20px;
    background: #f8f8f8;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}



.card h3 {

    font-size: 22px;

}





/* =========================
   CLASSEMENTS
========================= */


.ranking {

    display: flex;
    gap: 30px;
    justify-content: center;

}



.box {

    width: 45%;
    padding: 35px;
    background: #050505;
    color: white;
    border-radius: 15px;

}



.box h3 {

    color: #f5c400;
    margin-bottom: 15px;

}





/* =========================
   PLATEFORMES
========================= */


.platforms {

    text-align: center;
    background: #f5f5f5;

}


.platforms p {

    font-size: 18px;
    margin-bottom: 40px;

}





/* =========================
   FOOTER
========================= */


footer {

    background: #050505;
    color: white;
    text-align: center;
    padding: 25px;

}





/* =========================
   RESPONSIVE MOBILE
========================= */


@media(max-width:768px){


header {

    flex-direction: column;

}


nav {

    margin-top:20px;

}



.hero h1 {

    font-size: 32px;

}



.ranking {

    flex-direction: column;

}



.box {

    width:100%;

}


}

/* =========================
   DERNIERS CLASSEMENTS
========================= */


.latest-ranking {

    background: #ffffff;

}


.ranking-table {

    display:flex;
    justify-content:center;
    gap:30px;

}



.table-box {

    width:45%;
    padding:35px;
    border-radius:15px;
    background:#f8f8f8;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.table-box h3 {

    color:#e30613;
    margin-bottom:15px;

}



.table-box ul {

    list-style:none;
    margin-top:20px;

}



.table-box li {

    padding:10px;
    border-bottom:1px solid #ddd;

}



@media(max-width:768px){

.ranking-table{

flex-direction:column;

}


.table-box{

width:100%;

}

}


.hero-small {

    padding:80px 8%;
    text-align:center;
    background:#050505;
    color:white;

}


.hero-small h1 {

    font-size:45px;
    margin-bottom:20px;

}


.hero-small p {

    font-size:18px;

}


.box {

    max-width:800px;
    margin:auto;
    padding:40px;
    background:#050505;
    color:white;
    border-radius:15px;
    text-align:center;

}


.box h3 {

    color:#f5c400;
    margin-bottom:20px;

}


.box strong {

    display:block;
    margin-top:15px;

}


.form-section {

    padding:70px 8%;
    background:#f5f5f5;

}


.form-section form {

    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);

}



.form-section label {

    display:block;
    margin-top:20px;
    font-weight:bold;

}



.form-section input,
.form-section select,
.form-section textarea {

    width:100%;
    padding:15px;
    margin-top:8px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;

}



.form-section textarea {

    min-height:120px;

}


.contact-section {

    padding:70px 8%;
    text-align:center;

}



.contact-cards {

    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;

}



.contact-cards .card {

    width:280px;

}


footer {

    background:#050505;
    color:white;
    text-align:center;
    padding:35px 8%;

}


.footer-links {

    margin-bottom:20px;

}


.footer-links a {

    color:white;
    text-decoration:none;
    margin:0 10px;
    font-size:14px;

}


.footer-links a:hover {

    color:#f5c400;

}


/* MENU MOBILE */

.menu-btn {

display:none;
background:#e30613;
color:white;
border:none;
font-size:25px;
padding:8px 15px;
border-radius:8px;

}



@media(max-width:768px){


header {

position:relative;

}



.menu-btn {

display:block;

}



nav {

display:none;
flex-direction:column;
background:#050505;
width:100%;
position:absolute;
top:80px;
left:0;
padding:20px;

}



nav a {

margin:15px 0;

}



.hero {

min-height:70vh;
padding:50px 6%;

}



.hero h1 {

font-size:30px;

}



.hero p {

font-size:16px;

}



section {

padding:50px 6%;

}



.cards {

flex-direction:column;
align-items:center;

}



.card {

width:100%;
max-width:350px;

}



button {

width:100%;
margin-bottom:15px;

}


}


.card,
.box,
button {

transition:0.3s;

}


.card:hover {

transform:translateY(-5px);

}


button:hover {

opacity:0.85;

}


/* ACTUALITES */


.news-section {

padding:70px 8%;

}



.news-container {

display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;

}



.news-card {

width:300px;
padding:30px;
background:#f8f8f8;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.news-card h3 {

color:#e30613;
margin-bottom:15px;

}



.news-card a {

color:#050505;
font-weight:bold;
text-decoration:none;

}


/* ARTISTES CERTIFIES */


.certified-section {

padding:70px 8%;
text-align:center;

}



.certified-table {

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:40px;

}



.certified-card {

width:220px;
padding:30px;
background:#f8f8f8;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);

}



.certified-card h3 {

color:#f5c400;
margin-bottom:15px;

}