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

body{
    background-color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

.titleBar{
  height: 1%;
}

.headline{
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 1em;
}

h2{
  margin-left: 10%;
}

h1{
  margin-left: 5%;
  margin-top: 2%;
}

h4{
  font-size: 20px;
  margin-left: 5%;
  margin-top: 7%;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("../img/landingPic.png") no-repeat center 30%/cover;
  display: flex;
  justify-content: center;  
  align-items: center;      
  text-align: center;
}

.welcomeSlider h1 {
  color: white;
  font-size: clamp(1.8rem, 5vw, 3rem); 
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  margin: 0;
}

.welcomeSlider img {
  width: 100%;
  height: auto;      
  display: block;     
  object-fit: cover; 
}

.flyer-section {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.flyer-section img {
  max-width: 800px;  
  width: 100%;       
  border-radius: 12px;
}


@media (max-width: 768px) {
  .centered {
    font-size: 20px;
    top: 10rem;
  }
}

.centered2 {
  position: absolute;
  top: 15rem;
  text-shadow: black 3px 0 20px;
  left: 45%;
  transform: translate(-50%, -50%);
}


@media (max-width: 768px) {
  .centered2 {
    font-size: 20px;
    top: 7rem;
  }
}

.infoTxtSp{
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2%;
  font-size: 16px;
  margin-bottom: 2em;
}
.infoTxtSp2{
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  font-size: 25px;
  text-align: center; 
  font-weight: bold;
}

.formular{
  text-align: center;
  max-width: 100%;
  margin: 0 auto;

  text-align: center; 
}

.infoTxtA{
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2%;
  font-size: 16px;
  margin-bottom: 2em;
}

#header{
    display: flex;
    background-color: #19552A;
    color: white;
    width: 100%;
}

li, a, ul{
    color: white;
    text-decoration: none;
    list-style: none;
}

#nav{
    justify-content: space-between;
    align-items: center;
    font-size: 20px ;
    width: 20em;
    list-style: none;
    display: flex;
    background-color: #19552A;
    color: white;
    width: 100%;
    text-transform: uppercase;
    margin-right: 2%;
    z-index: 1;
}

.hamburger{
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

@media only screen and (max-width: 768px) {
  .nav-menu {
      position: fixed;
      left: -100%;
      top: 3.5em;
      flex-direction: column;
      background-color: #19552A;
      width: 100%;
      text-align: center;
      transition: 0.3s;
      justify-content: space-between;
      box-shadow:
          0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-item {
      margin: 3.rem 0;
  }

  .hamburger {
      display: block;
      cursor: pointer;
  }

  .nav-menu:hover{
  color: #038d68;
  }
}

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


#eaglesLogo{
    background-image: url(../img/eaglesLogo.png);
    margin-left: 2em;
    margin-bottom: 0.5em;
    height: 3.5em;
    width: 7em;
    margin-top:1%;
    margin-bottom: 1%;
}

a {
    background-image: linear-gradient(
      to right,
      #038d68,
      #038d68 50%,
      #dddddd 50%
    );
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
  }
  
  a:before {
    content: '';
    background: #038d68;
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    transition: all 0.3s ease-in-out;
  }
  
  a:hover {
  background-position: 0;
  }
  
  a:hover::before {
    width:100%;
  }

  nav ul li{
    display: inline;
    margin: 0 5px;
}

@keyframes slide {
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}

#myId{
  margin-left: 40%;
}

@media only screen and (max-width: 768px){
  #myId {
      margin-left: 18%;
  }
}

.video-container {
  display: flex;
  margin-top: 1em ;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}


@media only screen and (max-width: 768px){
  .video-container {
      max-width: 100%;
  }
}

@media (max-width: 1200px) {
  iframe {
    width: 80%;
    height: 500px;
  }
}

@media (max-width: 900px) {
  iframe {
    width: 70%;
    height: 300px;
  }
}

@media (max-width: 600px) {
  iframe {
    width: 100%;
    height: 200px;
  }
}

.logos{
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after{
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before{
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after{
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide{
  animation-play-state: paused;
}

.logos-slide{
  display: inline-block;
  animation: 30s slide infinite linear;
}

.logos-slide img{
  height: 100px;
  margin: 0 40px;
}

.our-team{
  padding: 20px 15px 30px;
  background: #fff;
  text-align: center;
}

.our-team .pic{
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 10px;
  margin-bottom: 25px;
  transition: all 0.5s ease 0s;
  aspect-ratio: 4 / 3; /* quadratisch */
  overflow: hidden;
}

.pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-team .title{
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #2e282a;
  text-transform: uppercase;
  margin: 0 0 7px 0;
}
.our-team .post{
  display: block;
  font-size: 15px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.infoTxt{
  margin-left: 10%;
  margin-right: 10%;
  font-size: 16px;
}

h3{
  font-size: 20px;
}

.news{
  margin-left: 10%;
  margin-right: 10%;
}

div.c-wrapper{
  width: 50em;
  margin: auto;
}


.jahresRueckblick{
  font-size: 16px;
  margin: 2em;
  margin-left: 10%;
  margin-right: 10%;
}

.welcome{
  font-size: 16px;
  margin: 2em;
}

.footer {
  background-color: #19552A;
  color: #fff;
  padding: 40px 0;
  font-size: 16px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-info,
.footer-links,
.social-links {
  flex-basis: 30%;
  margin-bottom: 20px;
}

.contact-info h3,
.footer-links h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul{
  padding: 0;
  list-style: none;
}

.footer-links ul li{
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
}

.social-links ul li a img {
  width: 40px;
  height: 40px;
}

.copyright {
  background-color: #222;
  color: #fff;
  padding: 10px 0;
}

.copyright-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.copyright-container p {
  margin: 0;
  text-align: center;
}

form {
  width: 100%;
  max-width: 600px;
  height: 300;
  margin: 0 auto;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

form label {
  margin-bottom: 0.5em;
  color: #333333;
  display: block;
}

form input[type="text"],
form input[type="email"],
form textarea {
  border: 1px solid #ccc;
  padding: 0.5em;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1em;
  border-radius: 5px;
}

form input[type="submit"] {
  padding: 0.7em;
  color: #fff;
  background-color: #19552A;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

form input[type="submit"]:hover {
  background-color: #038d68;
}

.title-word {
  animation: color-animation 4s linear infinite;
}

.title-word-1 {
  --color-1: #159f7a;
  --color-2: #038d68;
  --color-3: #04c894;
}

.title-word-2 {
  --color-1: #319177;
  --color-2: #94c6b1;
  --color-3: #038d68;
}

.title-word-3 {
  --color-1: #94c6b1;
  --color-2: #04c894;
  --color-3: #94c6b1;
}

.title-word-4 {
  --color-1: #159f7a;
  --color-2: #038d68;
  --color-3: #04c894;
}

@keyframes color-animation {
0%    {color: var(--color-1)}
  32%   {color: var(--color-1)}
  33%   {color: var(--color-2)}
  65%   {color: var(--color-2)}
  66%   {color: var(--color-3)}
  99%   {color: var(--color-3)}
  100%  {color: var(--color-1)}
}

.title {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}

.posters {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.poster-frame {
  width: 700px; 
  height: 700px; 
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white; 
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
}

@media only screen and (max-width: 768px) {
  .poster-frame{
    width: 300px;
    height: 300px;
  }
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #19552A; /* wie Header */
    min-width: 200px;
    z-index: 1000;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: white;
    padding: 10px 15px;
    display: block;
    font-size: 18px;
    text-transform: none;
}

.dropdown-content a:hover {
    background-color: #038d68;
}

/* Dropdown beim Hover anzeigen */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mobile Anpassung */
@media only screen and (max-width: 768px) {
    .dropdown-content {
        position: static;
        min-width: 100%;
    }
}

@media only screen and (max-width: 768px) {
  /* Burger-Menü bleibt funktionsfähig */
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.5em;
    flex-direction: column;
    background-color: #19552A;
    width: 100%;
    text-align: left;
    transition: 0.3s;
    padding-left: 20px; /* Mehr Abstand von links */
  }

  .nav-menu.active {
    left: 0;
  }

  /* Nav-Items links ausrichten mit mehr Abstand */
  .nav-item {
    margin: 1rem 0;
    text-align: left;
    padding-left: 20px; /* Zusätzlicher Abstand links */
  }

  /* Logo und Burger-Menü positionieren */
  #nav {
    justify-content: space-between;
    padding: 0 20px; /* Abstand links und rechts */
  }

  #eaglesLogo {
    margin-left: 0;
  }

  /* Dropdowns anpassen */
  .dropdown-content {
    position: relative;
    left: -10px; /* Ausgleich für den Padding */
    width: calc(100% + 20px);
    text-align: left;
  }
}

@media only screen and (max-width: 768px) {
  .dropdown-content {
        position: relative;
        width: 100%;
        padding-left: 0;
        background-color: #19552A; /* sicherstellen, dass grün bleibt */
        text-align: center; /* Text mittig */
    }
  /* Abstand zwischen Football und Dropdown verringern */
  .dropdown .dropdown-toggle {
    margin-bottom: 0;
  }

  /* Footer nach unten verschieben wenn Dropdown geöffnet ist */
  .dropdown.open ~ .custom-footer,
  .dropdown.open ~ .copyright {
    margin-top: 200px; /* Anpassen nach Bedarf */
    transition: margin-top 0.3s ease;
  }
  
  /* Dropdown-Items stylen */
  .dropdown-content a {
    padding: 8px 20px; /* Weniger Padding für kompaktere Darstellung */
    font-size: 16px;
    color: #ddd;
  }

  /* Hover-Effekt für Dropdown-Items */
  .dropdown-content a:hover {
    background-color: rgba(3, 141, 104, 0.3);
  }
}

.custom-footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #19552A; /* dein Eagles-Grün */
    color: white;
    font-family: sans-serif;
    z-index: 1000;
    position: relative;
    margin-top: 10em;
}

.custom-footer .social-icons {
    margin-bottom: 20px;
    text-align: center;
}

.custom-footer .social-icons a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.custom-footer .social-icons a:hover {
    transform: scale(1.1);
}

.custom-footer .social-icons img {
    width: 24px;
    height: 24px;
    display: block;
}

.custom-footer .footer-nav {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.custom-footer .footer-nav li {
    display: inline;
    margin: 0 15px;
}

.custom-footer .footer-nav a {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.custom-footer .footer-nav a:hover {
    color: #038d68; /* Hover-Farbe wie im Menü */
}

.custom-footer .copyright {
    font-size: 14px;
    color: whitesmoke;
    line-height: 1.6;
}
.custom-footer .footer-contact {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.custom-footer .footer-contact p {
    margin: 5px 0;
}

.placeholderSpace{
  height: 20em;
}
#camp-anmeldung {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%; 
    position: relative;
}

#camp-anmeldung h2 {
    color: #222;
}

#camp-anmeldung p {
    color: #555;
    line-height: 1.6;
}

.text-eagles-dark {
    color: #19552a !important;
}

.camp-info-box {
    background-color: #eef7f4 !important;
    border-radius: 8px;
    border-left: 5px solid #19552a;
    padding: 15px;
    margin-bottom: 1.5rem;
}

.camp-info-box a {
    color: #19552a !important;
    font-weight: bold;
    text-decoration: underline !important;
}

.camp-info-box a:hover {
    color: #038d68 !important;
}

#camp-anmeldung .btn-camp-download {
    background-color: #19552a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(25, 85, 42, 0.4);
    transition: transform 0.2s ease, background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#camp-anmeldung .btn-camp-download:hover {
    background-color: #278341 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

#camp-anmeldung a.btn-camp-download {
    text-decoration: none !important;
    background-image: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: #fff !important;
}

#camp-anmeldung a.btn-camp-download::before,
#camp-anmeldung a.btn-camp-download::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
}

