body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: lighter;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
}

.navbar {
    position: absolute;
    width: 100%;
    background: linear-gradient(to right, #ffffff, #333333);
    overflow: hidden;
    display: block;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.navbar-brand {
    color: white;
    text-decoration: none;
    font-size: 24px;
    padding-left: 25%;
}

video{
    margin-top: 3vh;
}

.navbar-links a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    display: inline-block;
}

.navbar-links a:hover {
    background-color: #ddd;
    color: black;
}

.content {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.text-box {
    flex: 1 1 100%;
    background-color: rgba(173, 216, 230, 0.5);
    padding: 20px;
    border-radius: 10px;
}


.box {
    flex: 1 1 45%;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box {
    font-size: 18px;
    font-weight: bold;
}

.contact-section {
    padding: 40px 20px;
    max-width: 40vw;
    margin: 0 auto;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c2c2c, #454545);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #444;
    border-radius: 6px;
}

.contact-item strong {
    flex: 1;
    color: green;
}

.contact-item p {
    flex: 2;
    margin: 0;
}

.copy-btn {
    background-color: green;
    border: none;
    color: #1e1e1e;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: green;
}

.burger-icon {
    align-self: center;
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    display: none;
}

/* Einzelne Striche des Hamburger-Icons */
.burger-icon div {
    height: 4px;
    background-color: black;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar-links li{
    text-decoration: none;
    list-style: none;
}

.navbar-links{
    display: flex;
}

.MainPicture{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

footer {
    grid-area: footer;
    text-align: center;
    padding: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    bottom: 0%;
} 

@media (max-width: 813px){
    .burger-icon{
        display: flex;
    }

    .navbar-links{
        display: none;
    }

    .navbar-brand{
        padding-left: 5%;
    }

    .navbar-container{
        display: block;
    }

    .contact-section{
        max-width: 80%;
    }

    .MainPicture{
        height: 30vh;
    }

    .header{
        background-color: rgb(46, 44, 44);
        position: fixed;
        width: 100%;
        box-shadow: 3px 3px 5px 0 #ee1b24;
        display: block;
    }

    video{
        margin-top: 0vh;
    }

    .important_stuff{
        justify-content: space-between;
        width: 100%;
    }
    
    .header ul{
        display: none;
    }
    
    .navbar-links.active {
        display: grid;
        justify-content: center;
        align-items: center;
    }

    .navbar-links li{
        width: 80vw;
        text-align: center;
    }

    .navbar-links li:hover{
        cursor: pointer;
    }

    .important_stuff .menu-btn:checked ~ .burger-icon #line1 {
        transform: rotate(45deg) translate(8px, 9px);
    }
      
    .important_stuff .menu-btn:checked ~ .burger-icon #line2 {
        opacity: 0;  /* Mittlerer Strich verschwindet */
    }
      
    .important_stuff .menu-btn:checked ~ .burger-icon #line3 {
        transform: rotate(-45deg) translate(8px, -11px);
    }
    

    li{
        align-self: center;
    }
    
    .header li a{
        display: block;
        padding: 20px 20px;
        text-decoration: none;
        /*Rechte Seite Border*/
        border-right: 1px solid #ee1b24;
    }
    
    .logo{
        width: 60px;
    }
    
    .header li a:hover{
        background-color: rgb(44, 42, 42);
    }
}
