/* HEADER */
body 
{
    margin: 0;
}

/* HEADER CONTAINER */
.headline-container 
{
    z-index: 1;
    position: relative;
    height: 70px;
    width: 100%;
    margin-bottom: 30px;
}

.headline-container::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    z-index: -1;
    margin-left: calc(-50vw + 50%);
}

/* Navbar Styling */
.navbar
{
    width: 100%;
    padding: 15px;
    background-color: #dddddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Links */
.navbar-nav 
{
    display: flex;
    left: 20px;
    flex: 1;  
    align-items: center; 
}

.nav-item 
{
    color: #ffffff; 
    font-size: 16px;
    font-weight: 600;
    margin-right: 30px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Hover-Effekt für Navbar-Links */
.nav-item:hover 
{
    color: #3498db; /* Blaue Farbe bei Hover */
    text-decoration: none;
}

/* Container für Navbar */
.container-fluid, .container
{
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Navbar Toggler */
.navbar-toggler 
{
    height: 40px;
    width: 40px;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus
 {
    outline: none;
    /* border-color: #ffffff; */
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* Hamburger Icon (Toggler Icon) */
.navbar-toggler .navbar-toggler-icon 
{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.navbar-toggler .navbar-toggler-icon span 
{
    height: 3px;
    /* background-color: #ffffff; */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Navbar Toggler Hover-Effekt */
.navbar-toggler:hover 
{
    background-color: rgba(255, 255, 255, 0.1);
    /* border-color: #ffffff; */
}

@media screen and (max-width: 768px) 
{
    .navbar-toggler 
    {
        height: 35px;
        width: 35px;
    }

    .navbar-toggler .navbar-toggler-icon 
    {
        width: 30px;
    }
}

/* LOGO STYLES */
.helseLogo img 
{
    margin-right: 50px;
    height: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

/* Hover-Effekt für das Logo */
.helseLogo img:hover 
{
    transform: scale(1.04);
}

@media (max-width: 768px) 
{
    .helseLogo img 
    {
        height: 32px !important;
    }
}

/* BUTTON (LANGUAGE BUTTON) */
.btn-group-language 
{
    margin-left: auto;
    z-index: 999;
    position: absolute;
    right: 0;
    margin-right: 150px;
}

@media (max-width: 768px) 
{
    .btn-group-language 
    {
        margin-right: 80px !important;
        margin-top: 1px;
    }
}

/* BUTTON STYLE */
.btn-primary
{
    width: 60px;
    height: 40px;
    margin-top: 12px;
    color: #2c3e50;
    background-color: #dddddd; 
    border-color: #dddddd;
    transition: 0.4s;
}

.btn-primary:hover 
{
    background-color: #ecf0f1;
    border-color: #bdc3c7;
}

.btn-primary:focus 
{
    background-color: #ffffff;
}

.btn-primary:active 
{
    background-color: #ffffff !important;
}

/* Icons (EN, DE ) Button */
.enIcon, .deIcon
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 20px;
}

/* Responsive Anpassungen */
@media (max-width: 991px) 
{
    .btn-group-language 
    {
        margin-right: 80px !important;
        margin-top: 5px;
    }
}

@media (max-width: 768px) 
{
    .btn-group-language
    {
        margin-right: 80px !important;
        margin-top: -2px;
    }

    /* Navbar Items für kleinere Bildschirme */
    .navbar-nav 
    {
        text-align: center;
    }

    .navbar-nav .nav-item 
    {
        margin-right: 0; /* Keine Abstände auf kleineren Geräten */
    }

    .btn-primary
    {
        width: 60px;
        height: 35px;
        margin-top: 12px;
        color: #2c3e50; 
        transition: 0.4s;
    }

    .enIcon, .deIcon 
    {
        display: block;
        margin-left: auto;
        margin-right: auto;
        height: 18px;
    }


    .helseEnBtn, .helseDeBtn
    {
        margin-right: -50px;
    }

}
