body {
  background-image: url("/media/bg_background_3.png"), url("/media/bg_background_1.png"), url("/media/bg_background_3.png"), url("/media/bg_background_4.png");
  background-size: cover; /* Makes the image cover the entire viewport */
  background-position: center center, center center, center center, center center; /* Centers the images */
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat; /* Prevents image repetition */
  background-attachment: scroll, scroll, scroll, scroll; /* Scrolls with the content */
  margin: 0; /* Removes the default margin */
  font-family: 'Helvetica', sans-serif;
  color: #cc0000;
  margin-top: 5rem; /* Optional margin offset */
  height: 100%; /* Makes the body take up the full height of the viewport */
  display: flex;  
  flex-direction: column;  
  } 
  
    html, body {
      background-color: black;
      height: 100%;
      width: 100%;
      margin: 0px;
      padding: 0px;
      display: flex;
      flex-direction: column;
    }

  html {
    scroll-behavior: smooth;
  }
  
    .main-container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      width: 100%;
      flex-grow: 1; 
    }
  
  
    main {
      flex: 1;
      width: 100%;
    }

  .site-header {
    display: flex;
    position: fixed;
    z-index: 1000;
    justify-content: space-between; /* Space out the logo and links */
    align-items: center; /* Vertically align the items */
    width: 95%; /* Header occupies 90% of the screen width */
    margin: 0 auto; /* Center the header on the page */
    height: 100px; /* Set the height of the header */
    padding: 0 20px; /* Padding inside the header */
  }
  
  .header-logo {
      width: 50%; /* Set the logo size */
      height: auto; /* Maintain aspect ratio */
  }

  .icon-img {
    width: 20px;
    height: 20px;
  }
  
  .nav-links {
      display: flex; /* Align the links horizontally */
  }
  
  .nav-links a {
      color: white; /* Text color */
      text-decoration: none; /* Remove underline */
      margin-left: 20px; /* Space between the links */
      font-size: 16px; /* Font size for the links */
  }
  
  .nav-links a:hover {
      text-decoration: underline; /* Underline effect on hover */
  }

  .nav-icons {
    display: flex; /* Align the links horizontally */
}

.nav-icons a {
    color: white; /* Text color */
    text-decoration: none; /* Remove underline */
    margin-left: 20px; /* Space between the links */
    font-size: 16px; /* Font size for the links */
}





/* Mobile: Hide nav links & show dropdown button */
@media screen and (max-width: 768px) {
  /* Hide text links on mobile */
  .nav-links {
      display: none;
  }

  /* Center the logo */
  header {
      flex-direction: column;
      text-align: center;
  }

  .logo-container {
    order: 1; /* Ensure logo is on top */
    width: 70%;  /* Make the logo 70% of screen width */
  }

  .header-logo {
      width: 100%;  /* Make sure the logo scales within 70% of the screen */
      height: auto;
  }

  /* Stack icon images below the logo */
  .nav-icons {
    order: 2;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;  /* Reduce gap between icons */
  } 
}

/* Show dropdown when active */
.show {
  display: block;
}

#footer {
    background-color: #03065e;
    color: #f3640c;
    text-align: center;
    padding: 15px 0;
    
    width: 100%;
    position: relative; /* Not fixed, allows content to push it down */
    margin-top: auto; /* Pushes the footer to the bottom when content is short */
}


.footer-content {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between links */
}

.footer-content a {
    color: #f3640c;
    text-decoration: none;
    font-size: 16px;
}

.footer-content a:hover {
    text-decoration: underline;
}

section {
  position: relative;
  text-align: center; /* Centers text horizontally */
  color: rgb(255, 0, 0); /* Text color */
  background-size: cover; /* Ensures background image covers the whole section */
  background-position: center; /* Centers the background image */
  min-height: 100vh;
}

#home {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center videos horizontally */
  gap: 20px; /* Space between videos */
  padding: 20px;
  background-image: url("/media/bg_background_3.png");
  width: 100%;
}
#upcoming-events {
  background-image: url("/media/bg_background_4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  
  text-align: center;
  color: white;
  min-height: 800px;
  padding: 50px 20px;
}


/* Container for the event list */
.event-container {
  width: 60%; /* Makes content take up 60% of the page width */
  max-width: 900px; /* Prevents it from becoming too wide on large screens */
}

/* Section headings */
#upcoming-events h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

/* Style for event lists */
.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bandsintown {
  align-items: center;
}
/* Each event item */
.event-list li {
  display: flex;
  justify-content: space-between; /* Align left and right content */
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* Adds a separator */
}

/* Left side of the event (date, location, venue) */
.event-details {
  text-align: left;
  color: #ff0000;
}

/* Right side (link) */
.event-link {
  text-align: right;
}

/* Link styling */
.event-link a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 15px;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.event-link a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

  #video-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center; /* Center videos horizontally */
    gap: 20px; /* Space between videos */
    padding: 20px;
    background-image: url("/media/bg_background_5.png");
    width: 100%;
  }

  
  
  .video-wrapper {
    width: 70%;
    max-width: 1200px;
  }
  
  .video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintains the correct aspect ratio */
  }

  .impressum-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh; /* Ensures it takes the full height of the viewport */
  }

.impressum-content {
    max-width: 800px; /* Limits the width for readability */
    padding: 20px;
    border-radius: 10px;
    color: rgb(255, 0, 0);
  }
