/* Farbeinstellungen */
:root {
    /* Basics */
    --main-bc: rgba(59, 40, 23, 0.5);
    --main-fc: rgb(210, 189, 162);
    --main-border-light: rgb(210, 189, 162);
    --main-border-dark: rgb(90, 68, 36);
    --hover-darken: rgba(19, 13, 7, 0.85);
    --hover-lighten: rgb(251, 232, 208);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
a:visited,
a:active,
a:focus {
    color: bisque;
    text-decoration: none;
}

a:hover {
    color: #FFCC00;
}

/* ::: H T M L ::: */
html,
body {
    /* self */
    width: 100%;
    height: 100%;
    background-color: white;

    /* content */
    color: black;
}

/* ::: W R A P P E R ::: */
#wrapper {
    /* self */
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg_main.png);
    background-size: cover;
    background-position: center center;

    /* content */
    display: flex;
    flex-wrap: nowrap;
    /* flex-direction: column; */
    color: var(--main-fc-dark);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

#wrapper {
    overflow: hidden; 
    overflow: clip;
}

/* ::: C O L _ L E F T ::: */
#col_left {
    /* self */
    flex: 0 0 40%;

    /* content */
    display: flex;
    justify-content: center;
}

#info_container {
    /* self */
    width: 60%;
    height: 100%;
    top: 0%;
    background-color: var(--main-bc);
    border-left: 1px solid rgb(210, 189, 162);
    border-right: 1px solid rgb(210, 189, 162);
    padding: 32px 32px 96px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    /* content */
    display: flex;
    flex-direction: column;
    justify-content: last baseline;
    row-gap: 32px;
    color: var(--main-fc);
    font-size: 1.2em;
    text-shadow: 0 0 2px rgba(17, 17, 17, 0.4);
    transition: background-color 1s ease, color 1s ease;
}

#info_container:hover {
    background-color: var(--hover-darken);
    color: rgb(251, 232, 208);
}

#info_location {
    position: relative;
    width: 100%;
    min-height: 30%;
    background-image: url(../img/location_img.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    border: 3px solid rgba(67, 68, 18, 0.7);
    box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.7);
    transition: background-image 1s ease;
}

#info_location a{
    position:absolute;
    display:block;
    bottom:5px;
    right:10px;
    margin-left:12px;
    color:#4C494A;
    font-size: 0.7em;
}

#info_location:hover {
    background-image: url(../img/location_card.png);
}

#info_contact a,
a:visited,
a:focus,
a:active {
    transition: color 1s ease;
}

#social_media {
    /* self */
    width: 100%;

    /* content */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    color: rgb(210, 189, 162);
    z-index: 10;
}

#social_media ul {
    list-style: none;
    display: inline;
}

#social_media li {
    display: inline-block;
}

#social_media a {
    margin-top: 0em;
    padding: 0 2em;
}

#social_media img:hover{
box-shadow: 0 0 60px rgb(223, 252, 254);
}

#social_media img {
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius:10px;
    transition: box-shadow 0.5s ease;
}

#info_logos {
    /* height: inherit; */
    margin-top: auto;

    display: flex;
    flex-direction: column;
    row-gap: 1em;
    justify-content: flex-end;
    align-items: center;
}

#info_logos img {
    max-width: 100%;
}

.visdp {
    font-size: 0.8em;
}

.mw_logo {
    display: block;
    margin: 0 auto;
    width: 50%;
    border-radius: 6px;
    border: 4px solid rgba(255, 251, 248, 0.4);
    box-shadow: 0 0 20px rgba(175, 155, 118, 0.8);
    transition: box-shadow 0.5s ease;
}

.mw_logo:hover {
    box-shadow: 0 0 60px rgb(223, 252, 254);
}

.eu_logo {
    width: 100%;
    margin-top: auto;
    border-radius: 10px;
    border: 8px solid #4C494A;
    border: 8px solid transparent;
    box-shadow: 0 0 10px rgba(175, 155, 118, 1);
    aspect-ratio: 600 / 80;
}

/* ::: C O L _ M I D D L E ::: */
#col_middle {
    flex: 0 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#flyer_dl {
    height: 20%;
    width: auto;
    aspect-ratio: 1 / 1;
    background: center/contain no-repeat url("../img/flyer_dl.svg");
    background-size: 90% 70%;
    background-color: var(--main-bc);
    border-radius: 9999px;
    border: 1px solid var(--main-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

#flyer_dl a {
    position: relative;
    border: 0px solid rgba(210, 189, 162, 0.5);
    width: 98%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Orbitron", sans-serif;
    font-size: 1.4em;
    font-weight: bold;
    color: var(--main-border-light);
    text-transform: uppercase;
    transition: border 1s ease, color 1s ease;
    overflow: hidden;
}

#flyer_dl a::after {
    content: "Download";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hover-lighten);
    opacity: 0;
    transition: opacity 0.6s ease;
}

#flyer_dl a:hover {
    color: transparent;
    border: 10px solid rgba(210, 189, 162, 1);
}

#flyer_dl a:hover::after {
    opacity: 1;
}

/* ::: C O L _ R I G H T ::: */
#col_right {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
}

#about_container {
    /* self */
    width: 70%;
    height: 75%;
    top: 0;

    /* content */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    row-gap: 5%;
}

#banner {
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 260;
    border-radius: 6px;
    box-shadow: inset 0 0 32px rgba(0, 0, 0, .6);
    background: center/contain no-repeat url("../img/mk_banner.svg");
    transition: background-image 2s ease;
}

#banner:hover {
    background-image: url("../img/mk_banner_hover.svg");
}

#about {
    /* self */
    width: 100%;
    height: 60%;
    top: 32%;
    background-color: var(--main-bc);
    border-radius: 10px 10px 50px 50px;
    border: 1px solid rgb(210, 189, 162);
    padding: 32px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);

    /* content */
    display: flex;
    flex-direction: column;
    color: var(--main-fc);
    font-size: 1.2em;
    text-shadow: 0 0 2px rgba(17, 17, 17, 0.4);
    transition: background-color 1s ease, color 1s ease;
    overflow: auto;
}

#about p {
    margin: 0 0 24px 0;
}

#about:hover {
    background-color: var(--hover-darken);
    color: rgb(251, 232, 208);
}

/* ::: F O O T E R ::: */
#sub_menu {   
    /* self */
    position:absolute;
    bottom:0px;
    right:0px;
    width: auto;
    min-height: 80px;
    height: fit-content;

    /* content */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sub_menu ul {
    list-style: none;
    margin-right: 48px;
}

#sub_menu li {
    display: inline;
    padding: 0;
}

#sub_menu a {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    line-height: 1;
    color: rgb(234, 190, 137);
    text-decoration: none;
    padding: 0 8px;
    transition: color 1s ease;
}

#sub_menu a:hover {
    color: rgb(241, 230, 217);
    text-shadow: 0 0 2px rgba(17, 17, 17, 0.8);
}


/* ::: K L A S S E N ::: */
.start_title {
    font-size: 1.7em;
    font-weight: bold;
}

.terracotta {
    color: #EF8574;
}