/* lato-300 - 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: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/lato-v25-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-300italic - 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: 'Lato';
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/lato-v25-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-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: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-italic - 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: 'Lato';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/lato-v25-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-700 - 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: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-700italic - 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: 'Lato';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/lato-v25-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    font-family: Lato, sans-serif;
    margin: 0;
    background: #f5f5f5;
    font-size: 20px;
}

#fullpage-container {
    position: relative;
    height: calc(100vh - 140px);
    width: 100%;
    margin-top: 80px;
    margin-bottom: 60px;
}

#fullpage-container #images{
    background-color: aquamarine;
    width: 100%;
    height: 100%;
    background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

/* Fixed header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #f5f5f5;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    padding-top: 20px;
    z-index: 1000;
}

nav {
    display: flex;
    gap: 20px;
}

a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}

nav a {
    color: #111;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
}

nav a:hover,
footer a:hover {
    text-decoration: none;
    text-shadow: 0 0 1px #666;
}

nav a.disabled:hover,
footer a.disabled:hover {
    text-decoration: line-through;
    text-shadow: 0 0 1px #666;
    color: #888;
}

/* Fixed footer */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #f5f5f5;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    z-index: 1000;
    padding: 0 20px;
}

footer a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
}

footer #external a {
    font-size: 20px;
}

h1 {
    margin-bottom: 8px;
}

.subtitle {
    margin-bottom: 20px;
    color: #333;
}

#logo {
    font-size: 4rem;
    text-transform: uppercase;
}

/* Image carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding-bottom: 10px;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel img {
    height: 200px;
    flex-shrink: 0;
    border-radius: 6px;
}

.controls {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

button {
    padding: 6px 12px;
    cursor: pointer;
}

/* Videos */
.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

video {
    width: 480px;
    max-width: 100%;
    background: black;
}

.container-wide{
    position: relative;
}

#infofenster {
    background-color: #f5f5f5;
  position: absolute;
  right: 50px;
  top: 50px;
  padding: 30px;
  font-size: 18px;
  text-transform: uppercase;
  line-height: 30px;
}

#infofenster .ig-icon a {
    font-size: 20px;
}

.impressum-container {
    max-width: 960px;
    margin: 0 auto;
    margin-top:40px;
}

.impressum-content {
    margin-top: 80px;
}

#footermail a {
    text-transform: lowercase;
    font-size: 18px;
}


@media screen and (min-width: 981px) {
  #logo {
    font-size: 2rem;
  }
}