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

@font-face {
  font-family: "MontserratThin";
  src: url("/assets/fonts/Montserrat-ThinItalic.ttf") format("truetype");
  font-weight: 20;
}


body {
    color: white;
    background: #000;
    font-family: "MontserratThin";
    font-weight: 600;
}

/* HEADER */
header {
    background: #000;
    color: white;
    text-align: center;
    font-weight: bold;
}

/* Réseaux */
.top-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.top-bar img {
    width: 25px;
    transition: transform 0.3s;
}

.top-bar img:hover {
    transform: scale(1.2);
}

/* Logo */
.logo {
    padding: 15px;
}

.logo img {
    max-width: 450px;
}

/* Navigation */
nav {
    background: #000;
    position: relative;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-list li {
    margin: 20px 20px;
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 2.5rem;
}

.nav-list a:hover {
    color: #FE00FA;
}

/* Burger */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    padding: 15px;
}

/* MAIN */
main {
    padding: 40px;
    min-height: 70vh;
}

/* FOOTER */
footer {
    color: white;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {

    .nav-list {
        flex-direction: column;
        display: none;
        background: #000;
        width: 100%;
    }

    .nav-list.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: white;
        text-align: right;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .logo img{
        max-width: 90%;
    } 
   

}