  :root {
    --blue: #003874;
    --gold: #C9A84C;
    --gold-light: #e8c97a;
    --teal: #00a192;
    --teal-light: #00c4b2;
    --white: #ffffff;
    --dark: #0a0a0a;
    --cream: #f8f5ef;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ===== TOPBAR ===== */
  .topbar {
    background: var(--blue);
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
  }

  .topbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }
  
  .topbar-logo img {
    max-width: 250px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .topbar-right-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .topbar-extra-icon img {
    height: 24px;
    vertical-align: middle;
    transition: transform 0.2s;
  }
  
  .topbar-extra-icon:hover img {
    transform: scale(1.1);
  }

  .topbar-separator {
    color: rgba(255,255,255,0.3);
    font-size: 20px;
    user-select: none;
  }

  .topbar-social {
    display: flex;
    gap: 14px;
    align-items: center;
  }

  .topbar-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }

  .topbar-social a:hover { color: var(--gold); }

  .social-icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
    vertical-align: middle;
  }

  /* ===== NAV ===== */
  nav {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,56,116,0.1);
    position: sticky;
    top: 0;
    z-index: 200;
  }

  .nav-inner {
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
  }

  .nav-links > li {
    position: relative;
  }

  .nav-links a {
    display: block;
    padding: 18px 16px;
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s;
  }

  .nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.25s;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links > li > a:hover::after { transform: scaleX(1); }

  /* Dropdown Styles Desktop */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--gold);
    z-index: 250;
	list-style-type: none;
  }

  .nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu li a {
    padding: 12px 20px;
    font-size: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
	
	
  }

  .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  .dropdown-menu li a::after {
    display: none; /* No underline effect in dropdowns */
  }

  .dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--blue);
  }

  .nav-ticket-btn {
    background: var(--teal);
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 0px 0px 6px 6px;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    transition: background 0.2s, transform 0.2s !important;
  }

  .nav-ticket-btn:hover {
    background: var(--blue) !important;
    transform: translateY(-1px);
    color: #fff !important;
  }

  .nav-ticket-btn::after { display: none !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
	Position:absolute;
	right:20px;
	top:7vh;
	z-index:1998;
  }
  


  .hamburger span {
    width: 24px;
    height: 2px;
    background: white;
    display: block;
    transition: all 0.3s;
  }

  /* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  width: 100%;
  /* Remove fixed heights */
  height: auto; 
  min-height: 0; 
  /* This ensures the container height matches the image shape exactly */
  aspect-ratio: 3840 / 1380; 
  overflow: hidden;
  background: var(--dark);
}

.slides {
  display: flex;
  height: 100%;
  width: 100%; /* Ensure the wrapper stays contained */
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  /* Use 100% 100% to force the image to fit the container perfectly */
  background-size: 100% 100%; 
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.slide-1 { background-image: url('slide_1_desktop.png'); }
.slide-2 { background-image: url('slide_2_desktop.png'); }
.slide-3 { background-image: url('slide_3_desktop.png'); }

  /* Hotspot Slide 1 */
  .slide1-hotspot {
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: 100px;
    height: 100px;
    background: rgba(0, 56, 116, 0.02); /* Transparentes Blau zum Testen */
    z-index: 20;
    display: block;
    cursor: pointer;
	display:none;
  }

  /* Dark overlay on all slides */
  .slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 8, 25, 0.0);
    pointer-events: none;
    z-index: 0;
  }

  /* Slide 2 & 3: lighter overlay, pure photo */
  .slide-2::before,
  .slide-3::before {
    background: rgba(0, 8, 25, 0.0);
  }

.slide-content {
  position: absolute;
  top: 0;
  left: 8vw;
  height: 100%; /* Spans full height of the slide */
  width: 35vw;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align from top */
  padding-top: 10%; /* Moves content down relative to image height */
  z-index: 2;
}

  .hero-eyebrow {
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
    font-weight: 600;
    animation: fadeUp 0.7s ease forwards;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6.5vw, 82px);
    font-weight: 900;
    color: var(--blue);
    line-height: 1.0;
    margin-bottom: 24px;
    animation: fadeUp 0.85s ease forwards;
  }

  .hero-title span { color: var(--teal);  }

  .hero-time-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(18px, 2.8vw, 30px);
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 14px;
    animation: fadeUp 1s ease forwards;
  }

  .time-accent {
    color: var(--teal);
    font-size: clamp(22px, 3.5vw, 38px);
  }

  .time-sep {
    color: rgba(255,255,255,0.3);
    font-size: 20px;
  }

.hero-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 40px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 1.2s ease forwards;
  
  /* Adjusted: Use a relative margin instead of vh */
  margin-top: 40%; 
  margin-left: -2.3vw;
  
  width:auto;
  max-width:260px;
  text-align:center;
  
}

  .hero-cta:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
  }

  /* Slider controls */
  .slider-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    z-index: 10;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }

  .dot.active {
    background: var(--teal);
    width: 28px;
    border-radius: 4px;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,56,116,0.6);
    border: 1px solid rgba(201,168,76,0.4);
    color: white;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
	z-index:100;
  }

  .slider-btn:hover { background: var(--blue); border-color: var(--gold); }
  .slider-btn.prev { left: 20px; }
  .slider-btn.next { right: 20px; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== 4 BOXES ===== */
  .boxes {
    max-width: 1160px;
    margin: -60px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
  }

  .box {
    background: var(--blue);
    padding: 20px;
	padding-bottom:15px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
		border:1px solid #F8F5EF;
  }

  .box:last-child { border-right: none; }

  .box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .box:hover {
    background: #004fa3;
    transform: translateY(-4px);
  }

  .box:hover::before { transform: scaleX(1); }

  .box-icon {
    font-size: 75px;
    margin-bottom: 0px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  }

  .box-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
  }

  .box-btn {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 6px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    transition: all 0.2s;
  }

  .box:hover .box-btn {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
  }

  /* ===== INTRO SECTION ===== */
  .intro {
    padding: 100px 40px 80px;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .section-eyebrow {
    width: 50px;
    height: 4px;
    background: var(--gold);
    margin-bottom: 20px;
  }

  .intro-left h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(38px, 5vw, 62px);
    color: var(--blue);
    line-height: 1.0;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .intro-left h2 span { color: var(--gold); }

  .intro-right p, .kiwanistext {
    font-size: 17px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 20px;
  }

  .mehr-btn {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 12px 32px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 0.2s;
    margin-top: 10px;
  }
  
  .btn-bright {
  border:1px solid #fff;
  }

  .mehr-btn:hover { background: var(--teal); color: var(--white); }

  /* ===== HEADLINER SECTION ===== */
  .headliners-section {
    background: var(--blue);
    padding: 70px 40px;
    text-align: center;
  }

  .headliners-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 40px;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  .headliners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1160px;
    margin: 40px auto 0;
  }

  .headliner-card {
    width: 200px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
  }

  .headliner-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
  }

  .headliner-img {
    height: 200px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
 .headliner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

 .headliner-img img:hover {
  filter: grayscale(0);
 }

  

  .headliner-info {
    padding: 16px;
    color: var(--white);
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  /* ===== PARTNER BOX ===== */
  .partner-section {
    background: var(--white);
    padding: 70px 40px;
  }

  .partner-inner {
    max-width: 1160px;
    margin: 0 auto;
  }

  .partner-section h3, .youtube h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 34px;
    color: var(--blue);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 6px;
  }

  .partner-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 50px;
  }

  .partner-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 65px;
    justify-content: center;
    align-items: center;
  }

  .partner-logo-box {
    width: 200px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
    margin-top: 3px;
  }
  
  .partner-logo-box img {
    padding: 10px;
    border: 1.5px solid #e0ddd6;
    max-width: 100%;
    max-height: 100%;
  }

  .partner-logo-box:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
  }

  .partner-placeholder {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    color: #bbb;
    letter-spacing: 2px;
  }

  /* Infinite Scroll Sponsors - CSS marquee */
  .other-partners .partner-grid {
      display: flex;
      flex-wrap: nowrap;
      overflow: hidden;
      position: relative;
      gap: 0;
      justify-content: flex-start;
  }

  .other-partners .marquee-track {
      display: flex;
      flex-wrap: nowrap;
      flex-shrink: 0;
      gap: 40px;
      padding-right: 40px;
      animation: marquee-scroll 30s linear infinite;
	   min-width: 100%;
  }

  .other-partners .partner-grid:hover .marquee-track {
      animation-play-state: paused;
  }

  @keyframes marquee-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-100%); }
  }

  .other-partners .partner-logo-box {
      flex: 0 0 auto;
  }

/* ===== YOUTUBE VIDEO SECTION ===== */
.video-section {
  background: var(--cream);
  padding: 70px 40px;
}

.video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  /* Standard für Mobile: Quadratisch */
  aspect-ratio: 1 / 1; 
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Entferne das alte Padding-Bottom, falls noch vorhanden */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  /* Stellt sicher, dass das Video das Quadrat gut ausfüllt */
  object-fit: cover; 
}

/* Desktop-Anpassung: Ab 1250px wieder Querformat (16:9) */


@media (min-width: 2100px) {

.hero-cta {
margin-top:50%;
}

}


@media (min-width: 2800px) {

.hero-cta {
margin-top:70%;
}

}


@media (min-width: 1250px) {
  .video-container {
    aspect-ratio: 16 / 9;
  }
}

  /* ===== MOBILE NAV ===== */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue);
    z-index: 500;
    flex-direction: column;
    overflow-y: auto;
    padding: 60px 20px 40px;
	z-index: 1999;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 40px;
  }

  .mobile-nav-item {
    text-align: left;
    width: 100%;	
  }

  .mobile-nav-item > a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 4px;
    transition: color 0.2s;
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 10px;
	padding-left:40px;

  }

  .mobile-nav-item > a:hover { color: var(--gold); }

  /* Mobile Dropdown */
  .mobile-dropdown-menu {
    display: none;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px 0;
	margin-left:35px;
	width:80%;
	margin-bottom:10px;
  }

  .mobile-dropdown-menu a {
    color: rgba(255,255,255,0.8);
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    padding: 8px 0;
    text-decoration: none;
	padding-left:30px;
	margin-top:10px;
	margin-bottom:10px;
  }
  
  .mobile-dropdown-menu a:hover {
    color: var(--gold);
  }

  .mobile-toggle-icon {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 20px;
    color: var(--gold);
  }

  .mobile-nav-bottom-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
	padding-left:30px;
  }

  .mobile-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--blue);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 50px 30px 30px;
    font-size: 13px;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo-img {
    max-width: 250px;
    margin-bottom: 10px;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
  }

  .footer-links a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: var(--white);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1250px) {
    .nav-links a { padding: 18px 11px; font-size: 12px; }
  }

  @media (max-width: 1250px) {
  
  
  .hero-cta {
  margin-top:2vh;
  margin-left:1.5vw;
  border:1px solid #fff;
  }
  
  
  
  .nav-inner {
  display:none;
  }
  
    .topbar-right-wrapper {
		padding-right:60px;
	  }
  
	  .kiwanisfly {
		bottom:-30px !important;
		right:15px !important;
		transform: scale(0.8);
	  }
  
  
  
    .slider-btn {
    position: absolute;
	top:auto;
    bottom: 20px;
  }
  
  
  
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-inner { justify-content: space-between; padding: 8px 20px; }

    .boxes {
      grid-template-columns: repeat(2, 1fr);
      margin-top: 20px;
      padding: 0 16px;
    }

    .box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

    .intro {
      grid-template-columns: 1fr;
      gap: 30px;
      padding: 60px 24px;
    }
.hero { 
    height: auto;           /* Entfernt die 60vh/55vh Begrenzung */
    min-height: auto;       /* Entfernt Mindesthöhen */
    aspect-ratio: 1 / 1;    /* Erzwingt ein quadratisches Format (Breite = Höhe) */
  }
    
    .slide-content {
      left: 0;
      top: 0;
      transform: none;
      width: 100%;
      height: 100%;
      padding: 60px 24px;
      justify-content: center;
    }

    /* Mobile Slider Images (Square) */
    .slide-1 { background: url('slide_1_mobile.png') center/cover no-repeat; }
    .slide-2 { background: url('slide_2_mobile.png') center/cover no-repeat; }
    .slide-3 { background: url('slide_3_mobile.png') center/cover no-repeat; }

    /* Mobile Hotspot Size/Position */
    .slide1-hotspot {
      left: 20px;
      width: 50px;
    }
  }

  @media (max-width: 600px) {
    .topbar { padding: 8px 16px; }
    .topbar-right-wrapper { display: none; } /* Hide on mobile topbar, move to mobile menu */

    .boxes {
      grid-template-columns: repeat(2, 1fr);
      gap: 1;
      margin-top: 20px;
    }


    .hero-title { font-size: 36px; }

    .partner-logo-box { width: 150px; height: 70px; }
    .partner-section { padding: 50px 20px; }
    .headliners-section { padding: 50px 20px; }

    .intro-left h2 { font-size: 36px; }
  }
  
  /* KIWANIS FLY BUTTON */
  .kiwanisfly {
    position: fixed;
    bottom: 20px;
    right: 30px;
    background: #F8F5EF;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 900;
  }
  
  .kiwanisfly img {
    width: 80px;
    height: auto;
    margin: 10px;
    margin-bottom: 0px;
  }
  
  .flyspan {
    display: block;
    margin: 15px;
    margin-top: 0px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
  }
