/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}




/* rosa: #fcccf3 */
body{
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    /* margin-left: 40px;
    margin-right: 40px; */
}
h1 {
    font-size: 3em;
    color: #fcccf3;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}
h2 {
    font-size: 2.2em;
    color: #fcccf3;
    margin-top: 0.8em;
    margin-bottom: 0.8em;
}
p {
    font-size: 1.3em;
    margin-bottom: 1.4em;
    line-height: 1.3em;
}

div span {
    font-size: 1.1em;
    margin-bottom: 0.2em;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #fcccf3;
}

#menu {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    position: fixed;
    bottom: 0px;
    z-index: 1001;
    background-color: rgba(0,0,0,0.75);
    padding: 10px 0px 0px 0px;
    height: 40px;
}

#ma_logo {
    width: 600px;
    max-width: 80%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: max-width 0.1s ease-out, top 0.1s ease-out 0.1s, left 0.1s ease-out 0.1s, transform 0.1s ease-out 0.1s;
    z-index: 1000;
}

#ma_logo:hover .rosa {
    fill: #fcccf3;
}

#ma_logo.scrolled {
    max-width: 220px;
    top: 40px;
    transform: translate(-50%, 0);
}

#ma_logo.scrolled.moved {
    left: 40px;
    transform: translate(0, 0);
}

/* svg css */
.svg_white {
   fill: #fff;
}


.fullWidth {
    width: 100%;
}


#content {
    padding: 20px;
    /* max-width: 800px; */
    margin: 0 auto;
    margin-top: 60svh;
    text-align: left;
    padding-left: 220px;
}

.section {
    margin-top: 30svh;
    margin-bottom: 40svh;
}

#contact {
    padding-top: 35svh;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

}
#about {
    padding-top: 30svh;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
#imprint {
    padding-top: 30svh;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

}

.contact-grid {
    display: grid;
    grid-template-columns: 75px 30px auto;
    gap: 10px;
    font-size: 1.2em;
}

.about-grid {
    display: grid;
    grid-template-columns: 250px 30px auto;
    gap: 10px;
    font-size: 1.2em;
}

.font-rosa {
    color: #fcccf3;
}
.right {
    text-align: right;
}
.mt-2 {
    margin-top: 2em;
}

/* Burger Menu */
.burger-toggle, .burger-label, .burger-menu {
    display: none;
}

@media (max-width: 849px) {

    #content {
        padding-left: 20px;
    }
    #contact {
        padding-top: 15svh;
    }
    #about {
        padding-top: 10svh;
        max-width: 100%;
    }
    #imprint {
        padding-top: 15svh;
    }

    #ma_logo {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 80%;
        position: absolute;
    }
    #ma_logo.scrolled {
        max-width: 220px;
        top: 40px;
        transform: translate(-50%, 0);
    }

    #ma_logo.scrolled.moved {
        left: 50%;
        transform: translate(-50%, 0);
    }
    #menu {
        display: none;
    }
    .burger-toggle, .burger-label, .burger-menu {
        display: block;
    }

    .burger-toggle {
        display: none;
    }

    .about-grid {
        grid-template-columns: 20px auto;
    }
    .about-grid > *:nth-child(3n+1) {
        grid-column: 1 / -1;
    }

    .burger-label {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1002;
        font-size: 2em;
        cursor: pointer;
        color: #fff;
        background: rgba(0,0,0,0.5);
        padding: 10px;
        border-radius: 5px;
    }

    .burger-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        background: rgba(0,0,0,0.9);
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .burger-toggle:checked + .burger-label + .burger-menu {
        transform: translateX(0);
    }

    .burger-menu ul {
        list-style: none;
        padding: 100px 20px 20px;
        margin: 0;
        text-align: center;
    }

    .burger-menu li {
        margin: 20px 0;
    }

    .burger-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 1.5em;
        display: block;
        padding: 10px;
        transition: background 0.3s;
    }

    .burger-menu a:hover {
        background: #fcccf3;
        color: #000;
    }
}