/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #ff6b35;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Karnevalswagen Animation */
.karnevalswagen {
    position: relative;
    width: 300px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
}

.wagen-basis {
    width: 250px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 20px;
    position: absolute;
    bottom: 20px;
    left: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.wagen-deko {
    font-size: 4rem;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: spin 4s linear infinite;
}

.wagen-fahne {
    font-size: 2rem;
    position: absolute;
    top: 30px;
    right: 20px;
    animation: wave 2s ease-in-out infinite;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes spin {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.95);
    padding: 80px 0;
    margin: 50px 0;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.about-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* News Section */
.news {
    background: rgba(255, 255, 255, 0.9);
    padding: 80px 0;
    margin: 50px 0;
    border-radius: 20px;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #ff6b35;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Page Header */
.page-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.konfetti-trigger {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.konfetti-trigger:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Termine Styles */
.termine-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 0;
    margin: 2rem 0;
}

.termine-kategorie {
    margin-bottom: 4rem;
}

.termine-kategorie h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 5px solid #ff6b35;
}

.termine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.termin-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    transition: transform 0.3s ease;
}

.termin-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.termin-card.highlight {
    border: 3px solid #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.termin-datum {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.datum-tag {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.datum-monat {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.termin-info {
    flex: 1;
    padding: 1.5rem;
}

.termin-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.termin-zeit, .termin-ort {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.termin-beschreibung {
    color: #555;
    font-size: 0.95rem;
    margin-top: 0.8rem;
    line-height: 1.5;
}

.termin-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.termin-status.wichtig {
    background: #dc3545;
    animation: pulse 2s infinite;
}

.termin-card {
    position: relative;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Hinweise Section */
.hinweise {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.hinweise h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.hinweise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hinweis-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hinweis-card h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Galerie Styles */
.galerie-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.galerie-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.galerie-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 0;
    margin: 2rem 0;
}

.galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.galerie-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.galerie-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.galerie-placeholder {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.galerie-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galerie-item:hover .galerie-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.video-section h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: scale(1.02);
}

.video-placeholder {
    background: linear-gradient(135deg, #333, #555);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.play-button {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-button {
    opacity: 1;
}

.video-info {
    text-align: center;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Kontakt Styles */
.kontakt-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 0;
    margin: 2rem 0;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.kontakt-info h2,
.kontakt-form-section h2 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.kontakt-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.kontakt-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.kontakt-icon {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.kontakt-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.kontakt-details p {
    color: #666;
    margin: 0.2rem 0;
}

/* Social Buttons */
.social-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.social-btn.facebook { background: #1877f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.whatsapp { background: #25d366; }
.social-btn.youtube { background: #ff0000; }

/* Form Styles */
.kontakt-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.submit-btn {
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Mitgliedschaft Section */
.mitgliedschaft-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.mitgliedschaft-section h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.mitgliedschaft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.vorteile-liste {
    list-style: none;
    margin-top: 1rem;
}

.vorteile-liste li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.preis-karten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.preis-karte {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.preis-karte:hover {
    transform: translateY(-5px);
}

.preis-karte.highlight {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.preis-karte h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.preis {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    line-height: 1;
}

.preis-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.preis-karte p {
    color: #555;
    font-size: 0.95rem;
}

.mitgliedschaft-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mitgliedschaft-cta h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mitgliedschaft-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Vorstand Section */
.vorstand-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.vorstand-section h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.vorstand-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vorstand-card:hover {
    transform: translateY(-5px);
}

.vorstand-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vorstand-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.vorstand-position {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 1rem;
}

.vorstand-kontakt {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.vorstand-info {
    color: #555;
    font-size: 0.95rem;
    font-style: italic;
}

/* Anfahrt Section */
.anfahrt-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 0;
    margin: 2rem 0;
    border-radius: 20px;
}

.anfahrt-section h2 {
    text-align: center;
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.anfahrt-info h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.anfahrt-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.anfahrt-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.anfahrt-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.anfahrt-item h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.karte-placeholder {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: white;
}

.karte-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.karte-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.karte-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.maps-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.maps-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul a:hover {
    opacity: 1;
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Konfetti */
#konfetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.konfetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff6b35;
    animation: konfetti-fall linear forwards;
}

@keyframes konfetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 50px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .kontakt-grid,
    .mitgliedschaft-grid,
    .anfahrt-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .termine-grid {
        grid-template-columns: 1fr;
    }

    .termin-card {
        flex-direction: column;
    }

    .termin-datum {
        min-width: auto;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .galerie-filter {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-grid,
    .news-grid,
    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .social-buttons {
        flex-direction: column;
    }

    .preis-karten {
        grid-template-columns: 1fr;
    }

    .vorstand-grid {
        grid-template-columns: 1fr;
    }
}