/* KEEP */

html {
    padding-left: 10vw;;
    padding-right: 10vw;
    scroll-behavior: smooth;
}

.header {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    margin-top: 5px;
    height: 100px;
    justify-content: space-between; /* Elemente gleichmäßig verteilen */
    align-items: center; /* Elemente vertikal zentrieren */
}

/* Navbar container */
.navbar {
    float: left;
    overflow: hidden;
    font-size: 20px;
    font-family: Roboto, sans-serif;
    font-weight: bold;
}

/* Links inside the navbar */
.navbar a {
    float: left;
    color: #000;
    text-align: center;
    margin-right: 25px;
    text-decoration: none;
    overflow: hidden;
    border-bottom: 3px solid transparent;
}

/* Header logo */
.header-logo {
    height: 100px;
    width: auto;
    border-width:0px;
    border:0px;
}

/* Social network logo */
.social-logo-container { 
    width: 64px;
}

.social-logo {
    height: 32px;
    width: auto;
    border: hidden;
    -webkit-transition-property: all; 
    -webkit-transition-duration: 0.3s; 
    -webkit-transition-timing-function: ease; 
}

.social-logo:hover{
    height: 48px;
    transform: scale(1);
}

/* Hero image and text */
.hero-container {
    position: relative;
}

.hero-image-background { 
    position: relative;
    z-index: 0;
}

.hero-image-background img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-image-text-container {
    position: absolute;
    width: 55vw;
    top: 2vw;
    left: 2vw;
    background-color:transparent;
    padding: 2.4vw;
    font-family: Roboto, sans-serif;
    color: #ffffff;
    text-shadow: 2px 4px 3px rgba(0,0,0,0.8);
}

.hero-image-text-container h1{
    font-size: 6.5vw;
    line-height: 6.8vw;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-image-text-container h2{
    font-size: 3.0vw;
    line-height: 3.5vw;
    font-weight: 700;
    text-transform: uppercase;
    padding-top: 1.5vw;
}

.hero-image-text-container p{
    font-size: 1.8vw;
    line-height: 2.4vw;
    font-weight: 300;
    padding-top: 1.5vw;
}

.content-container {
    margin-left: 6vw;
    margin-right: 6vw;
}

.block-container {
    font-family: Roboto, sans-serif;
    padding-top: 2vw;
    padding-bottom: 2vw;
    padding-left: 0px;
    padding-right: 0px;
}

.block-container-text {
    padding-left: 2.2vw;
    padding-right: 2.2vw;
}

.block-container h2 {
    font-size: 3.8vw;
    line-height: 4.3vw;
    font-weight: 700;
    color: rgb(61, 61, 54);
}

.block-container p {
    font-size: 1.8vw;
    line-height: 2.4vw;
    font-weight: 300;
    color: rgb(87, 80, 68);
}

.block-container a:link {
    text-decoration: none;
}

.block-container a:hover {
    color: rgb(61, 61, 54);
    text-decoration: underline;
}

.block-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.block-container video {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

#mapWrap {
    width: 100%;
    height: 40vw;
    border-radius: 20px; 
}   

.divider {
    padding: 1vw;
}

.footer-divider {
    padding: 6vw;
}

.footer {
    padding-top: 20px;
    margin-bottom: 20px;
    color: rgb(47, 50, 52);
    font-family: Roboto, sans-serif;
    font-size: 1.8vw;
    font-weight: 300;
    line-height: 2.4vw;
    text-align: center;
    border-top: rgb(47, 50, 52) solid 1px;
}

.footer a:link {
    margin-left: 10px;
    margin-right: 10px;
    text-decoration: none;
}

.footer a:hover {
    color: rgb(61, 61, 54);
    text-decoration: underline;
}

/* EXPERIMENT: NAV BAR (NOT WORKING YET)*/
nav ul{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav li > ul{
    display : none;
    margin-top:1px;
    background-color: #bbb;
}

/*
    COLORS:
    Hauptfarbe: RAL 7013 Braungrau → rgb(87, 80, 68);
    Dekor 1: RAL 9004 Signalschwarz → rgb(43, 43, 44);
    Dekor 2: RAL 6015 Schwarzoliv → rgb(61, 61, 54);
    Dekor 3: RAL 7021 Schwarzgrau → rgb(47, 50, 52);
*/
