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

body {
    font-family: Arial, sans-serif;
}

/*header {
    background-color: #333;
    color: white;
    padding: 1px
}*/

header {
    background-color: #333;
    color: white;
    padding: 1px;
    position: fixed; /* Fixiert oben */
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 2px;
    z-index: 9999; /* Ganz nach vorn */
}


.navbar {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 10px;
}

.logo a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Insta */
.insta a {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 30px;
}

.insta img {
    max-height: 25px; /* Maximale Höhe des Logos */
    width: auto;      /* Proportionale Skalierung */
}

.insta img:hover {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 30px;
    padding-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6347;
}

/* Burger-Icon */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1000;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s;
    z-index: 1000;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0px;
        background-color: #333;
        position: absolute;
        top: 15px; /* Höhe der Navbar */
        right: 0;
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .logo {
        display: none;
        justify-content: center;
        align-items: center;
        padding-left: 10px;
    }
    
    .logo a {
        text-decoration: none;
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
    }
    
    .logo img {
        max-height: 30px;
        width: auto;
    }

    .burger {
        display: flex;
        position: relative;
        padding: 10px;
        z-index: 1000;
    }
}
