/* =========================
        RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0b0b0b;
    color: white;
}



/* =========================
        NAVBAR
========================= */


header {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}


nav {

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 25px 8%;

}


.logo {

    font-size: 28px;
    font-weight: bold;

    color: #8fbc3f;

    letter-spacing: 3px;

}



nav ul {

    display: flex;

    gap: 25px;

    list-style: none;

}



nav a {

    color: white;

    text-decoration: none;

    font-weight: bold;

    transition: .3s;

}



nav a:hover {

    color: #8fbc3f;

}




/* =========================
        HERO ACCUEIL
========================= */


.hero {


    height: 100vh;


    background:

    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.85)
    ),

    url("../img/background.jpg");


    background-size: cover;

    background-position:center;


    display:flex;

    justify-content:center;

    align-items:center;


    text-align:center;


}



.hero-content {

    max-width:900px;

}



.hero h1 {


    font-size:80px;

    color:#8fbc3f;

    letter-spacing:5px;


}



.hero h2 {


    font-size:30px;

    margin:20px 0;


}



.hero p {


    font-size:20px;

    color:#ddd;

    margin-bottom:40px;


}





/* =========================
        BOUTONS
========================= */


.buttons {


    display:flex;

    justify-content:center;

    gap:20px;


}



.btn {


    padding:15px 35px;

    border-radius:5px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;


}



.discord {


    background:#5865F2;

    color:white;


}



.server {


    background:#8fbc3f;

    color:black;


}



.btn:hover {


    transform:scale(1.05);


}





/* =========================
        SECTION ACCUEIL
========================= */


.about {


    padding:80px 10%;

    text-align:center;


}



.about h2 {


    font-size:40px;

    margin-bottom:20px;


}



.about p {


    color:#ccc;

    line-height:1.7;


}




.cards {


    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;


}



.card {


    width:300px;


    background:#161616;


    border:1px solid #333;


    border-radius:10px;


    padding:30px;


    transition:.3s;


}



.card:hover {


    transform:translateY(-10px);

    border-color:#8fbc3f;


}



.card h3 {


    color:#8fbc3f;

    margin-bottom:15px;


}





/* =========================
        PAGES INTERNES
========================= */


.page {


    padding:150px 10% 80px;


    min-height:100vh;


    background:#0b0b0b;


}



.page h1 {


    text-align:center;

    font-size:50px;

    color:#8fbc3f;

    margin-bottom:50px;


}



.intro {


    text-align:center;

    color:#ccc;

    line-height:1.8;

    margin-bottom:50px;


}





/* =========================
        REGLEMENT
========================= */


.box {


    background:#161616;


    border:1px solid #333;


    border-radius:10px;


    padding:40px;


    max-width:1000px;


    margin:auto;


}



.box h2 {


    color:#8fbc3f;

    margin-top:30px;


}



.box p {


    color:#ddd;

    line-height:1.8;


}





/* =========================
        BOUTIQUE
========================= */


.shop-container {


    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;


}



.premium-card {


    width:380px;


    background:

    linear-gradient(
        145deg,
        #181818,
        #0d0d0d
    );


    border:1px solid #333;


    border-radius:15px;


    padding:40px 30px;


    transition:.4s;


    text-align:center;


}



.premium-card:hover {


    transform:translateY(-15px);


    border-color:#8fbc3f;


}



.featured {


    border:2px solid #8fbc3f;


}



.rank-title {


    font-size:32px;

    color:#8fbc3f;

    font-weight:bold;


}



.price {


    font-size:60px;

    font-weight:bold;

    margin:20px;


}



.premium-card ul {


    list-style:none;

    text-align:left;

    line-height:2;


    color:#ddd;

    margin-bottom:30px;


}



.buy-button {


    background:#8fbc3f;

    color:black;


    padding:15px 35px;


    text-decoration:none;

    font-weight:bold;


    border-radius:5px;


}




.badge {


    background:#8fbc3f;

    color:black;


    padding:8px;

    border-radius:20px;

    font-weight:bold;


}





/* =========================
        EVENEMENTS
========================= */


.event-container {


    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;


}



.event-card {


    width:350px;


    background:#161616;


    border:1px solid #333;


    border-radius:15px;


    padding:35px;


    transition:.3s;


}



.event-card:hover {


    transform:translateY(-10px);

    border-color:#8fbc3f;


}



.event-icon {


    font-size:45px;

    text-align:center;

}



.event-card h2 {


    color:#8fbc3f;

    text-align:center;

    margin:15px;


}



.tag {


    display:block;

    width:max-content;

    margin:auto;


    background:#8fbc3f;

    color:black;


    padding:5px 15px;

    border-radius:20px;

}





/* =========================
        CHANGELOG
========================= */


.update-box {


    max-width:1000px;

    margin:auto;


}



.update-title {


    background:#8fbc3f;

    color:black;


    padding:20px;


    border-radius:10px;


    font-size:25px;

    font-weight:bold;


    margin-bottom:40px;


}



.change-card {


    background:#161616;


    border:1px solid #333;


    border-radius:12px;


    padding:30px;


    margin-bottom:25px;


    transition:.3s;


}



.change-card:hover {


    transform:translateX(10px);


    border-color:#8fbc3f;


}



.change-card h2 {


    color:#8fbc3f;

    margin-bottom:15px;


}



.change-card li {


    list-style:none;

    color:#ddd;

    line-height:1.8;


}



.thanks {


    margin-top:50px;


    padding:30px;


    background:#111;


    border-left:4px solid #8fbc3f;


    color:#ccc;


}





/* =========================
        FOOTER
========================= */


footer {


    background:#050505;


    padding:20px;


    text-align:center;


    color:#aaa;


}





/* =========================
        MOBILE
========================= */


@media(max-width:900px){


nav {

    flex-direction:column;

    gap:20px;

}



nav ul {

    flex-wrap:wrap;

    justify-content:center;

}



.hero h1 {


    font-size:45px;


}



.hero h2 {


    font-size:22px;


}



.buttons {


    flex-direction:column;


}



.btn {


    width:80%;

    margin:auto;


}



.page h1 {


    font-size:35px;


}



}