/* ===== RESET & BASIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #f5e6d3;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== STATISCHER HINTERGRUND ===== */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0f 0%, #2a0f0f 50%, #4a1f1f 100%);
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 50%, #2a0f0f, #4a1f1f);
    top: -200px;
    right: -200px;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 70% 50%, #6a2f2f, #d4af37);
    bottom: -200px;
    left: -100px;
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
    background: rgba(74, 31, 31, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

.glass-nav {
    position: sticky;
    top: 20px;
    margin: 20px auto;
    max-width: 1200px;
    width: 90%;
    background: rgba(42, 15, 15, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    z-index: 1000;
}

/* ===== NAVIGATION ===== */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5e6d3;
    text-decoration: none;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: #d4a373;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 5px 10px;
    position: relative;
    line-height: 1.5;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a.active {
    color: #d4af37;
}

/* NUR Navigationslinks bekommen die goldene Linie */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d4af37;
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    margin-bottom: 10px;
    color: #f5e6d3;
    line-height: 1.2;
}

.page-header h1 span {
    display: inline-block;
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37, #f5e6d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #d4a373;
    margin: 5px 0;
}

.page-header .tags {
    font-size: 1rem;
    color: #d4a373;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
}

.btn-primary {
    background: #d4af37;
    color: #2a0f0f;
}

.btn-primary:hover {
    background: #e6c456;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #f5e6d3;
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
}

/* ===== STATISTIK-KARTEN ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    color: #d4af37;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    color: #d4a373;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== FEATURES/HOBBIES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.2s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    height: 3rem;
    line-height: 1;
}

.feature-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.feature-card p {
    color: #d4a373;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== KOOPERATIONEN TEASER ===== */
.coop-teaser {
    padding: 40px;
    margin: 60px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    margin-bottom: 40px;
    color: #f5e6d3;
    line-height: 1.3;
}

.coop-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.coop-teaser-item {
    text-align: center;
    padding: 30px;
    background: rgba(42, 15, 15, 0.3);
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.2s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coop-teaser-item:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.coop-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4a1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.coop-teaser-item h3 {
    color: #d4af37;
    margin-bottom: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.coop-teaser-item p {
    color: #d4a373;
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== SOCIAL MEDIA ICONS ===== */
.social-section {
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.social-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.social-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(42, 15, 15, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    text-decoration: none;
    position: relative;
}

/* WICHTIG: Entfernt die goldene Linie bei Social Icons */
.social-item::after {
    display: none !important;
}

.social-item:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.social-item i {
    font-size: 1.8rem;
    color: #d4af37;
    transition: color 0.2s ease;
    width: 1.8rem;
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-item:hover i {
    color: #2a0f0f;
}

/* Entfernt alle möglichen Unterstreichungen */
.social-item,
.social-item:link,
.social-item:visited,
.social-item:hover,
.social-item:active {
    text-decoration: none;
    outline: none;
}

/* Sauberer Focus-State für Barrierefreiheit */
.social-item:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
    border-radius: 50%;
}

/* ===== FOOTER ===== */
footer {
    max-width: 1200px;
    margin: 60px auto 20px;
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
    background: rgba(42, 15, 15, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d4a373;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.5;
    padding: 5px;
}

.footer-links a:hover {
    color: #d4af37;
}

.copyright {
    color: rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== OPTIMIERUNGEN GEGEN RUMPRINGEN ===== */
img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    max-width: 100%;
}

.glass-card {
    min-height: 100px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid .stat-card {
        min-height: 150px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid .feature-card {
        min-height: 200px;
    }
    
    .coop-teaser-grid {
        grid-template-columns: 1fr;
    }
    
    .coop-teaser-item {
        min-height: 220px;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .sphere-1,
    .sphere-2 {
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-grid {
        gap: 15px;
    }
    
    .social-item {
        width: 50px;
        height: 50px;
    }
    
    .social-item i {
        font-size: 1.5rem;
        width: 1.5rem;
        height: 1.5rem;
    }
}
