/* imports */
@import "variables.css";
@import "reset.css";
@import "typography.css";
@import "layouts.css";
@import "components.css";
@import "galerie.css";

/* theme */

html {
    font-size: 16px;
}

body {
    font-size: 1rem;
    padding: 1rem;
    max-width: 1350px;
    margin: 0 auto;
    line-height: 1.5;
}

@media screen and (min-width: 768px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

header h1 {
    margin-bottom: 0;
    padding-bottom: 0;
}

.bild {
    max-width: 180px;
}

.bild img {
    border-radius: 10px;
}

blockquote {
    font-size: 1rem;
    margin: 20px auto;
    font-style: italic;
    color: #555555;
    padding: 1rem 10px 1rem 30px;
    border-left: 8px solid #3498db;
    line-height: 1.6;
    position: relative;
    background: #ffffff;
    /* box-shadow: 1rem 1rem #eeeeee; */
    -webkit-box-shadow: 5px 5px 15px 5px #B8B8B8;
    box-shadow: 5px 5px 15px 5px #B8B8B8;
}
blockquote::before {
    content: "\201C";
    color: #3498db;
    font-size: 3rem;
    position: absolute;
    left: 10px;
    top: -10px;
}

blockquote::after{
  content: '';
}

blockquote span{
  display:block;
  color:#333333;
  font-style: normal;
  font-weight: bold;
  margin-top:1rem;
}

nav.hauptnavigation {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 1rem 0;
}

.content {
    display: block;
    margin: 2rem 0;
}

@media screen and (min-width: 768px) {
    .content {
        display: flex;
        justify-content: space-between;
    }
    
    main {
        max-width: 70%;
    }
    
    aside {
        max-width: 30%;
        border-left: 2px solid #eeeeee;
        border-bottom: 0px;
    }
}

main {
    padding: 1rem;
}

aside {
    padding: 1rem;
    border-bottom: 2px solid #eeeeee;
}

footer {
    background: #444444;
    color: #ffffff;
}

.impressum {
    max-width: 1350px;
    margin: 0 auto;
    padding: 1rem;
}

/* Responsive Container */
    .responsive-video {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    }

    /* iFrame skaliert mit dem Container */
    .responsive-video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Styling für den Consent-Bereich */
    .video-consent p {
        margin: 0 0 10px;
        font-size: 14px;
        color: #333;
    }

    .video-consent button {
        padding: 10px 20px;
        background-color: #007BFF;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 14px;
        border-radius: 5px;
    }

    .video-consent button:hover {
        background-color: #0056b3;
    }