* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

header {
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 999;
  /*background-image: url('bilder/navi/mandalaNavi.png');
  background-size: cover;
  background-position: center;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-radius: 8px;
  flex-wrap: wrap;
  height: 60px;

  /*Alternatives Menü*/
  background: rgba(32, 32, 32, 0.85);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px 12px 12px 12px;
}

.logo {
  font-size: 1.5em;
  /*font-weight: bold;*/
  text-decoration: none;
  /*color: inherit;*/

  /*Alternatives Menü*/
  font-weight: 700;
  color: white;
}

/*Alternatives Menü*/
.logo:hover {
  color: #D9DECA;
}

.nav-wrapper {
  display: flex;
  /*align-items: start;
  gap: 30px;*/

  /*Alternatives Menü*/
  gap: 2rem;
  align-items: center;
}

nav ul {
  display: flex;
  /*gap: 20px;*/
  list-style: none;

  /*Alternatives Menü*/
  gap: 2rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  /*color: #333;
  font-weight: bold;*/

  /*Alternatives Menü*/
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

/*Alternatives Menü*/
nav ul li a:hover {
  color: #D9DECA;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  /*color: #333;*/
  font-size: 1.2em;

  /*Alternatives Menü*/
  color: white;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

/*Alternatives Menü*/
.social-icons a:hover {
  color: #D9DECA;
}

.burger {
  display: none;
  font-size: 1.5em;
  cursor: pointer;

  /*Alternatives Menü*/
  color: white;
}

@media (max-width: 1120px) {
    header {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }


  .nav-wrapper {
    display: none;
    flex-direction: column;
    /*background: transparent;
    transition: background-color 0.3s ease;
    width: 100%;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;*/

    /*Alternatives Menü*/
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(32, 32, 32, 0.85);
    align-items: flex-start;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px 12px 12px 12px;
  }

  .nav-wrapper.active {
    display: flex;

    /*Aktuelles Menü
    background: rgba(217, 222, 202, 0.6);*/
  }

  nav ul {
    flex-direction: column;
    width: 100%;

    /*Aktuelles Menü
    padding: 0;*/
  }

  nav ul li {
    /*padding: 10px 20px;*/
    width: 100%;

    /*Alternatives Menü*/
    padding: 0.5rem 0;
  }

  .social-icons {
    justify-content: flex-start;
    /*padding: 10px 20px;*/
    width: 100%;

    /*Alternatives Menü*/
    margin-top: 1rem;
    display: flex;
  }

  .burger {
    display: block;

    /*Aktuelles Menü
    font-size: 1.5em;
    cursor: pointer;
    margin-left: auto;*/
}
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video,
.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.fallback-image {
  display: none;
}

.video-textbox {
position: absolute;
bottom: 97px;
align-items: center;
left: 20%;
width: 60%;
background-color: rgba(255, 255, 255, 0.6);
padding: 10px;
padding-left: 20px;
border-radius: 10px;
z-index: 2;
color: #000;
}

.video-textbox h1 {
margin-bottom: 10px;
text-align: center;
}

.video-textbox .cta-button {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background-color: #333;
color: white;
text-decoration: none;
border-radius: 5px;
}

@media (max-width: 1450px) {
  .video-container video {
    display: none;
  }
  .fallback-image {
    display: block;
  }
}

.scroll-down {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: black;
  text-align: center;
  padding: 10px;
  z-index: 1;
}

.scroll-down a {
  color: white;
  font-size: 2em;
}

section {
display: flex;
flex-wrap: wrap;
height: 100vh;
align-items: flex-end;
justify-content: center;
padding-bottom: 65px;
position: relative;
background-color: #D9DECA;
background-size: cover;
background-position: top center;
background-attachment: fixed;
}

section:nth-of-type(even) {
  flex-direction: row-reverse;
}

.section-content, .section-image {
  flex: 1 1 50%;
  padding: 20px;
  position: relative;
}

.section-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 20px;
margin: 0;
}

.section-image {
flex: 1 1 40%;
position: relative;
height: 100%;
z-index: 1;
}

.section-content {
flex: 1;
padding: 0 20px;
max-width: 60%;
background-color: rgba(255, 255, 255, 0.6);
border-radius: 20px;
z-index: 2;
}

.section-content h2 {
    margin-top: 10px;
  margin-bottom: 20px;
}

.section-content h2,
.section-content p {
margin-bottom: 20px;
}

.section-content a {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

#sportmodel, #moderation, #trainerin, #personaltraining, #ernaehrungsberatung, #ppcoaching {
background-repeat: no-repeat;
}

#sportmodel {
background-image: url('bilder/sportmodel/sportModel26.jpg');
}

#moderation {
background-image: url('bilder/moderation/moderation07.jpg');
}

#trainerin {
background-image: url('bilder/trainerin/trainerin14.jpg');
}

#personaltraining {
background-image: url('bilder/trainerin/trainerin01.jpg');
}

#ernaehrungsberatung {
background-image: url('bilder/ernaehrungsberatung/eberatung01.jpg');
}

#ppcoaching {
background-image: url('bilder/ppcoaching/ppcoaching01.jpg');
}

.showreel {
  height: 80vh;
  overflow: hidden;
}

.showreel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: white;
  margin: 0 10px;
  text-decoration: underline;
}