/*================================
VARIABLEN
==================================*/
:root {
  --text-standard: #707070;
  --text-dunkel: #4b4b4b;
  --text-weiß: #ffffff;

  --blau: #8eb2cc;
  --blau80: #a5c1d6;
  --blau40: #d2e0eb;
  --blau20: #e8f0f5;

  --gelb: #ffed85;
  --gelb20: #fffbe7;
}

/*================================
  Fonts
  ==================================*/
/* open-sans-500 - 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: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/open-sans-v40-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - 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: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/open-sans-v40-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-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: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/open-sans-v40-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* source sans pro */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/SourceSansPro-Regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/*================================
  BASICS
  ==================================*/
body {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: auto;
  padding: 0;
  color: var(--text-standard);
  font-family: "Source Sans Pro";
  font-size: 20px;
  line-height: 33px;
  overflow: visible;
}

main .content-wrapper {
  max-width: 1400px;
  margin: 86px auto 0 auto;
  padding: 0 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-standard);
  font-family: "Open Sans";
  font-weight: 700;
}

h1 {
  font-size: 50px;
  color: var(--blau);
  text-transform: uppercase;
  letter-spacing: 0.75px;
  text-align: center;
  margin-bottom: 3px;
}

h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 32px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 27px;
  margin-bottom: 0;
  margin-top: 0;
}

h5 {
  font-size: 25px;
}

p {
  margin-top: 0;
}

.subhead {
  font-size: 30px;
  font-weight: 400;
}
.center {
  text-align: center;
}

.text-center {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.button {
  text-decoration: none;
  color: var(--text-dunkel);
  font-weight: 700;
  margin: 32px auto 0 auto;
  background-color: var(--blau40);
  border: 4px solid var(--blau);
  border-radius: 36px;
  padding: 5px 40px;
  transition: all 0.5s ease-in-out;
}

.button:hover {
  background-color: var(--blau);
  color: var(--text-weiß);
}

.zeile {
  margin-bottom: 120px;
}

.trip.zeile {
  margin-bottom: 200px;
}

/*----- Lightbox ---*/

.uk-lightbox-toolbar {
  background: transparent;
}
.uk-lightbox {
  background: rgba(0, 0, 0, 0.85);
}

.uk-lightbox .uk-close,
.uk-position-center-right,
.uk-position-center-left {
  color: var(--text-weiß);
}

.uk-lightbox .uk-close:hover,
.uk-position-center-right:hover,
.uk-position-center-left:hover {
  color: var(--blau);
}

.uk-position-center-right polyline,
.uk-position-center-left polyline {
  stroke-width: 3;
}

.img-wrapper a img,
.gallery-wrapper a img,
.img a img {
  transition: all 0.2s ease-in-out;
}

.img-wrapper a:hover img,
.gallery-wrapper a:hover img,
.img a:hover img {
  transform: scale(1.01);
}

/*===========
Responsive Anspassung Basic
==============*/
@media (max-width: 768px) {
  html,
  body {
    touch-action: manipulation;
    overflow-x: hidden;
  }

  body {
    font-size: 18px;
    line-height: 28px;
  }

  main .content-wrapper {
    max-width: 617px;
    margin: 50px auto 0 auto;
  }

  h2,
  h3,
  h4 {
    margin-bottom: 16px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .button {
    font-size: 16px;
    padding: 8px 34px;
    border: 3px solid var(--blau);
  }
  .subhead {
    font-size: 24px;
  }
  .zeile {
    margin-bottom: 80px;
  }
  .trip.zeile {
    margin-bottom: 120px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
  main .content-wrapper {
    max-width: 452px;
    margin-top: 25px;
  }
  h2,
  h3,
  h4 {
    margin-bottom: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  .subhead {
    font-size: 18px;
  }
  .button {
    font-size: 14px;
    margin-top: 24px;
    padding: 4px 16px;
    border: 2px solid var(--blau);
  }
}

/*================================
  Header
  ==================================*/
.header-img {
  height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url(img/global/Bild_Header.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-header-img {
  height: 65vh;
  background-image: url(img/global/header-unterseite-cropped.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.header-logo-link {
  z-index: 1;
}
#header-logo {
  width: 350px;
  height: auto;
  align-self: center;
  margin-bottom: 60px;
  z-index: 1;
}

.nav-divider {
  position: absolute;
  bottom: -1px;
  width: 100%;
  z-index: 1;
}
.nav-divider-mobile {
  display: none;
  position: absolute;
  bottom: -1px;
  width: 100%;
  z-index: 1;
}

/*===========
Responsive Anspassung Header
==============*/
@media (max-width: 768px) {
  #header-logo {
    width: 350px;
  }
  .header-img {
    height: calc(100vh - 65px);
  }
  .sub-header-img {
    height: 50vh;
  }
}

@media (max-width: 630px) {
  .nav-divider {
    display: none;
  }
  .nav-divider-mobile {
    display: block;
  }
}
@media (max-width: 480px) {
  #header-logo {
    width: 300px;
  }
}

/*================================
  Navbar - Grundstruktur 
  ==================================*/
#navbar {
  background-color: var(--blau80);
  height: 90px;
  z-index: 1000;
}

#navbar .content-wrapper {
  max-width: 1400px;
  padding: 0 15px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-links {
  flex: 1;
}

.menu {
  flex: 1;
  text-align: center;
}

.login {
  flex: 1;
  text-align: right;
}
@media (max-width: 768px) {
  #navbar {
    height: 65px;
  }
}

/*===========
Nav - Logo
==============*/
#nav-logo {
  display: none;
  height: 70px;
  width: auto;
}
@media (max-width: 768px) {
  #nav-logo {
    padding: 10px 0;
  }
}

/*===========
menu
==============*/
.main-menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu > li {
  position: relative;
  padding: 15px;
}

.main-menu > li > a {
  text-decoration: none;
  color: var(--text-dunkel);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  padding: 4px 10px;
  margin-left: 5px;
  display: block;
  white-space: nowrap;
  display: inline-block;
  border: 2px solid transparent;
  border-radius: 36px;
  transition: all 0.3s ease-in-out;
}

.main-menu > .dropdown > a:after {
  content: " ";
  display: inline-block;
  width: 18px;
  height: 11px;
  background-image: url('data:image/svg+xml, <svg id="arrow-down" xmlns="http://www.w3.org/2000/svg" width="18" height="11.115" viewBox="0 0 18 11.115" ><path id="Icon_material-keyboard-arrow-down" data-name="Icon material-keyboard-arrow-down" d="M11.115,11.76,18,18.63l6.885-6.87L27,13.875l-9,9-9-9Z" transform="translate(-9 -11.76)" fill="%234b4b4b" /></svg>');
  transition: transform 0.3s ease;
  background-size: contain;
  background-repeat: no-repeat;
}
.main-menu a svg {
  margin-left: 5px;
  margin-bottom: 2px;
}

/*===========
DropDown
==============*/
.dropdown-menu {
  display: none;
  position: absolute;
  text-align: left;
  top: 100%;
  left: 22px;
  background-color: var(--blau40);
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 180px;
}

.dropdown-menu li {
  padding: 0 20px;
}

.dropdown-menu li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dunkel);
  padding: 5px 10px;
  display: block;
  transition: all 0.3s ease-in-out;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown li a:before {
  content: " ";
  display: inline-block;
  height: 13px;
  width: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z' fill='%234b4b4b'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

/*===========
Menu Hover
==============*/
.main-menu > li > a:hover {
  border: 2px solid var(--text-dunkel);
  border-radius: 36px;
}
.main-menu > li > a.active {
  border: 2px solid var(--text-dunkel);
  border-radius: 36px;
}

.main-menu > .dropdown:hover > a:after {
  transform: rotate(180deg);
}

/*===========
Dropdown Hover
==============*/
.dropdown li a:hover,
.dropdown li a:before:hover {
  color: var(--blau);
}

.dropdown li a:hover {
  color: var(--blau);
}
.dropdown li a:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z' fill='%238eb2cc'/%3E%3C/svg%3E");
}

/*===========
Sticky Menu
==============*/
.uk-active #nav-logo {
  display: block;
}
@media (max-width: 1100px) {
  .uk-active .login {
    width: fit-content;
    flex: none;
    padding: 0;
  }
  .uk-active .dropdown-menu {
    top: 60px;
  }
}
@media (max-width: 900px) {
  .dropdown-menu {
    left: 0;
  }
}
@media (max-width: 768px) {
  .dropdown-menu {
    top: 100%;
  }
}

@media (max-width: 630px) {
  .uk-active #nav-logo {
    padding: 13px 0;
  }
}

/*===========
Login
==============*/

#login {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dunkel);
  text-transform: none;
  margin-left: 5px;
  border: 2px solid var(--text-dunkel);
  border-radius: 50px;
  padding: 8px 15px;
  transition: all 0.5s ease-in-out;
}

#login svg {
  height: 20px;
  margin-bottom: 8px;
}

#login-icon,
#login-icon2 {
  transition: all 0.3s ease-in-out;
}

#login:hover {
  text-decoration: none;
  background-color: var(--text-dunkel);
  color: var(--text-weiß);
}

#login:hover #login-icon,
#login:hover #login-icon2 {
  fill: var(--text-weiß);
}

/*===========
Login MODAL
==============*/
.uk-modal-dialog {
  background-color: var(--blau20);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.uk-close {
  color: var(--text-dunkel);
}

.uk-close line {
  stroke-width: 2;
}
#modal-center h3 {
  color: var(--text-dunkel);
}

#modal-center svg {
  margin-bottom: 7px;
}

.uk-input {
  margin-bottom: 10px;
  border: 1px solid var(--text-dunkel);
}
.last-input {
  margin-bottom: 0;
}

.uk-input:focus {
  border: 2px solid var(--blau);
}

.login-btn {
  padding: 5px 28px;
  margin: 32px 0;
}

.login-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.login-links a {
  text-decoration: none;
  color: var(--text-standard);
}

.login-links a:hover {
  color: var(--text-dunkel);
}

/*================================
  Mobile Menu
  ==================================*/

.btn {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  height: 25px;
}

.btn > span {
  color: var(--text-dunkel);
}

.btn svg {
  transition: fill 0.3s ease-in-out;
}

.btn:hover svg {
  fill: var(--text-weiß);
}

.mobile-menu-off {
  background-image: url(img/logo/logo_travelwings_ohne-text.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--blau40);
  z-index: 1;
}

.mobile-menu-off::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--blau40);
  opacity: 0.8;
  pointer-events: none;
  z-index: -1;
}
.mobile-menu-off h3 {
  color: var(--text-dunkel);
}
.mobile-menu-off li a {
  color: var(--text-dunkel);
}

.mobile-nav-list {
  padding: 0;
}
.mobile-nav-list > li {
  margin: 10px 0;
}
.mobile-nav-list a {
  font-weight: 600;
  color: var(--text-standard);
  transition: all 0.3s ease-in-out;
}

.dropdown-mobile > li {
  margin: 5px 0 0 10px;
}

.dropdown-mobile li a:before {
  content: " ";
  display: inline-block;
  height: 13px;
  width: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z' fill='%234b4b4b'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.dropdown-mobile li a:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.mobile-nav-list .login {
  text-align: left;
  margin-top: 40px;
}
.mobile-login span {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

#login-mobile {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dunkel);
  text-transform: none;
  border: 2px solid var(--text-dunkel);
  border-radius: 50px;
  padding: 8px 15px;
  transition: all 0.3s ease-in-out;
}

#login-mobile svg {
  height: 20px;
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
}

.mobile-login :hover {
  text-decoration: none;
  background-color: var(--text-dunkel);
}
.mobile-login :hover span {
  color: var(--text-weiß);
}

.mobile-login :hover #login-icon,
.mobile-login :hover #login-icon2 {
  fill: var(--text-weiß);
}

#offcanvas-flip button line {
  stroke: var(--text-dunkel);
}
/*================================
  Sichtbarkeit Menu Mobile + Responsive Ansicht
  ==================================*/
@media (max-width: 1100px) {
  .uk-active .main-menu li {
    padding: 5px 0 0 20px;
  }
}

@media (max-width: 900px) {
  #login > span {
    display: none;
  }

  .uk-active .main-menu a {
    font-size: 16px;
  }
  .uk-active .main-menu li {
    padding: 5px 0;
  }
  .uk-active .main-menu a:after {
    height: 8px;
    margin-left: 1px;
    margin-bottom: 0;
  }
  .uk-active .main-menu .dropdown-menu {
    min-width: 150px;
  }

  .uk-active .main-menu .dropdown-menu li {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  #navbar .content-wrapper {
    max-width: 617px;
    margin: auto;
  }
  .main-menu > li {
    padding: 10px;
  }
  .main-menu > li > a {
    font-size: 16px;
    padding: 2px 10px;
  }
  .main-menu a:after {
    height: 8px;
    margin-left: 1px;
    margin-bottom: 0;
  }

  #navbar.uk-active .content-wrapper {
    padding: 0 0;
  }
  .uk-active .main-menu li {
    padding: 4px 0;
  }

  .login {
    flex: 0;
    padding-right: 10px;
  }
  #login {
    padding: 3px 6px;
    border: 2px solid var(--text-dunkel);
    margin-left: 5px;
  }

  #login svg {
    height: 14px;
    margin-bottom: 6px;
    padding: 0 2px;
  }
}

@media (max-width: 630px) {
  .main-menu > li {
    padding: 6px;
  }
  .btn {
    display: inline-flex;
  }
  .menu {
    display: none;
  }
  .nav-links {
    order: 2;
  }
  #login {
    padding: 5px 10px;
  }
  #login > span {
    display: inline-block;
    font-size: 16px;
    padding-bottom: 3px;
  }

  #login svg {
    height: 15px;
    margin-bottom: 4px;
  }
  .login {
    text-align: left;
    order: 1;
    flex: 1;
  }
  #nav-logo {
    display: none;
  }
  #navbar > .content-wrapper > .btn {
    order: 3;
  }
  .uk-active .login {
    display: none;
  }
  .uk-active .mobile-login {
    display: inline-block;
  }
  #navbar.uk-active .content-wrapper {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  #navbar .content-wrapper {
    max-width: 452px;
  }

  #navbar.uk-active .content-wrapper {
    padding: 0 15px;
  }
}
/*================================
  Content Startseite
  ==================================*/
.einleitung {
  display: flex;
  flex-direction: column;
}

.start-highlight {
  display: flex;
  gap: 32px;
}

.start-highlight .slider,
.start-highlight .highlight-text {
  width: 50%;
}

.uk-slideshow-items {
  aspect-ratio: 680 / 456 !important;
}

.start-highlight .slider polyline {
  stroke-width: 2;
  stroke: var(--text-weiß);
}
.start-highlight .slider svg {
  width: 20px;
}

.uk-dotnav a {
  border: 2px solid var(--text-dunkel);
}

.uk-dotnav .uk-active a {
  background-color: var(--text-dunkel);
}

.highlight-text {
  display: flex;
  flex-direction: column;
}

.highlight-text p {
  margin-bottom: 0;
}

.highlight-text a {
  margin-left: 0;
}

.start-news {
  display: flex;
  gap: 32px;
}

.start-news .text,
.start-news .img-wrapper {
  width: 50%;
}
.start-news img {
  aspect-ratio: 9 / 6;
  width: 100%;
  height: auto;
}

.welle-gelb {
  margin-bottom: -1px;
  width: 100%;
}
.welle-gelb-mobile {
  display: none;
  margin-bottom: -1px;
  width: 100%;
}

.hinweis {
  background-color: var(--gelb);
}

.hinweis .text {
  width: 50%;
}
.hinweis .text {
  margin: auto 0;
}
.hinweis .content-wrapper {
  margin-top: 0px;
  padding: 2% 10px;
  display: flex;
  gap: 32px;
}

.cta .text {
  width: 100%;
  margin: 64px;
}
.cta .text p {
  margin-bottom: 32px;
}
.container {
  position: relative;
  overflow: hidden;
  width: 50%;
  padding-top: 33.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*================================
Startseite Responsive
  ==================================*/
@media screen and (max-width: 768px) {
  .start-highlight,
  .hinweis .content-wrapper {
    flex-direction: column;
  }

  .start-news {
    flex-direction: column-reverse;
  }

  .start-highlight .slider,
  .start-highlight .highlight-text,
  .start-news .text,
  .start-news .img-wrapper,
  .hinweis .text,
  .container {
    width: 100%;
  }

  .hinweis .content-wrapper {
    max-width: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  .hinweis .content-wrapper .container {
    padding-top: 42.25%;
  }
  .hinweis .text {
    max-width: 617px;
    margin: 0 auto;
    padding: 20px 10px 0 10px;
  }
  .hinweis .alt-text {
    padding-bottom: 32px;
  }

  .welle-gelb {
    display: none;
  }
  .welle-gelb-mobile {
    display: block;
  }
}

/*================================
  Content Highlight-Trips
  ==================================*/
.icon-menu {
  display: flex;
  flex-direction: row;
}

.zeile1,
.zeile2 {
  width: 50%;
  display: flex;
}
.icon {
  text-align: center;
}

.icon-menu a,
.icon-menu p {
  text-decoration: none;
  color: var(--text-hell);
}
.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  padding: 16px;
}
.icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.icon .overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  background-color: rgba(255, 251, 231, 0.65);
  color: var(--text-dunkel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 50%;
}

.icon p {
  margin-top: 0;
  padding: 0 16px;
  line-height: 25px;
}

.icon:hover .overlay {
  opacity: 1; /* Overlay wird sichtbar */
}

.icon-menu a:hover {
  color: var(--text-hell);
}

/*===================
Highlights Responsive
  ==================*/
@media screen and (max-width: 768px) {
  .icon-menu {
    flex-direction: column;
    align-items: center;
  }
  .zeile1,
  .zeile2 {
    width: 100%;
  }

  .zeile1 h4,
  .zeile2 h4 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .zeile1 p,
  .zeile2 p {
    line-height: 18px;
  }
}

/*================================
  Highlights Unterseite
  ==================================*/
#sport {
  background-image: url(img/trips/trips-sport-banner.webp);
  background-size: cover;
  background-position: right;
}

#musik {
  background-image: url(img/trips/trips-musik-banner.webp);
  background-size: cover;
  background-position: center;
}

#kunst {
  background-image: url(img/trips/trips-kunst-banner.webp);
  background-size: cover;
  background-position: center;
}

#regional {
  background-image: url(img/trips/trips-regional-banner.webp);
  background-size: cover;
  background-position: center;
}

.banner {
  height: 350px;
  max-width: 1920px;
  margin: 0;
  margin-bottom: 108px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 100px;
}

.banner-divider {
  width: 100%;
  margin-top: -4px;
}

.banner h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 200px;
  margin: auto;
  color: var(--gelb20);
}

#sport h2 {
  color: var(--text-dunkel);
}

.content {
  display: flex;
  gap: 32px;
}

.content .text,
.content .img {
  width: 50%;
}

.content .text p {
  margin-bottom: 32px;
}

.content .text {
  display: flex;
  flex-direction: column;
}

.content .text a {
  margin-left: 0;
  margin-top: 0;
}

/*===================
Highlights Unterseite Responsive
  ==================*/
@media screen and (max-width: 1920px) {
  .banner {
    margin: 0;
  }
}

@media screen and (max-width: 1100px) {
  #regional h2 {
    font-size: 140px;
  }
}

@media screen and (max-width: 768px) {
  .banner {
    height: 250px;
    margin-bottom: 70px;
    scroll-margin-top: 100px;
  }
  .banner h2 {
    font-size: 100px;
  }

  .content {
    flex-direction: column;
  }
  .gedreht {
    flex-direction: column-reverse;
  }
  .content .text,
  .content .img {
    width: 100%;
  }
  .content .img {
    margin-top: 32px;
  }
  #regional h2 {
    font-size: 85px;
  }
}

@media screen and (max-width: 480px) {
  .banner {
    height: 200px;
  }
}

/*================================
  Content Impressionen
  ==================================*/
#impressionen a {
  color: var(--blau);
  transition: all 0.3s ease-in-out;
}

#impressionen a:hover {
  color: var(--text-standard);
}
.gallery-wrapper {
  margin-top: 32px;
  display: flex;
}

.gallery {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery a {
  width: 30%;
}

@media screen and (max-width: 950px) {
  .gallery a {
    width: 47%;
  }
}
/*================================
  Content Datenschutz
  ==================================*/
main .content-wrapper.daten-wrapper {
  max-width: 920px;
}
.daten-text h5 {
  margin-bottom: 0;
}

.daten-text p {
  margin-top: 0;
}

.daten-text a {
  color: var(--blau);
}

.daten-text a:hover {
  color: var(--blau40);
}
/*================================
  Footer
  ==================================*/
footer {
  height: fit-content;
  background-color: var(--text-dunkel);
  display: flex;
  justify-content: center;
  width: 100%;
}

footer .content-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 0 15px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin: 30px;
}

.footer-logo img {
  height: 160px;
  width: auto;
}

footer .kontakt {
  display: flex;
  flex-direction: column;
}

footer .kontakt p {
  margin: 0;
  margin-top: 8px;
  color: var(--text-weiß);
}

footer .kontakt svg {
  margin-right: 3px;
}

footer .kontakt a:hover path {
  fill: var(--gelb);
}

footer a {
  text-decoration: none;
  color: var(--text-weiß);
  margin-top: 8px;
}

a:hover {
  color: var(--gelb);
  text-decoration: none;
}

.footer-menu {
  color: var(--text-weiß);
}
/*================================
responsive Footer
  ==================================*/
@media screen and (max-width: 840px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  footer .content-wrapper div {
    margin: 30px 0 0 0;
  }
}

@media screen and (max-width: 768px) {
  footer .content-wrapper {
    max-width: 617px;
  }
}

@media screen and (max-width: 480px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: center;
    max-width: 452px;
  }

  footer .content-wrapper div {
    margin: 30px 0 0 0;
  }
}

/*================================
animationen
  ==================================*/

.uk-animation-slide-bottom {
  animation-duration: 1s !important;
}

/*================================
Cookie Banner
  ==================================*/

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--blau40);
  color: var(--text-dunkel);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 1000;
}

#cookie-banner p {
  margin: 0;
  font-size: 14px;
}

#cookie-banner a {
  color: var(--blau);
  text-decoration: underline;
}

#cookie-banner button {
  background-color: var(--blau);
  color: var(--text-weiß);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

#cookie-banner button:hover {
  background-color: var(--blau80);
}

#cookie-banner.hide {
  display: none;
}
