#grid-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-areas:
        "head head"
        "menu menu"
        "center right"
        "foot foot";
    grid-template-columns: 3fr 3fr;
    gap: 1.2em;
    padding: 1em;
    background-color: #420b0b;
    box-sizing: border-box;
}


header {grid-area: head;}
nav {grid-area: menu;}
#col_1 {grid-area: center;}
#col_2 {grid-area: right;}
footer {grid-area: foot;}

#grid-container > * {
    background: rgba(103, 156, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.2em;
    border-radius: 6px;
    color: #d9f1ff;
    font-family: "Segoe UI", sans-serif;
}

header {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    background: rgba(103, 156, 255, 0.75);
}

nav {
    display: flex;
    justify-content: center;
    gap: 2.5em;
    font-size: 2rem;
    padding: 1em;
    background: rgba(103, 156, 255, 0.75);
}

nav a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

#col_1 {
    background: rgba(103, 156, 255, 0.75);
    min-width: 0;
}

#col_2 {
    background: rgba(103, 156, 255, 0.75);
    min-width: 0;
}

footer {
    text-align: center;
    padding: 1em;
    background: rgba(103, 156, 255, 0.75);
}

@media screen and (max-width: 992px) {
    #grid-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "menu"
            "center"
            "right"
            "foot";
    }
}

@media screen and (max-width: 600px) {
    #grid-container > * {
        padding: 0.8em;
    }

    nav {
        flex-direction: column;
        gap: 0.5em;
    }
}

.mama_logo {
    width: 20vw;  
    max-width: 190px;
    min-width: 60px;
    height: auto;
    position: absolute;
    top: 11px;
    right: 9px;
}

.maps {
    width: 100%;  
    max-width: 500px;
    height: 500px;
}

.contactstuff {
    position: static;
}