/* Grundlegende Stile */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #0f172a;
    margin: 0;
    padding: 0;
}

/* Header */
.main-header {
    background-color: #1e293b;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#logo {
    max-height: 60px;
    width: auto;
    display: block;
}

.language-switcher {
    font-weight: bold;
}

.language-switcher a {
    color: #38bdf8;
    text-decoration: none;
    margin: 0 0.4rem;
    transition: color 0.3s ease;
}

.language-switcher a:hover {
    color: #7dd3fc;
}

/* Hauptinhalt */
.content-wrapper {
    max-width: 960px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.intro-section, .members-section {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-section h2, .members-section h2 {
    color: #38bdf8;
    margin-top: 0;
}

/* Familienmitglieder-Karten (Visitenkarten) */
.member-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.member-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
    border-color: #38bdf8;
}

.member-card h3 {
    color: #f8fafc;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
    border-bottom: 2px solid #38bdf8;
    padding-bottom: 0.4rem;
    display: inline-block;
}

.member-card p {
    margin: 0.6rem 0;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.member-card a {
    color: #38bdf8;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.2s ease;
}

.member-card a:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

/* Social Media Icons Styling */
.social-icons-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    color: #38bdf8;
}

.social-icons-list a:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: #38bdf8;
    transform: translateY(-2px);
}

.social-icons-list a .fa-instagram { color: #e1306c; }
.social-icons-list a .fa-facebook { color: #1877f2; }
.social-icons-list a .fa-x-twitter { color: #f8fafc; }
.social-icons-list a .fa-discord { color: #5865f2; }

/* Status-Widget Iframe Container */
iframe {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: #0b0f19;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #0f172a;
    color: #64748b;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer a {
    color: #38bdf8;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    .main-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
