

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-intro-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.site-header-wrapper{
    padding: 20px;
    background-color: #F6F5F2;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin: 0;
}
.blue-square {
    width: 20px;
    height: 20px;
    background-color: #83B4FF; 
    margin-right: 10px;
}

.name-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #1A2130; 
    margin-right: 10px; 
}

.name-text a {
    color: #1A2130; 
    text-decoration: none;
}

.name-text a:hover {
    color: #83B4FF; 
}

.slash {
    margin: 0 10px;
    color: #1A2130; 
}

.role-text {
    font-size: 1.2em;
    color: #1A2130; 
}

.main-nav {
    flex: 2;
    text-align: right;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.main-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.main-nav ul li {
    display: inline;
    margin-right: 10px;
}

.main-nav ul li a {
    color: #1A2130; 
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease; 
}

.main-nav ul li a:hover {
    color: #83B4FF; 
    text-decoration: none;
}

/* Responsive Design für mobile Geräte */
@media (max-width: 820px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .slash{
        margin-right: 10px;
        margin-left: 10px;
    }

    .header-intro-text {
        flex-wrap: wrap;
        align-items: flex-start;
        margin-bottom: 10px;
    }

    .name-text, .role-text {
        font-size: 1.2em;
        margin: 0 auto;
    }

    .main-nav {
        width: 100%;
        text-align: left;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .main-nav ul li {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .main-nav ul li a {
        display: block;
        padding: 10px 0;
        width: 100%;
    }
}
