/* ===== CSS-Variablen ===== */
:root {
    --gold: #C9A227;
    --gold-light: #E8D5A3;
    --sand-light: #E8DCC8;
    --cream: #FAF7F0;
    --charcoal: #2C2C2C;
    --forest: #2D4A3E;
    --burgundy: #722F37;
    --warm-white: #FFFDF8;
}

/* ===== Reset & Basis ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Skip Link für Barrierefreiheit ===== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--charcoal);
    padding: 1rem 2rem;
    z-index: 1000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 10px;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.8) 0%, transparent 100%);
    transition: all 0.4s;
}

nav.scrolled {
    background: rgba(44, 44, 44, 0.95);
    padding: 1rem 4rem;
    backdrop-filter: blur(10px);
}

.nav-logo {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    z-index: 102;
    position: relative;
}

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

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* Hamburger-Menü Button (initial versteckt auf Desktop) */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 102;
    position: relative;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background: var(--gold);
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--forest) 100%);
}

.hero-image {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-size: cover;
    background-position: center;
    filter: sepia(20%) saturate(80%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.3) 0%, rgba(44, 44, 44, 0.1) 50%, rgba(44, 44, 44, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1.2s ease forwards;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero h1 span {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.hero-flags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.flag {
    width: 40px;
    height: 28px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.flag-de {
    background: linear-gradient(180deg, #000 33.33%, #DD0000 33.33%, #DD0000 66.66%, #FFCE00 66.66%);
}

.flag-fr {
    background: linear-gradient(90deg, #002395 33.33%, #FFF 33.33%, #FFF 66.66%, #ED2939 66.66%);
}

.flag-lu {
    background: linear-gradient(180deg, #ED2939 33.33%, #FFF 33.33%, #FFF 66.66%, #00A1DE 66.66%);
}

.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--gold);
    margin-top: 1.5rem;
}

.hero-date-icon {
    font-size: 1.5rem;
}

.hero-date-text {
    text-align: left;
}

.hero-date-text strong {
    display: block;
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: var(--gold);
}

.hero-date-text span {
    font-size: 0.8rem;
    color: var(--cream);
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-btn-primary {
    background: var(--gold);
    color: var(--charcoal);
}

.hero-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--cream);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-calendar-dropdown {
    position: relative;
}

.calendar-options {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--charcoal);
    border: 1px solid var(--gold);
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    z-index: 50;
    margin-top: 0.5rem;
}

.calendar-options.active {
    display: block;
}

.calendar-options a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
}

.calendar-options a:hover {
    background: rgba(201, 162, 39, 0.2);
}

.hero-hint {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.7;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
}

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

/* ===== SPONSORS ===== */
.section-sponsors {
    padding: 3rem 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand-light);
}

.sponsors-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.sponsors-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.sponsor-link {
    display: block;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
}

.sponsor-link.visible {
    opacity: 1;
    transform: translateY(0);
}

.sponsor-link img {
    height: 90px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s, transform 0.3s;
}

.sponsor-link:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
}

.section-alt {
    background: var(--sand-light);
}

.section-dark {
    background: var(--charcoal);
    color: var(--cream);
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}

.section-dark .section-title {
    color: var(--cream);
}

/* ===== EVENT INFO ===== */
.event-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.event-intro .lead {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.event-intro p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--warm-white);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--charcoal);
    font-size: 0.95rem;
    opacity: 0.8;
}

.event-info-box {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--warm-white);
    border-left: 4px solid var(--gold);
    max-width: 800px;
    margin: 0 auto;
}

.info-item {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-cal {
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.info-cal:hover {
    opacity: 1;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    margin: 0;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: sepia(10%);
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== KATEGORIEN ===== */
.categories-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    opacity: 0.9;
}

.featured-category {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(201, 162, 39, 0.05) 100%);
    border: 2px solid var(--gold);
}

.featured-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.featured-category h3 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.featured-category p {
    opacity: 0.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.category-card span {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.5rem;
}

.category-card h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-light);
}

/* ===== LOCATION / ANFAHRT ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--forest);
}

.location-address {
    padding: 1.5rem;
    background: var(--warm-white);
    border-left: 3px solid var(--gold);
    margin-bottom: 1.5rem;
    font-style: normal;
}

.location-address p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.maps-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.maps-link:hover {
    color: var(--forest);
    text-decoration: underline;
}

.location-directions {
    margin-bottom: 1.5rem;
}

.location-directions h4 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.location-directions p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.location-notice {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--burgundy) 0%, #8B3A42 100%);
    color: var(--cream);
    border-radius: 4px;
}

.location-notice strong {
    display: block;
    margin-bottom: 0.5rem;
}

.location-notice p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.map-container {
    min-height: 400px;
    background: var(--charcoal);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(30%) contrast(1.1);
}

/* OpenStreetMap 2-Klick-Lösung */
.map-consent-placeholder {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--warm-white) 100%);
    border: 2px dashed var(--sand-light);
    border-radius: 8px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-consent-content {
    padding: 2rem;
    max-width: 400px;
}

.map-consent-content p {
    margin: 0.5rem 0;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.map-consent-content a {
    color: var(--burgundy);
}

.map-consent-button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--burgundy);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.map-consent-button:hover {
    background: var(--charcoal);
}

/* ===== CTA SECTION (Anmeldung) ===== */
.cta-section {
    background: linear-gradient(135deg, var(--forest) 0%, #1A2E26 100%);
    color: var(--cream);
    text-align: center;
}

.cta-section .section-title {
    color: var(--cream);
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

/* ===== UNTERKÜNFTE ===== */
.unterkunft-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    opacity: 0.8;
}

.unterkunft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.unterkunft-card {
    display: block;
    padding: 2rem;
    background: var(--warm-white);
    text-decoration: none;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.unterkunft-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.unterkunft-card:hover,
.unterkunft-card:focus {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.unterkunft-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.unterkunft-icon-img {
    display: block;
    margin: 0 auto 1rem;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.unterkunft-card h4 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.unterkunft-card p {
    font-size: 0.9rem;
    color: var(--gold);
    margin: 0;
}

/* ===== KONTAKT ===== */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-card {
    background: var(--warm-white);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.kontakt-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.kontakt-card h3 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.kontakt-card p {
    line-height: 1.8;
}

.kontakt-card a {
    color: var(--gold);
    text-decoration: none;
}

.kontakt-card a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-brand h3 {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Icon Showcase */
.icon-showcase {
    max-width: 900px;
    margin: 2rem auto 3rem;
    text-align: center;
    background: var(--warm-white);
    padding: 2rem;
    border-radius: 8px;
    border: 3px solid var(--gold);
}

.icon-showcase img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* FAQ Category Titles */
.faq-category-title {
    font-family: Georgia, Cambria, 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.faq-category-title:first-of-type {
    margin-top: 0;
}

/* ===== MEDIA QUERIES ===== */

/* Tablets und kleine Laptops */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 2rem;
    }
    
    nav.scrolled {
        padding: 0.75rem 2rem;
    }
    
    .nav-logo {
        font-size: 1.1rem;
    }
    
    /* Hamburger-Menü anzeigen */
    .nav-toggle {
        display: block;
    }
    
    /* Desktop-Menü verstecken und als mobiles Slide-in Menü konfigurieren */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 101;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Menü sichtbar machen wenn aktiv */
    .nav-links.active {
        right: 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .gallery-grid,
    .location-grid,
    .kontakt-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsors-grid {
        gap: 1.5rem;
    }
    
    .sponsor-link img {
        height: 80px;
        max-width: 180px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
    }
    
    nav.scrolled {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo {
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .event-info-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .sponsor-link img {
        height: 70px;
        max-width: 160px;
    }
    
    .unterkunft-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Sehr kleine Smartphones */
@media (max-width: 480px) {
    .nav-logo {
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
