:root {
    --primary-color: #00ff00;
    --background-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-color: #1a1a1a;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    padding-top: 72px; /* Höhe der Navigation + etwas Extra-Abstand */
}

/* Scroll-Offset für die Anker-Links */
html {
    scroll-padding-top: 80px; /* Etwas mehr als die Nav-Höhe */
    scroll-behavior: smooth;
}

/* Neon Text Effekt */
.neon-text {
    color: var(--text-color);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5),
                 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Navigation */
nav {
    background-color: var(--accent-color) !important;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background: var(--accent-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 12px;
    cursor: pointer;
    z-index: 99999 !important;
    position: fixed !important;
    top: 18px !important;
    right: 18px !important;
    box-shadow: 0 0 16px 2px #00ff00, 0 2px 8px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s, border-color 0.3s, background 0.2s;
}

.hamburger:hover, .hamburger:focus {
    background: #111;
    border-color: #00ff00 !important;
    box-shadow: 0 0 32px 8px #00ff00;
}

.hamburger i {
    color: var(--primary-color);
    font-size: 2.2rem;
    text-shadow: 0 0 8px #00ff00, 0 0 16px #00ff00;
    transition: color 0.2s, text-shadow 0.2s;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hauptnavigation */
.main-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
    left: 0;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a.active,
.nav-links a.active,
.mobile-nav .nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 8px #00ff00, 0 0 16px #00ff00;
}

.main-nav a.active::after,
.nav-links a.active::after,
.mobile-nav .nav-link.active::after {
    width: 100% !important;
    left: 0 !important;
    background-color: var(--primary-color) !important;
    content: '';
    position: absolute;
    height: 2px;
    bottom: 0;
    z-index: 2;
    display: block !important;
}

/* Logo */
.logo img {
    height: 40px;
    width: auto;
    display: block;
    max-width: 180px !important;
    max-height: 60px !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.5rem;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Social Stats */
.social-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.stat-box {
    background-color: var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.stat-box:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.stat-box i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box .count {
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
}

.stat-box .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Shop Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Neon Button */
.neon-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.neon-button:hover {
    background-color: var(--primary-color);
    color: var(--background-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('../img/Mainboard.webp') center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-logo {
    position: relative;
    z-index: 2;
    width: 400px;
    height: auto;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Footer/Kontakt Bereich */
.footer-content {
    background-color: rgba(0, 255, 0, 0.1);
    padding: 3rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/Kollege-Background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.footer-content > * {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 2.5rem;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin: 0.5rem 0 2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.contact-name {
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.contact-details a:hover {
    color: var(--primary-color);
}

/* About Section */
.about-container {
    margin: 4rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.about-title {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.about-description {
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin: 0 auto;
    padding: 0 2rem;
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    padding: 2rem;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
}

.tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-right: 1rem; /* Abstand zwischen den Links */
}

.tiktok-link:hover {
    background-color: rgba(0, 255, 0, 0.1);
    transform: translateY(-2px);
}

.about-footer {
    font-style: italic;
    opacity: 0.8;
    margin-top: 2rem;
    text-align: left;
}

/* Bottom Footer */
.bottom-footer {
    background-color: var(--accent-color);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links .separator {
    color: var(--text-color);
    opacity: 0.5;
}

.copyright {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-icon {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Legal Pages (Impressum & Datenschutz) */
.legal-page {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: calc(100vh - 72px); /* Volle Höhe minus Navigation */
}

.legal-content {
    background-color: #0a0a0a;
    padding: 4rem;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: 100%;
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.legal-text {
    text-align: left;
    line-height: 1.6;
    font-size: 1.1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

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

.legal-link:hover {
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    max-width: 400px;
    border: 1px solid var(--primary-color);
    display: none;
}

.cookie-content {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.cookie-link:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-button {
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    flex: 1;
}

.cookie-button.accept {
    background-color: var(--primary-color);
    color: var(--background-color);
}

.cookie-button.decline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.cookie-button.decline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.cookie-button:hover {
    opacity: 0.9;
}

/* Media Queries für responsive Design */
@media (max-width: 1024px) {
    .social-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem;
    }

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

    .about-image {
        margin: 0 auto;
    }

    .legal-page {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.5rem 1rem;
        height: 72px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 2000;
    }

    .main-nav, .nav-links {
        position: fixed;
        left: 0;
        width: 100%;
        background-color: var(--accent-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        z-index: 2001;
        top: 72px;
        display: none;
    }

    .nav-links {
        top: calc(72px + 160px);
    }

    .main-nav.active, .nav-links.active {
        display: flex !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .hamburger {
        display: block !important;
        margin-left: auto;
        z-index: 2002;
    }

    .logo {
        margin-right: auto;
        z-index: 2002;
    }

    .hero-logo {
        width: 300px;
    }

    .bottom-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }

    .legal-page {
        grid-template-columns: 1fr;
        margin: 0;
        padding: 0;
    }

    .legal-content {
        padding: 2rem 1rem;
    }

    .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .social-stats {
        grid-template-columns: 1fr;
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-logo {
        width: 250px;
    }

    .footer-content {
        padding: 2rem 1rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

main {
    background-color: #0a0a0a;
    padding: 2rem 0;
}

/* Support Section */
.support-section {
    padding: 4rem 2rem;
    background-color: var(--background-color);
    text-align: center;
}

.support-title {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Grid für die Karten */
.support-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

/* Einzelne Karten */
.support-card {
    background-color: var(--accent-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/Kollege-Background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.support-card > * {
    position: relative;
    z-index: 1;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.support-role {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Social Links */
.support-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-social a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.support-social a:hover {
    color: var(--primary-color);
}

.support-social i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .support-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* About Section für Chanti */
.about-container.chanti {
    margin: 4rem auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.about-content.chanti {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    background-color: var(--accent-color);
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    max-width: 1400px;
}

.about-content.chanti p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: left;
    max-width: 100%;
}

.about-image.chanti {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    transition: transform 0.3s ease;
    max-width: 220px;
    margin: 0 auto;
}

/* Responsive Anpassung für mobile Geräte */
@media (max-width: 768px) {
    .about-content.chanti {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .about-image.chanti {
        margin: 0 auto 2rem auto;
    }
}

.about-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-content {
    background-color: rgba(0, 255, 0, 0.1);
    padding: 3rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/Kollege-Background.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.footer-content > * {
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: 2.5rem;
    margin: 0;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 1.5rem;
    margin: 0.5rem 0 2rem;
    color: var(--text-color);
    opacity: 0.8;
}

.contact-name {
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.contact-details a:hover {
    color: var(--primary-color);
}

.about-footer {
    font-style: italic;
    opacity: 0.8;
    margin-top: 2rem;
    text-align: left;
}

/* Neues Mobile Hamburger & Overlay Menü */
@media (max-width: 900px) {
  .hamburger {
    top: 32px;
    right: 18px;
    width: 44px;
    height: 44px;
    background: #111 !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 10px;
    box-shadow: none;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999 !important;
    position: fixed !important;
    transition: box-shadow 0.3s, border-color 0.3s, background 0.2s;
  }
  .hamburger span {
    display: block;
    width: 26px;
    height: 3.5px;
    margin: 4px 0;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: none;
    transition: all 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-menu-overlay {
    display: none;
  }
  .mobile-menu-overlay.open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10009;
  }
  .backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,0.97);
    z-index: 10008;
    opacity: 1;
    transition: opacity 0.3s;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #111 !important;
    z-index: 20000 !important;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
    padding: 2.5rem 1rem 2rem 1rem;
    font-size: 1.2rem;
    gap: 0.7rem;
    overflow-y: auto;
    max-height: 100vh;
    padding-top: 0.3rem;
  }
  .mobile-menu-overlay.open .mobile-nav {
    transform: translateY(0);
  }
  .close-mobile-nav {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.1rem;
    color: var(--primary-color);
    background: #111;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    z-index: 20001 !important;
    filter: none;
    transition: color 0.2s, background 0.2s;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-mobile-nav:hover {
    color: #fff;
    background: var(--primary-color);
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }
  .mobile-nav .nav-link {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: none;
    transition: color 0.2s, background 0.2s;
    display: block;
    text-align: center;
    padding: 0.7rem 1.5rem;
    border-radius: 7px;
    background: none !important;
    border: none !important;
    text-transform: uppercase;
  }
  .mobile-nav .nav-link:hover {
    color: var(--primary-color);
    background: none !important;
  }
  .mobile-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    justify-content: center;
  }
  .mobile-social-icons .nav-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
    filter: none;
    transition: color 0.2s, background 0.2s;
    background: none !important;
    border-radius: 50%;
    padding: 0.3rem;
    border: 2px solid var(--primary-color) !important;
    box-shadow: none !important;
  }
  .mobile-social-icons .nav-icon:hover {
    color: #fff;
    background: var(--primary-color);
  }
  .mobile-social-icons .nav-icon i {
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    text-decoration: none !important;
    vertical-align: middle !important;
  }
  .main-nav, .nav-links {
    display: none !important;
  }
}

/* Backdrop für das Overlay-Menü */
.backdrop {
  display: none;
}
.mobile-menu-overlay.open .backdrop {
  display: block;
}

@media (min-width: 901px) {
  .mobile-nav, .hamburger { display: none !important; }
  .main-nav, .nav-links { display: flex !important; }
  .mobile-menu-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    z-index: -9999 !important;
  }
}

/* Mobile Social Icons */
.mobile-social-icons {
    display: flex;
    gap: 0.4rem;
    margin-top: 2.5rem;
    justify-content: center;
}
.mobile-social-icons .nav-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    filter: none;
    background: #111;
    border-radius: 50%;
    padding: 0.2rem;
    border: 1px solid var(--primary-color);
    margin: 0 0.2rem;
    transition: color 0.2s, background 0.2s;
}
.mobile-social-icons .nav-icon:hover {
    color: #fff !important;
    transform: scale(1.2);
    text-shadow: 0 0 24px #00ff00;
}

header, nav {
  z-index: 1000 !important;
}

.mobile-menu-overlay.open ~ header,
.mobile-menu-overlay.open ~ .hamburger {
  display: none !important;
}

body.menu-open .hamburger { display: none !important; }
body.menu-open header { display: none !important; }

.mobile-menu-overlay {
  height: 100vh;
  overflow-y: auto;
  display: none;
}
.mobile-nav {
  height: 100vh;
  overflow-y: auto;
  background: #111 !important;
  color: #fff;
  max-height: none;
  padding-top: 0.3rem;
}
.mobile-nav ul {
  width: 100%;
}
.mobile-nav .nav-link {
  color: #fff !important;
  text-transform: uppercase;
  font-size: 1.05rem;
  font-weight: 600;
  background: none !important;
  border: none !important;
}
.mobile-social-icons {
  margin-top: 1.2rem;
}
.mobile-social-icons .nav-icon {
  border: 2px solid var(--primary-color) !important;
  border-radius: 50%;
  background: none !important;
  box-shadow: none !important;
}
.mobile-social-icons .nav-icon i {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  text-decoration: none !important;
  vertical-align: middle !important;
} 