@charset "UTF-8";
/* @import url(font-awesome.min.css); */


    :root {
        /* Colors */
        --color-primary: #2B3353;          /* dark blue */
        --color-secondary: #B3AFFB;       /* Lavendel */
        --color-accent: #852597;       /* Purple */
        --color-highlight: #92123A;       /* Red */
        --color-light: #e5dffe;       /* bright Lavendel */
        --color-light2: #ffe9ff;       /* bright rose */
        --color-dark: #111111;       /* Anthrazite */

        /* Backgrounds */
        --bg-dark: #2B3353;         /* dark blue */
        --bg-light: #FFFFFF;       /* white */
        --bg-medium: #B3AFFB;      /* Lavendel */
        --bg-active: #852597;      /* Purple */
        --bg-hover: #B3AFFB;       /* Lavendel */

        /* Text */
        --text-default: #000000;
        --text-white: #F0EEE9;
        --text-dark: #222222;

        /* Borders & Shadows */
        --border-color: #DDDDDD;
        --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    }




    /* Global container to limit max width */

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

body {
  font-family: Garamond, serif;
  margin: 0;
  padding: 0;
  min-width: 100%;
  font-size: 1.2rem;
  background: rgb(0 0 0 / 3%);
  max-width: 100%;
  overflow-x: hidden;
  }

.container {
  max-width: 1280px;
  margin: 0 auto; /* Centers the container */
  width: 100%; /* Ensures it scales down on smaller screens */
}

img {
    max-width: 100%;
    height: auto;
}

    /* Global link styling */
a {
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--bg-hover);
}

a:active {
  color: var(--color-accent);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
th, td {
    border: 2px solid var(--border-color);
    padding: 12px;
    text-align: left;
}
tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

tr:nth-child(odd) {

}



th {
    font-weight: bold;
}
tr:nth-child(even) {
    font-weight: 200;
}
tr:hover {
    font-weight: 300;
}

/* Spacer for desktop (5 spaces) and mobile (2 spaces) */
.text-spacer {
  display: inline;
}

.desktop-header {
  height: 83px;
  background: rgba(0, 0, 0, 0.4); /* 80% transparent white */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Ensures it stays above other content */
}

.header-text {
    flex: 1;
    text-align: center;
    margin: 0 2rem;
  }

  .header-text h2 {
    margin: 0;
    font-size: 1.8rem;
    white-space: nowrap;
  }

  .header-text a {
    color: white;
    text-decoration: none;
  }

    .header-text a:hover {
      color: var(--bg-hover);
      text-decoration: none;
  }

  .header-season {
    color: #ffe0ff;
}

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 1rem 1rem;
    position: relative;
    background: rgb(0 0 0 / 80%);
  }


.table-container {
    overflow-x: auto;
    max-width: 100%;
    }

    /* --- Navigation --- */

    .nav-links {
        display: flex;
        justify-content: center;
        list-style: none;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .nav-links a {
        color: var(--text-white);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
        padding: 0.5rem 1rem;
    }

    .nav-links a:hover {
        color: var(--bg-hover);
    }

    .titelfont {
        max-width: 100%;
        height: auto;
    }

    .lead-text {
        position: relative;
        z-index: 1;
        text-align: center;
        font-size: 1.25rem;
        padding: 2rem 1rem;
        /* background-color: var(--bg-light); */
        max-width: 800px;
        margin: 0 auto;
        color: var(--text-default);
    }

    /* --- Info Section --- */
    .info-section {
        padding: 0.5rem 1rem 1rem 1rem;
        background-color: var(--color-light);
    }

    .info-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        color: var(--color-primary);
    }

    .tables-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .info-table {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 5px 8px 11px 4px rgba(0, 0, 0, 0.1);
    }

    .info-table th,
    .info-table td {
        padding: 0.5rem 1rem 1rem 1rem;
        border: 1px solid var(--border-color);
        text-align: left;
        display: block;
    }

    .info-table th {
        color: var(--text-white);
        background-color: var(--bg-dark);
        display: block;
    }



    /* --- Sponsoren Section --- */
    .support-section {
        padding: 0.5rem 1rem 1rem 1rem;
        background-color: var(--bg-light);
    }

    .support-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        color: var(--color-primary);
    }

    /* --- mit Section --- */
    .mit-section {
        padding: 0.5rem 1rem 1rem 1rem;
        background-color: var(--color-light2);
    }

    .mit-section h2 {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 2rem;
        color: var(--color-primary);
    }

    .large-table-wrapper {
        overflow-x: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .large-table {
        width: 100%;
        border-collapse: collapse;
        font-size: clamp(0.75rem, 1.5vw, 1rem);
        table-layout: auto;
        margin: 0 auto;
    }

    .large-table th,
    .large-table td {
        padding: 0.75rem;
        border: 1px solid var(--border-color);
        word-wrap: break-word;
        text-align: left;
    }

    .large-table th {
        background-color: var(--bg-dark);
        color: var(--text-white);
        position: sticky;
        top: 0px;
    }



    /* --- Footer --- */
  .site-footer {
        background-color: var(--bg-dark);
        color: var(--text-white);
        padding: 3rem 1rem 1rem;
    }


  .footer-content {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.5rem 1rem 1rem 1rem;
      color: white;
    }

    .footer-section {
      flex: 1;
      min-width: 200px;
    }

    .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

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

    .footer-list li {
      margin-bottom: 0.5rem;
      padding: 0.25rem 0;
      font-size: 1.0rem;
    }

    .footer-list a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
      font-weight: normal;
    }

    .footer-list a:hover {
      color: var(--bg-hover);
    }

    .footer-Sub-Text {
      font-size: 14px;
    }


    /* Social Media Section */
    .social-section {
      text-align: center;
      margin: 20px 0;
    }

    .social-section p {
      margin: 0 0 10px 0;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .social-icons a {
      display: inline-block;
      margin: 0 5px;
      color: inherit;
    }

    .social-icons svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

.hero {
  /* Default (Mobile) */
  background-image: url('../images/Homepage_BG.webp');
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--bg-light);
  width: 100%;
  min-height: 150vh;
  height: auto;
  /* Animation  opacity: 0.9;*/
  animation: fadeIn 2s ease-in-out 1s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Hero Overlay Text Styling */
.hero-overlay {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 80%;
  text-align: center;
  color: var(--border-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  z-index: 2;
}


.hero-overlay h1 {
  margin-top: 80px;
  font-size: 5.0rem;
  font-weight: 400;
  top: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--color-dark);
}


/* Hamburger Menu Styles */
.hamburger {
  flex: 0 0 auto;
  display: block;
  cursor: pointer;
  color: var(--text-white);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1;
      position: fixed;
}

.sidebar {
    position: fixed;
    top: 0px;
    left: -250px;
    width: 250px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 83px;
}

.sidebar.active {
    left: 0;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sidebar a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 22px;
}

.sidebar a:hover {
    color: var(--bg-hover);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}


/* Logo */
.logo_top {
  height: 46px;
  width: auto;
}

.header-logo {
  margin-left: auto;
  padding-right: 1rem; /* Prevents logo from touching the right edge */
}


        /* --- Responsive Adjustments --- */
          @media (max-width: 1024px) {

          .hero {
          min-height: 120svh;
           height: auto;
           padding: 5rem 1rem 3rem;
           background-size: cover;
           background-position: center top;
          }

          .hero-overlay h1 {
            margin-top: 50px; /* Removes default margins */
            font-size: 4.0rem; /* Adjust as needed */
            font-weight: 500;
            }

          }


    /* --- Responsive Adjustments --- */
    @media (max-width: 768px) {
        .top-nav {
            padding: 1rem;
        }

        .hero {
        min-height: 100svh;
         height: auto;
         padding: 5rem 1rem 3rem;

         background-size: cover;
         background-position: center top;
        }


        .tables-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
          flex-direction: column;
          gap: 1.5rem;
        }

        .footer-section {
          width: 100%;
        }


        .logo_top {
          height: clamp(28px, 9vw, 42px);
        }

        .hamburger {
          font-size: clamp(1.4rem, 7vw, 2rem);
        }

        table {
            display: block;
        }
        thead {
            display: none;
        }
        tr {
            display: block;
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
        }
        td {
            display: block;
            text-align: left;
            padding-right: 10%;
            position: relative;
            border: none;
            border-bottom: 1px solid var(--border-color);
        }
        td:before {
            content: attr(data-label);
            position: absolute;
            left: 10px;
            width: 45%;
            padding-right: 10px;
            font-weight: 500;
            text-align: left;
        }

        .header-text h2 {
            margin: 0;
            font-size: 1.2rem;
            white-space: nowrap;
        }
        .hero-overlay h1 {
          margin-top: 40px; /* Removes default margins */
          font-size: 3.0rem; /* Adjust as needed */
          font-weight: 400;

        }

    }


/* ---------------------------------------- */

    /* --- Responsive Adjustments --- */
      @media (max-width: 580px) {
      .header-text h2 {
        margin: 0;
        font-size: 1.0rem;
        white-space: nowrap;
     }

     .desktop-header {
        height: 55px;
      }

      .logo_top {
        height: 18px;
        width: auto;
        }

      .hero-overlay h1 {
      font-size: 2.7rem;
        margin-top: 1px;
        }

}
