       /* Reset und Basis-Styling */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
  font-family: 'Roboto Slab', serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f5e9; /* Leicht beiger Hintergrund */
            overflow-x: hidden;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        /* Farbschema basierend auf dem neuen Logo */
        :root {
            --primary-color: #d3402a; /* Rotton aus dem Logo */
            --secondary-color: #0d4e4a; /* Petrolgrün aus dem Logo */
            --tertiary-color: #d4ae57; /* Gold/Beige aus dem Logo */
            --light-color: #f9f5e9; /* Heller vintage Beige Hintergrund */
            --dark-color: #333;
        }
        
        
     /* Lokale Schriften */

@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald-v53-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
  src: url('../fonts/oswald-v53-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('../fonts/roboto-slab-v34-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Slab';
  src: url('../fonts/roboto-slab-v34-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Pacifico';
  src: url('../fonts/pacifico-v22-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
        
        
        /* Allgemeine Styling-Elemente */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        section {
            padding: 60px 0;
        }
        
        h1, h2, h3 {
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
       
       h1, h2, h3, .section-title {
  font-family: 'Oswald', sans-serif;
}

.accent {
  font-family: 'Pacifico', cursive;
} 
        p {
            margin-bottom: 15px;
        }
        
        a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        a:hover {
            text-decoration: underline;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            background: var(--primary-color);
            color: white;
            border: none;
            cursor: pointer;
            border-radius: 3px;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #b8301e;
            text-decoration: none;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: url('../bilder/hero.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
        }
        
        .hero-logo {
            max-width: 80%;
            margin-bottom: 20px;
        }
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--light-color);
        }
        
        /* Navigation - Neue Version nach Brush Template */
        .main-nav {
            background-color: var(--secondary-color);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 40px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 30px;
        }
        
        .nav-link {
            color: var(--light-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            transition: color 0.3s;
            padding-bottom: 5px;
            position: relative;
        }
        
        .nav-link:hover {
            text-decoration: none;
            color: var(--tertiary-color);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--tertiary-color);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .bar {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: var(--light-color);
        }
        
        /* Video Section */
        .video-section {
            background-color: white;
            text-align: center;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        /* About Section */
        .about {
            background-color: var(--light-color);
        }
        
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Parallax Section - Angepasst mit Social Media Icons */
        .parallax {
            position: relative;
            height: 500px; /* Höher gemacht */
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            background-image: url('../bilder/robsee.jpg'); /* Hier dein Parallax-Bild einfügen */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .parallax-content {
            position: relative;
            z-index: 1;
            color: white;
            text-align: center;
            max-width: 900px;
            padding: 0 20px;
        }
        
        .parallax-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .parallax-text {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }
        
        /* Social Media Icons im Parallax */
        .parallax-social-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
        }
        
        .parallax-social-icon {
            font-size: 3rem;
            color: white;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.1);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }
        
        .parallax-social-icon:hover {
            color: var(--tertiary-color);
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.2);
            border-color: var(--tertiary-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-decoration: none;
        }
        
        /* Shows Section */
        .shows {
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }
        
        .shows-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .contact {
            font-size: 1.2rem;
            background-color: var(--secondary-color);
            color: var(--light-color);
            text-align: center;
        }
        
        .contact h2 {
            color: var(--light-color);
        }
        
        .contact a {
            color: var(--tertiary-color);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .social-icon {
            font-size: 2rem;
            color: var(--light-color);
            transition: color 0.3s;
        }
        
        .social-icon:hover {
            color: var(--tertiary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: var(--light-color);
            text-align: center;
            padding: 20px 0;
        }
        
        .footer-links {
            margin-top: 10px;
        }
        
        .footer-links a {
            color: var(--tertiary-color);
            margin: 0 10px;
        }
        
        /* Motel Retro Effect für Überschriften */
        .section-title {
            position: relative;
            display: inline-block;
            padding-bottom: 5px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* Scroll-Down-Button im Hero */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            z-index: 2;
        }
        
        .scroll-down-text {
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 5px;
            color: white;
        }
        
        .scroll-down-icon {
            width: 30px;
            height: 50px;
            border: 2px solid white;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            position: relative;
        }
        
        .scroll-down-icon::before {
            content: '';
            width: 4px;
            height: 10px;
            position: absolute;
            top: 8px;
            background-color: white;
            border-radius: 2px;
            animation: scrollAnimation 2s infinite;
        }
        
        @keyframes scrollAnimation {
            0% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateY(20px);
            }
        }
        
        /* Media Queries */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--secondary-color);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 20px 0;
                box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 15px 0;
            }
            
            .hero-logo {
                max-width: 90%;
            }
            
            .tagline {
                font-size: 1.2rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            /* Parallax fix für mobile Geräte */
            .parallax {
                background-attachment: scroll;
            }
            
            .parallax-social-links {
                gap: 20px;
            }
            
            .parallax-social-icon {
                font-size: 2rem;
                width: 60px;
                height: 60px;
            }
        }
        
 .youtube-placeholder {
  width: 100%;
  max-width: 800px;
  height: 450px;
  margin: 0 auto;
  background-color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.youtube-placeholder .play-button {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.7) url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMu' + 'b3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSIzMCIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik0yNSAyMEw0MCAzMEwyNS' + 'A0MCIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==') center center no-repeat;
  background-size: 40%;
  border-radius: 50%;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color); /* Orange aus deinem Farbschema */
  color: white;
  padding: 10px 15px;
  text-align: center;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner a {
  color: var(--tertiary-color);
  text-decoration: underline;
}

.cookie-banner button {
  margin-left: 10px;
  background: var(--tertiary-color);
  border: none;
  padding: 5px 10px;
  color: black;
  cursor: pointer;
  border-radius: 3px;
}

footer {
  margin-bottom: 80px; /* Platz schaffen für Cookie-Banner */
}

#presskit {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
}

#presskit h1, #presskit h2 {
  color: #0d4e4a; /* Motel Messias Secondary Color */
  margin-bottom: 20px;
}

.press-images, .press-assets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.press-images a, .press-assets a, #presskit p a {
  display: inline-block;
  background-color: #d3402a; /* Primary Color */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.press-images a:hover, .press-assets a:hover, #presskit p a:hover {
  background-color: #b72125; /* Darker hover color */
}

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  text-align: center;
  padding: 20px 0;
  font-size: 14px; /* kleiner für Copyright */
}

.partners {
  background-color: var(--light-color);
  padding: 40px 20px;
  text-align: center;
}
.partners img {

}
.partners .section-title {
  margin-bottom: 40px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logos a img {
  height: 50px;
  width: auto;
  transition: transform 0.3s;
}

.partner-logos a:hover img {
  transform: scale(1.1);
}

.footer-legal {
  font-size: 12px; /* noch kleiner für den rechtlichen Teil */
}

.footer-links {
  margin-top: 5px;
}

.footer-links a {
  color: var(--tertiary-color);
  margin: 0 8px;
  font-size: 12px;
}

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