body {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
    color: #f0f0f0;
}

.grid-me {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 35vw 55vw;
    margin-left: 2vw;
    margin-right: 2vw;
}

#map {
    grid-column: 0;
}

.navbar {
    background: linear-gradient(to right, #ffffff, #333333);
    overflow: hidden;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.navbar-brand {
    color: white;
    text-decoration: none;
    font-size: 24px;
    order: 1;
}

.navbar-links a {
    color: #f0f0f0;
    text-decoration: none;
    margin-left: 15px;
    padding: 10px;
}



.contact-section {
    padding: 40px 20px;
    min-width: 35vw;
    margin: 0 auto;
    margin-top: 20px;
    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;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #314141;
    border-radius: 6px;
}

.contact-item strong {
    flex: 1;
    color: #03cf69;
}

.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: #00994d;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(135deg, #2c2c2c, #454545);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #03cf69;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 10px;
    font-weight: bold;
    color: #f0f0f0;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #03cf69;
    background-color: #1e1e1e;
    color: #f0f0f0;
}

.contact-form button {
    margin-top: 20px;
    padding: 10px;
    background-color: #03cf69;
    border: none;
    color: #1e1e1e;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #00994d;
}

@media (max-width: 1000px) {
    #map {
      grid-column: 1;
    }
    .grid-me{
        align-items: center;
        justify-content: center;
    }
}

@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%;
        min-width: 80vw;
    }

    .MainPicture{
        height: 30vh;
    }

    h2 {
        font-size: 17px;
    }

    .contact-item strong{
        font-size: 14px;
    }

    .contact-item p {
        flex: 2;
        margin: 0;
        font-size: 0;
    }

    .header{
        background-color: rgb(46, 44, 44);
        position: fixed;
        width: 100%;
        box-shadow: 3px 3px 5px 0 #ee1b24;
        display: block;
    }

    .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);
    }

    #mapFrame {
        width: 70vw;
    }
}