/* Variabler 
------------------------------- */
/* :root {
    --primary: #FF6816;
    --secondary: #FF9A00;
    --white: #fff;
    --black: #000;
    --hover-effect: #FF3D00;
} */

/* header */
.site-header {
    background: black;
    width: 100%;
    display: flex;
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Header Links */
.site-header a {
    color: var(--primary);
    text-decoration: none;
}

/* navigation */
#site-navigation {
    background-color: black;
    height: 102px;
    display: flex;
    /* Jennifers ändring */
    top: 0;
    /* ---------- */
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1000;
}

/* Nav logo */
.site-branding {
    padding: 0px;
    padding-left: 20px;
    height: 102px;
    width: 111px;
    display: flex;
    align-items: center;
    background-color: black;
    z-index: 1050;
    position: fixed;
    top: 0;
}

/* navigation links */
.nav-menu {
    display: flex;
    gap: 4rem;

}

.nav-menu li {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--primary);
    text-decoration: none;
    font-size: 32px;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

/* hover effekt nav links */
.nav-menu li a:hover {
    color: var(--hover-effect);
    text-decoration: underline;
}

/* ------------------ MEDIA QUERIES ------------------ */

/* Tablet/mobile */
@media (max-width: 1024px) {


    /* navigation */
    #site-navigation {
        flex-wrap: wrap;
        gap: 0px;
        background-color: black;
        /* Jennifers ändring */
        top: 0;
        /* ------------------ */
    }

    /* navigation links */
    .nav-menu {
        text-align: center;
        width: 100%;
        background-color: black;
        display: none;

    }

   .main-navigation.toggled .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 20px;
}

    /* nav logo */
    .site-branding {
        width: 90px;
       
    }

     .custom-logo {
        margin-left: 20px;
    }

    /* menu toggle button */
    .menu-toggle {
        margin-left: auto;
        margin-right: 20px;
        display: block;
    }

   
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

}