/* comfortaa-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Comfortaa';
  font-style: normal;
  font-weight: 400;
  src: url('comfortaa-v45-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    scroll-behavior: smooth;
}
body {
    font-family: Open Sans, sans-serif;
    font-size: 18px;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}
body, section {
    max-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

h1 /* Titel im Hero */ {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0 5% 5% 0;
    color: #fff;
}
h2 {
    font-size: clamp(1.4rem, 2vw, 3rem);
    margin: 1rem 0;
    color: #013e7f;  
    font-style: italic;
}
h3 {
    font-size: clamp(1rem, 1.5vw, 1.6rem);
    margin: 1rem 0;
}
h1, h2, nav {
    font-family: Comfortaa, sans-serif;
}
p {
    margin: 0.5rem 0;
}
img {
    max-width: 100%
}

header {
    background: linear-gradient(to right, #002654, #FFFFFF, #CE1126); /* Blau, Weiß, Rot */
    color: white;
    padding: 0;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
}

header {
    position: relative;
    color: white;
    text-align: center;
}

.header-photo {
    height: calc(100vh - 60px);
    max-height: 100%;
    font-size: 1.8em;
    padding: 0 10px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2)), url('header1.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    background-color: rgba(0, 85, 164, 0.7); /* halbtransparenter Blau-Ton */
}

.navigation li a {
    color: white;
    text-decoration: none;
}

.navigation li a:hover {
    text-decoration: underline;
}
/* Hamburger-Menü */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.hamburger div {
    background-color: white;
    height: 4px;
    border-radius: 2px;
}


section {
    padding: 20px;
    margin: 20px auto;
    max-width: 960px;
    background-color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section#konzerttermine, #videocontainer {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
}
section#konzerttermine div, #videocontainer video {
    width: 50%;
}
#konzerttermine ul {
    list-style-type: none;
    padding: 0;
}

#konzerttermine li {
    background-color: #CE1126;
    color: white;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
}
section#kontakt {
    margin-bottom: 100px;
}

footer {
    background-color: #002654;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    margin-top: 30px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .header-photo {
        height: 400px;
        background-position: center top;
        font-size: 1.5em;
    }
    section {
        padding: 15px 10px;
        margin: 5px;
    }
    .navigation {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 85, 164, 0.9);
        position: absolute;
        top: 60px;
        width: 100%;
        left: 0;
        padding: 10px 0;
        z-index: 1000;
    }
    .navigation.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    section#konzerttermine, #videocontainer {
        flex-direction: column;
    }
    section#konzerttermine div, #videocontainer video {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-photo {
        font-size: 1.2em;
    }
    section {
        padding: 10px 5px;
        margin: 3px;
    }
}
