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

html,
body {
    overflow-x: hidden;
    ;
}

.header {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #09122C;
    text-decoration: none;
    font-size: 48px;
    font-weight: bold;
    overflow: hidden;
}

.logo {
    font-size: 48px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 10px 0;
    overflow: visible;
}

.logo::after,
.logo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ff0000, #00ffff);
    bottom: -8px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease-out;
    /* Plus lent: 0.4s → 0.6s */
}

.logo::before {
    top: -8px;
    transform-origin: left;
}

.logo:hover::after,
.logo:hover::before {
    transform: scaleX(1);
}



.search-bar input {
    width: 260px;
    padding: 8px 14px;
    border: 1px solid #aaa;
    border-radius: 20px;
    outline: none;
}

.nav {
    display: flex;
    gap: 20px;
}


.nav a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nav a.active {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}



.nav a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: #000;
    font-weight: bold;
    padding: 5px;

}

.burger {
    display: none;
}

<<<<<<< HEAD
#logout-btn {
=======
#logout-btn{
>>>>>>> a8e9173c3c7cbefa59ec3a43f966054af4d29fc5
    padding: 8px 20px;
    background-color: transparent;
    border: 2px solid #000;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    border-radius: 10px;
}

/********** MEDIA QUERIES **********/
@media (max-width: 768px) {

    .header-container {

        width: 100%;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    /* BURGER */
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 25px;
        height: 20px;
        cursor: pointer;
    }

    .burger span {
        width: 100%;
        height: 3px;
        background: black;
        border-radius: 2px;
    }

    /* LOGO */
    .logo a {
        font-size: 24px;
        text-decoration: none;
        color: black;
        font-weight: 600;
    }

    /* SEARCH */
    .search-bar input {
        width: 100%;
        max-width: 120px;
    }

    /* NAV MENU (HIDDEN BY DEFAULT) */
    .nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        right: 50px;
        width: 90%;
        max-width: 320px;
        background: #ffffff;
        border-radius: 12px;
        padding: 20px;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        z-index: 1000;
    }

    .about,
    .contact,
    .login,
    .newlook {
        background-color: #aaa;
    }

    /* WHEN OPEN */
    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 12px 0;
        font-size: 16px;
        color: #000;
        text-decoration: none;
        color: black;
        border-bottom: 1px solid #eee;
    }

    .nav a:last-child {
        border-bottom: none;
    }
}
