/* Stile navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
    font-family: "Inter", Arial;
    margin-bottom: -80px;
}

/* Bottone hamburger */
.hamburger {
    position: absolute;
    left: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Logo */
.logo a {
    text-decoration: none;
    color: black;
    font-size: 20px;
}

/* Menù laterale */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}

.side-menu a {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block;
    font-family: "Inter", Arial;
}

.hamburger-menu-link {
    transition: all 0.3s ease;
}

.hamburger-menu-link:hover {
    transform: translateX(4px);
}

.close-x-icon {
    transition: all 0.3s ease-out;
}

.close-x-icon:hover {
    transform: rotate(180deg);
}

.hamburger-icon {
    transition: all 0.4s ease;
}

.hamburger-icon:hover {
    transform: scaleX(1.1);
}

.closebtn {
    padding: 0px;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    text-decoration: none;
    color: black;
}
