@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');


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

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: #fff;

    background-image: url('/Teams/Valorant/img/omen.jpeg');
    background-attachment: fixed;
    background-position: center;
}

main {
    flex: 1;
}

/* HEADER GLOBAL */
.header {
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 3px solid #ff4656;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-title {
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    color: white;
}

.brand-title span {
    color: #ff4656;
}

/* Bouton login */
.login-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #6a0dad, #ff006e);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 70, 255, 0.4);
}

/* Avatar */
.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

/* MENU PROFIL (séparé du reste) */
.profile-dropdown {
    position: relative;
}

.profile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 45px;
    background: rgba(20,20,20,0.95);
    border: 1px solid #b846ff;
    border-radius: 10px;
    list-style: none;
    padding: 8px 0;
    min-width: 160px;
    z-index: 2000;
}

.profile-dropdown:hover .profile-menu {
    display: block;
}

.profile-menu li {
    padding: 10px 15px;
}

.profile-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.profile-menu li a:hover {
    color: #b846ff;
    background: rgba(255,255,255,0.05);
}

/* FOOTER */
.footer {
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    padding: 20px;
    border-top: 3px solid #ff4656;
    margin-top: 80px;
    position: relative;
}

/*Mobile*/

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    .header {
        position: relative;
        z-index: 1000;
    }

    .navbar {
        z-index: 1500;
    }

    .menu-toggle {
        z-index: 2000;
    }

    .header-inner {
        gap: 15px;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }

    .brand-title {
        font-size: 1.2rem;
    }

    .footer {
        font-size: 0.9rem;
    }

}

