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

:root {
    --primary-color: #2C2013;
    --secondary-color: #6B816D;
    --accent-color: #F6E8B9;
    --text-color: #F6E8B9;
    --light-bg: #2C2013;
    --dark-bg: #2C2013;
    --white: #F6E8B9;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--dark-bg);
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
}

h2 {
    color: var(--accent-color) !important;
}

/* Force all section headers to be yellow */
section h2,
.partner-header h2,
.team-header h2,
.fotoshow-header h2,
.termine-header h2,
.textwrap h2,
#kontakt h2,
#location h2,
#waswar h2 {
    color: var(--accent-color) !important;
}

/* Navigation */
.top-bar {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease;
    height: 44px;
}

.top-bar.scrolled {
    background: rgba(44, 32, 19, 0.97);
    box-shadow: 0 2px 10px rgba(44, 32, 19, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 2rem;
    padding-left: 220px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    height: 44px;
}

.nav-title {
    position: absolute;
    left: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
    color: rgba(107, 129, 109, 0.6);
}

.logo {
    position: fixed;
    left: 0.5rem;
    top: 10px;
    z-index: 1002;
    text-decoration: none;
}

/* Force logo to stay fixed on all tablet/desktop screens
   .top-bar .logo has higher specificity than responsive.css .logo */
@media (min-width: 768px) {
    .top-bar .logo {
        position: fixed !important;
        top: 10px !important;
        left: 0.5rem !important;
        transform: none !important;
        margin: 0 !important;
        display: block;
    }
    .top-bar .logo-image {
        height: 180px;
        width: auto;
    }
}

.logo-image {
    height: 180px;
    width: auto;
    transition: transform 0.3s ease;
    display: block;
}

.logo-image:hover {
    transform: scale(1.05);
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

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

.menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    line-height: 1;
    display: block;
}

.menu a:hover {
    color: var(--secondary-color);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    margin-top: 0;
    height: 100vh;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    max-width: 90vw;
    max-height: 90vh;
    width: 90vw;
    height: 90vh;
    object-fit: contain;
    animation: fadeInScale 1.5s ease;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 1s backwards;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 1.2s backwards;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.cta-button {
    display: inline-block;
    padding: 2rem 2.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 1.4s backwards;
    text-shadow: none;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-button-image {
    display: inline-block;
    text-decoration: none;
    animation: fadeInUp 1s ease 1.4s backwards;
    transition: transform 0.3s ease;
}

.ticket-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.ticket-button:hover {
    opacity: 1;
}

.ticket-button:hover span {
    color: var(--accent-color);
}

.ticket-button strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--accent-color);
}

/* Program Cards */
.program-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(246, 232, 185, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.program-card:hover {
    background: rgba(246, 232, 185, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.program-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.program-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.6;
}

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-bg);
}

section:nth-child(even) {
    background: var(--light-bg);
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

section p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Partner Slider - Ident wie Team */
.partner-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partner-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.partner-header .time {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.partner-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.partner-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.partner-member {
    flex: 0 0 340px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-member a {
    display: inline-block;
    line-height: 0;
    border: none;
    outline: none;
}

.partner-member img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: rgba(107, 129, 109, 0.18);
    padding: 1rem;
    box-sizing: border-box;
    border: 2px solid rgba(107, 129, 109, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.partner-member:hover img {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.partner-name {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.slider-btn {
    background: rgba(107, 129, 109, 0.25);
    border: 2px solid rgba(107, 129, 109, 0.5);
    color: var(--accent-color);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.slider-btn:hover {
    background: rgba(107, 129, 109, 0.55);
    border-color: var(--accent-color);
}

/* Footer Partners */
.footer-partners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.footer-partner-img {
    max-width: 60px;
    max-height: 30px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.6);
    transition: all 0.3s ease;
}

.footer-partner-img:hover {
    filter: brightness(0.9);
    transform: scale(1.1);
}

/* Impressum */
#impressum,
#datenschutz {
    background-color: var(--dark-bg);
    padding: 5rem 2rem;
    min-height: 100vh;
    max-width: 800px;
    margin: 0 auto;
}

#impressum h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.impressum-text {
    color: var(--text-color);
    line-height: 1.6;
}

.impressum-text p {
    margin-bottom: 2rem;
    text-align: left;
}

.impressum-text strong {
    color: var(--white);
    font-weight: 600;
}

.impressum-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-text a:hover {
    color: var(--white);
    text-decoration: underline;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

#kontakt p {
    text-align: center !important;
}

#kontakt h3 {
    text-align: center !important;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: center !important;
    display: block;
    width: 100%;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

/* Team Slider */
.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.team-links {
    margin-top: 2rem;
}

.team-links.mt-3 {
    margin-top: 3rem;
}

/* Subpage utilities */
.subpage-section {
    padding-top: 8rem;
}

/* Video Hero */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 32, 19, 0.55);
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

.video-hero-content h1 {
    font-family: 'Noto Serif Display', serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 300;
    color: var(--accent-color);
    letter-spacing: 6px;
    margin-bottom: 1rem;
    font-style: italic;
}

.video-hero-content p {
    font-size: 1rem;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.video-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--accent-color);
    opacity: 0.6;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    animation: bounce 2s infinite;
}

.video-hero-scroll::after {
    content: '↓';
    display: block;
    font-size: 1.4rem;
    margin-top: 0.3rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.video-item video {
    width: 100%;
    border-radius: 10px;
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.video-item p {
    text-align: center;
    margin-top: 0.75rem;
    color: var(--secondary-color);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-subheading {
    color: var(--accent-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    margin-left: 1rem;
}

.note-text {
    margin-top: 2rem;
    font-style: italic;
    color: var(--secondary-color);
}

.accent-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.accent-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.team-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.team-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-header .time {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.team-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.team-member {
    flex: 0 0 400px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-name {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.click-area {
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.click-area-left {
    left: -50vw;
    width: calc(50% + 50vw);
}

.click-area-right {
    right: -50vw;
    width: calc(50% + 50vw);
}


/* Program Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.program-card {
    background: rgba(107, 129, 109, 0.2);
    border: 1px solid rgba(107, 129, 109, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(44, 32, 19, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(107, 129, 109, 0.4);
    border-color: rgba(107, 129, 109, 0.6);
}

.program-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(107, 129, 109, 0.4), rgba(246, 232, 185, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.program-card-content {
    padding: 1.5rem;
}

.program-card h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.program-card p {
    color: var(--text-color);
}

/* Foto Show Section */
.fotoshow-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fotoshow-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.fotoshow-header .time {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.fotoshow {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foto-slide.active {
    opacity: 1;
}

.foto-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Location */
#location {
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
}

.location-intro {
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: var(--text-color);
    font-size: 1rem;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info {
    text-align: left;
}

.location-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.location-info p {
    text-align: left;
}

.location-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-map p {
    text-align: center;
    margin-top: 1rem;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(107, 129, 109, 0.5), rgba(246, 232, 185, 0.3));
    border: 2px solid rgba(107, 129, 109, 0.3);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.team-member h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.team-member p {
    color: var(--text-color);
}

/* Contact */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-info p {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Fixed Bottom Right Logo */
.fixed-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.fixed-logo:hover {
    opacity: 1;
}

.fixed-logo span {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2px;
}

.fixed-logo strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    color: var(--accent-color);
}

/* Footer */
footer {
    background: rgba(44, 32, 19, 0.95);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(107, 129, 109, 0.3);
}

footer nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

footer nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.1);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Termine Section - Identisch mit turm20 */
.termine-section {
    background: var(--dark-bg);
    padding: 5rem 2rem;
}

.termine-header {
    text-align: center;
    margin-bottom: 3rem;
}

.termine-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.termine-header .time {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-color);
    margin-bottom: 0;
    font-weight: 300;
}

.terminslider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.terminwrap {
    flex: 0 1 auto;
}

.termin {
    background: transparent;
    border: 1px solid var(--secondary-color);
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.termin:hover {
    border-color: var(--white);
    transform: translateY(-5px);
}

.termin a {
    text-decoration: none;
    display: block;
}

.termin p {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
}

.termin .event-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0.5rem 0;
}

.termin h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: capitalize;
}

.termin h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.termin p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.termin:hover p {
    color: var(--secondary-color);
}

/* Team Section - Identisch mit turm20 */
#team {
    background-color: var(--dark-bg);
    padding: 5rem 2rem;
}

.teamsilderfield {
    max-width: 1200px;
    margin: 0 auto;
}

.teamsilderwrap {
    position: relative;
}

.textwrap {
text-align: center;
margin-bottom: 3rem;
}

.textwrap h2 {
font-family: 'Poppins', sans-serif;
font-size: clamp(2rem, 4vw, 3.5rem);
color: var(--accent-color);
margin-bottom: 1rem;
font-weight: 500;
}

.textwrap .time {
font-family: 'Poppins', sans-serif;
font-size: clamp(1rem, 1.5vw, 1.125rem);
color: var(--text-color);
font-weight: 300;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-color);
    font-weight: 300;
}

.teamslider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.teamwrap {
    flex: 0 1 300px;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    padding: 0;
    margin: 0;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.teamwrap:hover {
    border-color: var(--white);
}

.teammitglied {
    background: transparent;
    padding: 0;
}

.imagewrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.imagewrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 40px 20px var(--dark-bg);
    pointer-events: none;
}

.imagewrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.teamwrap:hover .imagewrap img {
    transform: scale(1.05);
}

.teammitglied p {
    padding: 1.5rem;
    text-align: center;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--dark-bg);
    margin: 0;
}

.teammitglied .thik {
    font-weight: 500;
    color: var(--white);
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(44, 32, 19, 0.98);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(44, 32, 19, 0.5);
    }

    .menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 1.8rem;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE IMPROVEMENTS
   ======================================== */

/* Large Desktops (1200px+) */
@media (min-width: 1200px) {
    .nav-container {
        padding-left: 220px;
    }
}

/* Guarantee navbar padding across ALL breakpoints (high specificity) */
@media (max-width: 1200px) {
    .top-bar .nav-container {
        padding-top: 8px;
    }
    
    .program-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets and Small Desktops (768px - 1199px) */
@media (max-width: 1199px) {
    .nav-container {
        padding-left: 180px;
        padding-right: 1rem;
    }
    
    .nav-title {
        left: 80px;
        font-size: 1.5rem;
    }
    
    .logo-image {
        height: 180px;
    }

    .nav-container {
        height: 36px;
    }

    .hero-image {
        width: 100vw;
        height: 100vw;
        max-width: 100vw;
        max-height: 100vw;
    }
    
    .program-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .program-card {
        padding: 1.5rem 1.2rem;
        min-height: auto;
    }

    .program-card-image {
        height: 150px;
    }

    .program-card h3 {
        font-size: 1.2rem;
    }

    .program-card p,
    .program-card-content p {
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }
    
    .footer-partners {
        gap: 1rem;
    }
    
    .footer-partner-img {
        height: 50px;
    }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    /* Navigation */
    .top-bar {
        height: auto;
    }
    .nav-container {
        height: auto;
        padding: 8px 1rem;
        padding-left: 16px;
    }
    
    .nav-title {
        position: static;
        font-size: 1.1rem;
        left: auto;
        margin-left: 10px;
    }
    
    .logo {
        left: 0.25rem;
        top: 0;
    }
    
    .logo-image {
        height: 80px;
    }
    
    .menu {
        gap: 0.5rem;
    }
    
    .menu a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Program Section */
    .program-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .program-card {
        min-height: 200px;
    }
    
    .program-card-content h3 {
        font-size: 1.5rem;
    }
    
    .program-card-content p {
        font-size: 1rem;
    }
    
    /* Partner Section */
    .partner-slider {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .partner-member {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .slider-btn {
        display: none;
    }
    
    /* Footer */
    .footer-partners {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .footer-partner-img {
        height: 40px;
        max-width: 100px;
    }
    
    footer nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Fixed Logo */
    .fixed-logo {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
    }
    
    /* Termine Section */
    .termine-header h2 {
        font-size: 1.6rem;
    }
    
    .terminslider {
        flex-direction: column;
        align-items: center;
    }
    
    .termin {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    /* Team Section */
    .textwrap h2 {
        font-size: 1.6rem;
    }
    
    .teamslider {
        flex-direction: column;
        align-items: center;
    }
    
    .teamwrap {
        flex: 0 0 auto;
        width: 100%;
        max-width: 320px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding-left: 80px;
    }
    
    .nav-title {
        font-size: 0.9rem;
        display: none;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .menu a {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero {
        height: 100vh;
        margin-top: 0;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    section h2 {
        font-size: 1.4rem;
    }
    
    .program-card-content h3 {
        font-size: 1.2rem;
    }
    
    .footer-partner-img {
        height: 30px;
    }
}

/* Landscape Mode on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: 80vh;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
        padding-left: 100px;
    }
    
    .logo-image {
        height: 70px;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
    }
}
