/* ================================
   HEADER STYLES - Medieval Modern mit Goldenen Elementen
   ================================ */

:root {
    --gold-primary: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941e;
    --medieval-dark: #1a1410;
    --medieval-darker: #0f0d0a;
    --parchment: #f5ead6;
    --parchment-dark: #e8dcc4;
    --iron: #3a3632;
}

.site-header {
    background: linear-gradient(to bottom, rgba(26, 20, 16, 0.97), rgba(15, 13, 10, 0.95));
    backdrop-filter: blur(12px);
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, transparent, var(--gold-primary), transparent) 1;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: var(--parchment);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.6),
        inset 0 -1px 0 rgba(212, 175, 55, 0.1);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(212, 175, 55, 0.3) 20%, 
        rgba(244, 208, 63, 0.5) 50%, 
        rgba(212, 175, 55, 0.3) 80%, 
        transparent);
    opacity: 0.6;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    position: relative;
}

/* LOGO - Mittelalterliches Wappen-Design */
.site-header .logo {
    font-size: 1.5rem;
    font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--parchment);
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.site-header .logo i {
    color: var(--gold-primary);
    font-size: 2rem;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    transition: all 0.4s ease;
    position: relative;
}

.site-header .logo i::before {
    position: relative;
    z-index: 2;
}

.site-header .logo i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease;
}

.site-header .logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

.site-header .logo:hover {
    color: var(--gold-light);
    text-shadow: 
        0 0 30px rgba(244, 208, 63, 0.6),
        2px 2px 6px rgba(0, 0, 0, 0.9);
}

.site-header .logo:hover i {
    color: var(--gold-light);
    filter: drop-shadow(0 0 20px rgba(244, 208, 63, 0.8));
    transform: scale(1.1);
}

.site-header .logo:hover i::after {
    width: 180%;
    height: 180%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3), transparent 70%);
}

/* MENU TOGGLE (Mobile) - Mittelalterliches Design */
.menu-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 30, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.2), transparent);
    transition: left 0.5s ease;
}

.menu-toggle:hover {
    color: var(--gold-light);
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 148, 30, 0.1));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.menu-toggle:hover::before {
    left: 100%;
}

/* MAIN NAVIGATION - Mittelalterlich Modern */
.main-navigation ul {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.main-navigation ul li {
    position: relative;
    margin: 0;
}

.main-navigation ul li a {
    display: block;
    line-height: 1.5;
    color: var(--parchment);
    padding: 0.85rem 1.5rem;
    white-space: nowrap;
    border: 2px solid transparent;
    border-radius: 2px;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Goldener Glanz-Effekt */
.main-navigation ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.15), 
        transparent);
    transition: left 0.6s ease;
}

/* Untere goldene Linie */
.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-primary), var(--gold-dark));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Hover Effects - Mittelalterlicher Goldglanz */
.main-navigation ul li:hover > a {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.12), 
        rgba(184, 148, 30, 0.08));
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(244, 208, 63, 0.1),
        0 0 20px rgba(212, 175, 55, 0.15);
    text-shadow: 
        0 0 10px rgba(244, 208, 63, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.8);
}

.main-navigation ul li:hover > a::before {
    left: 100%;
}

.main-navigation ul li:hover > a::after {
    width: 80%;
}

/* Active/Selected State - Aktives Wappen */
.main-navigation ul li.selected > a {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.18), 
        rgba(184, 148, 30, 0.12));
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(244, 208, 63, 0.15),
        inset 0 -1px 0 rgba(212, 175, 55, 0.2);
    font-weight: 600;
    text-shadow: 
        0 0 15px rgba(244, 208, 63, 0.7),
        2px 2px 4px rgba(0, 0, 0, 0.9);
}

.main-navigation ul li.selected > a::after {
    width: 90%;
}

/* DROPDOWN - Mittelalterliches Pergament-Design */
.main-navigation ul li ul {
    position: absolute;
    background: linear-gradient(to bottom, 
        rgba(26, 20, 16, 0.98), 
        rgba(15, 13, 10, 0.97));
    backdrop-filter: blur(24px) saturate(180%);
    min-width: 240px;
    text-align: left;
    z-index: 999;
    display: none;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 0;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(212, 175, 55, 0.15),
        0 0 40px rgba(212, 175, 55, 0.2);
    top: calc(100% + 12px);
    left: 0;
    overflow: hidden;
    animation: dropdownFadeIn 0.3s ease;
}

.main-navigation ul li ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, 
        transparent, 
        var(--gold-primary), 
        transparent);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-navigation ul li ul li {
    display: block;
    margin: 0;
}

.main-navigation ul li ul li a {
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-right: none;
    border-top: none;
}

.main-navigation ul li ul li:last-child a {
    border-bottom: none;
}

.main-navigation ul li ul li:hover > a {
    background: linear-gradient(to right, 
        rgba(212, 175, 55, 0.2), 
        rgba(212, 175, 55, 0.1));
    padding-left: 2rem;
    border-left-color: var(--gold-primary);
    box-shadow: inset 4px 0 12px rgba(212, 175, 55, 0.15);
}

/* CHILD INDICATOR - Mittelalterlicher Pfeil */
.main-navigation .has-children > a {
    padding-right: 3rem;
    position: relative;
}

.main-navigation .has-children > a:after {
    font-family: 'Font Awesome 6 Free';
    content: '\f107';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    font-weight: 900;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

.main-navigation .has-children:hover > a:after {
    opacity: 1;
    color: var(--gold-light);
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(0 0 8px rgba(244, 208, 63, 0.6));
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-toggle {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 148, 30, 0.05));
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-primary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.6rem 0.8rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.search-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    transition: transform 0.4s ease;
}

.search-toggle:hover {
    color: var(--gold-light);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.search-toggle:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

/* ================================
   FOOTER STYLES - Mittelalterliches Pergament
   ================================ */

.site-footer {
    background: linear-gradient(to top, 
        rgba(15, 13, 10, 0.98), 
        rgba(26, 20, 16, 0.96));
    backdrop-filter: blur(20px);
    color: var(--parchment-dark);
    border-top: 3px solid;
    border-image: linear-gradient(to right, transparent, var(--gold-primary), transparent) 1;
    width: 100%;
    margin-top: auto;
    position: relative;
    box-shadow: 
        0 -4px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(212, 175, 55, 0.4) 20%, 
        rgba(244, 208, 63, 0.6) 50%, 
        rgba(212, 175, 55, 0.4) 80%, 
        transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.site-footer::after {
    content: '✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-primary);
    font-size: 0.9rem;
    letter-spacing: 1rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    opacity: 0.6;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

/* FOOTER CONTENT */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.footer-content::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent);
}

.footer-section {
    padding: 1.5rem;
    position: relative;
}

.footer-section::before {
    content: '◆';
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold-primary);
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer-section h4 {
    color: var(--gold-light);
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    text-shadow: 
        0 0 15px rgba(244, 208, 63, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold-primary), transparent);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* FOOTER LOGO - Wappen-Stil */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    position: relative;
}

.footer-logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.footer-logo h3 {
    color: var(--parchment);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 0;
    font-size: 1.6rem;
    letter-spacing: 3px;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-description {
    color: rgba(232, 227, 217, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
}

/* FOOTER NAVIGATION */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-nav li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.footer-nav li:hover::before {
    color: var(--gold-light);
    left: 0.25rem;
}

.footer-nav a {
    color: rgba(232, 227, 217, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Cinzel', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.4);
    padding-left: 0.5rem;
}

/* FOOTER LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(232, 227, 217, 0.8);
    transition: all 0.3s ease;
}

.footer-links li:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.footer-links a {
    color: rgba(232, 227, 217, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Cinzel', sans-serif;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.4);
}

.footer-links i {
    color: var(--gold-primary);
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
    transition: all 0.3s ease;
}

.footer-links li:hover i {
    color: var(--gold-light);
    filter: drop-shadow(0 0 10px rgba(244, 208, 63, 0.6));
}

/* SOCIAL LINKS - Mittelalterliche Siegel */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15), 
        rgba(184, 148, 30, 0.08));
    color: var(--gold-primary);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 208, 63, 0.3), transparent);
    transition: transform 0.4s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--gold-primary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.25), 
        rgba(184, 148, 30, 0.15));
    color: var(--gold-light);
    transform: translateY(-4px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.3);
}

.social-link:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.social-link:hover::after {
    opacity: 1;
}

/* FOOTER BOTTOM - Mittelalterliches Siegel */
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.copyright {
    font-size: 0.95rem;
    color: rgba(232, 227, 217, 0.65);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.footer-sigil {
    font-size: 1.8rem;
    letter-spacing: 1.5rem;
    color: var(--gold-primary);
    opacity: 0.5;
    font-family: 'Cinzel', serif;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
    margin: 1.5rem 0;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.5),
            0 0 40px rgba(212, 175, 55, 0.3);
    }
    50% {
        opacity: 0.7;
        text-shadow: 
            0 0 30px rgba(244, 208, 63, 0.7),
            0 0 60px rgba(212, 175, 55, 0.5);
    }
}

.footer-legal {
    font-size: 0.9rem;
    color: rgba(232, 227, 217, 0.55);
    margin-top: 1rem;
    font-family: 'Crimson Text', Georgia, serif;
    font-style: italic;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .site-header .container {
        padding: 0 1rem;
    }
    
    .header-inner {
        flex-wrap: wrap;
        padding: 0.5rem 0;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }
    
    .main-navigation {
        order: 3;
        width: 100%;
        display: none;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        background: linear-gradient(to bottom, 
            rgba(26, 20, 16, 0.98), 
            rgba(15, 13, 10, 0.97));
        backdrop-filter: blur(24px);
        border: 2px solid rgba(212, 175, 55, 0.4);
        border-radius: 4px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 
            0 12px 48px rgba(0, 0, 0, 0.7),
            0 0 40px rgba(212, 175, 55, 0.2);
    }
    
    .main-navigation ul li a {
        padding: 1rem 1.5rem;
        border-radius: 2px;
        width: 100%;
    }
    
    .header-actions {
        order: 1;
        margin-left: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-section {
        text-align: center;
        padding: 1rem;
    }
    
    .footer-section::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-nav li {
        padding-left: 0;
    }
    
    .footer-nav li::before {
        display: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .site-footer .container {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-sigil {
        font-size: 1.4rem;
        letter-spacing: 1rem;
    }
}

/* ================================
   ACCESSIBILITY & ANIMATIONS
   ================================ */

.main-navigation ul li a:focus,
.site-header .logo:focus,
.search-toggle:focus,
.menu-toggle:focus {
    outline: 3px solid var(--gold-primary);
    outline-offset: 3px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    .site-header .logo:hover i,
    .main-navigation ul li:hover > a,
    .social-link:hover,
    .footer-sigil {
        transition: none;
        transform: none;
        animation: none;
    }
    
    .main-navigation ul li a::before,
    .search-toggle::before,
    .menu-toggle::before {
        display: none;
    }
}

/* Goldener Partikel-Effekt (optional) */
@keyframes goldParticle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
}

.site-header::after {
    content: '✦';
    position: absolute;
    color: var(--gold-primary);
    font-size: 0.8rem;
    opacity: 0;
    animation: goldParticle 4s ease-in-out infinite;
    pointer-events: none;
    top: 50%;
    left: 20%;
}

/* HINZUGEFÜGT!!


/* ================================
   FOOTER & LIGHTBOX FIX - DOM ÜBERLAGERUNG
   ================================ */

/* Footer hat niedrigen z-index */
.site-footer {
    position: relative;
    z-index: 100 !important;
}

/* Lightbox erhält MAXIMALEN z-index */
.lightbox {
    position: fixed !important;
    z-index: 999999 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
}

/* Lightbox Buttons über allem */
.lightbox-close,
.lightbox-nav {
    z-index: 1000000 !important;
}

/* Body bei aktiver Lightbox fixieren */
body.lightbox-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Footer ausblenden bei Lightbox */
body.lightbox-open .site-footer {
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}