/* =========================================
   GLOBAL FONT
   ========================================= */

* {
    font-family: var(--font-1-bold);
}


/* =========================================
   HEADER
   ========================================= */

.site-header {
    position: sticky;
	top: 0px;
    width: 100%;
    background: #000;
    z-index: 1000;
}

.site-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 60px;
    padding: 5px 30px;
    box-sizing: border-box;
    background: #000;
}


/* =========================================
   LOGO
   ========================================= */

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
}


/* =========================================
   DESKTOP NAVIGATION
   ========================================= */

.main-navigation {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
}


/* =========================================
   MOBILE BUTTON
   ========================================= */

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 25px;
    height: 25px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
}

@media screen and (min-width: 767px) {
	
	.mobile-menu-footer {
		display: none;
	}
	
}

/* =========================================
   MOBILE
========================================= */


@media screen and (max-width: 767px) {

    .site-header-container {
        position: relative;
        min-height: 50px;
        height: 50px;
        padding: 3px 7px;
        box-sizing: border-box;
    }


    /* =====================================
       LOGO
    ===================================== */

    .site-logo img {
        width: 30px;
        height: 30px;
    }


    /* =====================================
       MENU DESKTOP NASCOSTO
    ===================================== */

    .main-navigation {
        display: none;
    }


    /* =====================================
       TRE PUNTINI
    ===================================== */

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1002;

        width: 30px;
        height: 30px;
    }


    /* =====================================
       MENU APERTO
    ===================================== */

    .site-header.menu-open .main-navigation {
        display: flex;
        flex-direction: column;

        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;
        height: auto;

        padding: 10px 15px 55px;

        box-sizing: border-box;

        background: #000;

        z-index: 1001;

        overflow-y: auto;
    }


    /* =====================================
       VOCI MENU
    ===================================== */

    .site-header.menu-open .main-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        width: 100%;
        margin: 0;
        padding: 0;

        gap: 8px;
    }

    .site-header.menu-open .main-menu li {
        width: auto;

        margin: 0;
        padding: 0;

        border: 0;
        list-style: none;
    }

    .site-header.menu-open .main-menu a {
        display: block;

        width: auto;
        padding: 0;

        color: #fff;
        text-decoration: none;

        font-size: 14px;
        line-height: 1.1;
        font-weight: 700;
    }


    /* =====================================
       FOOTER MENU
    ===================================== */

    .mobile-menu-footer {
        position: fixed;
        left: 0;
        bottom: 0;

        display: flex;
        justify-content: space-between;
        align-items: center;

        width: 100%;
        height: 40px;

        padding: 0 15px;

        box-sizing: border-box;

        background: #000;

        z-index: 1003;
    }

    .mobile-menu-footer a {
        color: #fff;
        text-decoration: none;

        font-size: 10px;
        line-height: 1;

        font-weight: 700;
    }

    .mobile-menu-live {
        text-align: left;
    }

    .mobile-menu-youtube {
        text-align: right;
    }


    /* =====================================
       TRASFORMA I 3 PUNTINI IN X
    ===================================== */

    .site-header.menu-open .menu-toggle span {
        position: absolute;

        width: 16px;
        height: 1px;

        border-radius: 0;
        background: #fff;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: rotate(45deg);
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        display: none;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: rotate(-45deg);
    }

}