* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Trebuchet MS', sans-serif;
    background-color: #0f0f0f;
    color: white;
    line-height: 1.6;
}

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: #1a1a1a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #512da8;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px; /* Espace entre le logo et le texte */
}

.logo-img {
    height: 50px; /* Ajuste la taille de ton logo ici */
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #512da8;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://www.creatium-mc.fr/storage/img/creatium-spawn.png');
    background-size: cover;
    padding-top: 80px;
}

.ip-box {
    background: #512da8;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 30px;
}

.container {
    padding: 100px 5%;
    text-align: center;
}

/* RESPONSIVE : Pour les petits écrans */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links li {
        margin: 5px 10px;
    }
}