/* ========================================
   APRIL-SCHERZ.COM - Main Stylesheet
   Lustiges Narren-Theme mit Lila/Pink/Gelb
   ======================================== */

/* Skip-Link für Barrierefreiheit */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

:root {
    /* Narren-Farben - Lila/Pink */
    --primary: #9B59B6;           /* Lila */
    --primary-light: #BB8FCE;     /* Helles Lila */
    --primary-dark: #7D3C98;      /* Dunkles Lila */
    --secondary: #E91E63;         /* Pink/Magenta */
    --accent: #FFD700;            /* Gold/Gelb */
    
    /* Helle Basis */
    --cream: #F8F4FC;             /* Helles Lavendel */
    --cream-dark: #EDE7F6;        /* Dunkleres Lavendel */
    --cream-light: #FDFBFF;       /* Fast Weiß */
    
    /* Kontrast-Farben */
    --text-dark: #2E1A47;         /* Dunkellila für Text */
    --text-medium: #4A3463;       /* Mittleres Lila */
    --text-muted: #7B6B8A;        /* Gedämpftes Lila */
    --white: #FFFFFF;
    
    /* Akzente */
    --confetti-pink: #FF69B4;     /* Pink */
    --confetti-yellow: #FFE135;   /* Gelb */
    
    /* Gradienten */
    --gradient-sunrise: linear-gradient(135deg, #9B59B6 0%, #E91E63 50%, #FFD700 100%);
    --gradient-sky: linear-gradient(180deg, #9B59B6 0%, #BB8FCE 30%, #E8DAEF 60%, #F8F4FC 100%);
    --gradient-warm: linear-gradient(180deg, #F8F4FC 0%, #EDE7F6 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* FLOATING ELEMENTS (Konfetti) */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.floating-element {
    position: absolute;
    opacity: 0.08;
    animation: float 20s infinite ease-in-out;
}
/* Floating elements nur auf Startseite sichtbar - auf Unterseiten ausblenden */
body:has(.page-hero) .floating-elements {
    display: none;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* HEADER */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    padding: 1rem 2rem;
    background: linear-gradient(180deg, rgba(248, 244, 252, 0.98) 0%, rgba(248, 244, 252, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(155, 89, 182, 0.15);
    box-shadow: 0 2px 20px rgba(155, 89, 182, 0.08);
}
.header-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-badge {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    background: var(--gradient-sunrise);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
}
nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-link:hover { color: var(--primary); background: rgba(155, 89, 182, 0.1); }
.nav-link.active { color: var(--primary); }
.nav-cta { 
    background: var(--gradient-sunrise); 
    color: var(--white) !important; 
    font-weight: 600; 
    margin-left: 0.5rem;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}
.nav-cta:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
    background: var(--gradient-sunrise) !important;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}
.nav-dropdown > .nav-link::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    padding: 2.5px;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover > .nav-link::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(253, 251, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 16px;
    padding: 1rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(46, 26, 71, 0.15);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: rgba(155, 89, 182, 0.1);
    color: var(--primary);
}
.dropdown-menu .dropdown-icon {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

/* Mega Menu */
.mega-menu {
    min-width: 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--primary); transition: all 0.3s ease; }

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-sky);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--cream) 100%);
    z-index: 1;
}
.hero-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    z-index: 0;
}
.sun-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(233, 30, 99, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: pulse-sun 4s infinite ease-in-out;
}
@keyframes pulse-sun {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}
.hero-content { text-align: center; max-width: 900px; position: relative; z-index: 10; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.15);
}
.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.hero h1 span {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    color: var(--text-medium);
    margin-top: 0.5rem;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* PAGE HERO (Subpages) */
.page-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, #7D3C98 0%, #9B59B6 50%, #BB8FCE 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}
.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.page-hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.page-hero .breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.page-hero .breadcrumb a:hover {
    color: var(--cream);
    text-decoration: underline;
}
.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* COUNTDOWN */
.countdown-container {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.15);
    border: 1px solid rgba(155, 89, 182, 0.2);
}
.countdown-label-top {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.countdown-items {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.countdown-item {
    min-width: 90px;
    padding: 1rem 1.5rem;
    background: var(--gradient-sunrise);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.25);
}
.countdown-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.countdown-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}
.sunrise-time {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}
.sunrise-time span {
    font-weight: 600;
    color: var(--primary);
}

/* BUTTONS */
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: inherit;
}
.btn-primary { 
    background: var(--gradient-sunrise); 
    color: var(--white);
    box-shadow: 0 4px 20px rgba(155, 89, 182, 0.35);
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.45); 
}
.btn-secondary { 
    background: var(--white); 
    color: var(--text-dark); 
    border: 2px solid rgba(155, 89, 182, 0.3);
}
.btn-secondary:hover { 
    background: rgba(155, 89, 182, 0.05); 
    border-color: var(--primary); 
    color: var(--primary); 
}

/* SECTIONS */
section { padding: 6rem 2rem; position: relative; z-index: 1; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { 
    display: inline-block; 
    font-size: 0.8rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: var(--primary); 
    margin-bottom: 1rem;
    background: rgba(155, 89, 182, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}
.section-title { 
    font-family: Georgia, 'Times New Roman', serif; 
    font-size: clamp(2rem, 4vw, 3rem); 
    font-weight: 700; 
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.section-subtitle { 
    color: var(--text-muted); 
    max-width: 600px; 
    margin: 0 auto; 
}

/* GALLERY */
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream-dark);
    border: 1px solid rgba(155, 89, 182, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.08);
}
.gallery-item:hover { 
    transform: translateY(-10px); 
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(46, 26, 71, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-weight: 600; }

/* FEATURES */
.features-section { background: var(--gradient-warm); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.feature-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(155, 89, 182, 0.1);
    border-radius: 24px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.05);
}
.feature-card:hover { 
    background: var(--white); 
    border-color: var(--primary); 
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.15);
}
.feature-icon { 
    width: 70px; 
    height: 70px; 
    background: rgba(155, 89, 182, 0.1); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 2rem; 
    margin-bottom: 1.5rem;
}
.feature-card h3 { 
    font-family: Georgia, 'Times New Roman', serif; 
    font-size: 1.25rem; 
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }
.feature-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    color: var(--primary); 
    font-weight: 600; 
    margin-top: 1rem; 
    font-size: 0.9rem; 
}

/* QUOTES */
.quotes-section { background: var(--cream); }
.quotes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.quote-card {
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid rgba(155, 89, 182, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.05);
}
.quote-card::before { 
    content: '💡'; 
    font-size: 3rem; 
    position: absolute; 
    top: 1rem; 
    left: 1.5rem; 
    opacity: 0.3;
}
.quote-text { 
    font-family: Georgia, 'Times New Roman', serif; 
    font-size: 1.1rem; 
    font-style: normal; 
    line-height: 1.6; 
    margin-bottom: 1.5rem; 
    position: relative; 
    z-index: 1;
    color: var(--text-dark);
}
.quote-copy-btn { 
    padding: 0.75rem 1.5rem; 
    background: rgba(155, 89, 182, 0.1); 
    border: 1px solid var(--primary); 
    color: var(--primary); 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 0.875rem; 
    transition: all 0.3s ease; 
    font-family: inherit; 
}
.quote-copy-btn:hover { background: var(--primary); color: var(--white); }

/* TRADITIONS */
.traditions-section { background: var(--gradient-warm); }
.traditions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.tradition-card { 
    display: flex; 
    gap: 1.5rem; 
    padding: 2rem; 
    background: var(--white); 
    border: 1px solid rgba(155, 89, 182, 0.1); 
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.05);
    transition: all 0.3s ease;
}
.tradition-card:hover { 
    border-color: rgba(155, 89, 182, 0.3);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
}
.tradition-flag { font-size: 2.5rem; }
.tradition-content h3 { 
    font-family: Georgia, 'Times New Roman', serif; 
    font-size: 1.125rem; 
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.tradition-content p { color: var(--text-muted); font-size: 0.9rem; }

/* INFO */
.info-section { background: var(--cream); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.info-card { 
    padding: 2.5rem; 
    background: var(--white); 
    border: 1px solid rgba(155, 89, 182, 0.15); 
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.05);
}
.info-card h3 { 
    font-family: Georgia, 'Times New Roman', serif; 
    font-size: 1.5rem; 
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}
.info-card h3 span { color: var(--primary); }
.info-card p { color: var(--text-muted); margin-bottom: 1rem; }

/* FOOTER */
footer { 
    background: var(--text-dark); 
    border-top: 4px solid var(--primary); 
    padding: 4rem 2rem 2rem; 
    position: relative; 
    z-index: 1; 
}
.footer-content { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 300px; }
.footer-brand h3 { 
    color: var(--white); 
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 0.75rem; 
}
.footer-brand .logo { color: var(--white); font-size: 1.3rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; margin: 1rem 0 1.5rem; }
.footer-column h4 { 
    color: var(--white); 
    font-size: 0.9rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 1.25rem; 
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--accent); }
.footer-bottom { 
    padding-top: 2rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}
.footer-copyright { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 1024px) { 
    .footer-grid { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 768px) {
    nav { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        flex-direction: column; 
        background: rgba(253, 251, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-top: 1px solid rgba(155, 89, 182, 0.1);
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 20px 40px rgba(46, 26, 71, 0.1);
    }
    nav.active { display: flex; }
    .mobile-toggle { display: flex; }
    
    /* Mobile Dropdown */
    .nav-dropdown { width: 100%; }
    .nav-dropdown > .nav-link { 
        width: 100%; 
        justify-content: space-between;
        padding: 1rem;
        border-bottom: 1px solid rgba(155, 89, 182, 0.1);
        cursor: pointer;
    }
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(155, 89, 182, 0.05);
        border: none;
        border-left: 3px solid var(--primary);
        border-radius: 0;
        padding: 0.5rem 0;
        margin: 0 0 0.5rem 0;
        min-width: 100%;
        box-shadow: none;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block !important;
    }
    .mega-menu {
        grid-template-columns: 1fr;
        min-width: 100%;
    }
    .dropdown-menu a {
        padding: 0.85rem 1.5rem;
        color: var(--text-dark) !important;
        font-weight: 500;
        background: transparent !important;
        transform: none !important;
    }
    .dropdown-menu a:hover,
    .dropdown-menu a:active,
    .dropdown-menu a:focus {
        background: transparent !important;
        color: var(--primary) !important;
        transform: none !important;
    }
    .dropdown-menu .dropdown-icon {
        font-size: 1.2rem;
    }
    nav > a.nav-link {
        padding: 1rem;
        border-bottom: 1px solid rgba(155, 89, 182, 0.1);
    }
    .nav-cta {
        margin: 1rem 0 0 0 !important;
        text-align: center;
        justify-content: center;
    }
    
    .countdown-items { flex-wrap: wrap; }
    .countdown-item { min-width: 80px; padding: 1rem; }
    .countdown-number { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .traditions-grid, .quotes-grid { grid-template-columns: 1fr; }
    
    .hero-decoration { display: none; }
}

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Hover-Effekte für Touch-Geräte deaktivieren */
@media (hover: none) {
    .gallery-item:hover { transform: none; }
    .gallery-item:hover img { transform: none; }
    .gallery-overlay { opacity: 1; }
    .feature-card:hover { transform: none; }
    .btn-primary:hover, .btn-secondary:hover { transform: none; }
}

/* STREICH CARDS */
.streich-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.streich-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(155, 89, 182, 0.1);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.05);
    transition: all 0.3s ease;
}
.streich-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.1);
    transform: translateX(5px);
}
.streich-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-sunrise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.streich-content h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.streich-content .streich-desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.streich-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.streich-meta span {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.difficulty {
    background: rgba(155, 89, 182, 0.1);
    color: var(--primary);
}
.difficulty.easy { background: rgba(46, 204, 113, 0.1); color: #27ae60; }
.difficulty.medium { background: rgba(241, 196, 15, 0.1); color: #f39c12; }
.difficulty.hard { background: rgba(231, 76, 60, 0.1); color: #e74c3c; }
.target, .time, .age {
    background: rgba(155, 89, 182, 0.05);
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .streich-card {
        flex-direction: column;
        text-align: center;
    }
    .streich-number {
        margin: 0 auto;
    }
}

/* CONTENT TEXT */
.content-text {
    max-width: 800px;
    margin: 0 auto;
}
.content-text h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}
.content-text h3:first-child {
    margin-top: 0;
}
.content-text p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.8;
}
.content-text ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-medium);
}
.content-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

/* FAQ ITEMS */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(155, 89, 182, 0.1);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(46, 26, 71, 0.05);
}
.faq-item h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.faq-item p {
    color: var(--text-medium);
    line-height: 1.7;
}
