/* Grund-Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #0f141c;
    color: #e2e8f0;
    line-height: 1.6;
    padding-top: 80px; /* Platz für fixierten Header */
}

.container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

/* Navigationsleiste */
header {
    background-color: rgba(15, 20, 28, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #1e293b;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo {
    height: 40px; /* Skaliert dein Bildzeichen perfekt */
}

nav a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #3b82f6;
}

/* Hero Section mit Gradient Text */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, #1e1b4b 0%, #0f141c 100%);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #a855f7 50%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.5rem;
    color: #94a3b8;
}

/* Überschriften */
h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-left: 5px solid #a855f7;
    padding-left: 15px;
}

/* Grid & Cards (Das modulare System) */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
}

.card h3 {
    margin-bottom: 10px;
    color: #fff;
}

.badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
    font-weight: bold;
}

.email-display {
    font-size: 1.3rem;
    color: #3b82f6;
    font-weight: bold;
    margin-top: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #1e293b;
    margin-top: 100px;
    background-color: #0b0f17;
    color: #64748b;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
}

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

/* ANIMATIONEN (Für JavaScript benötigt) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* ==========================================================================
   Neuer Social-Media & Kontaktbereich
   ========================================================================== */

/* Grid für die Social-Media-Boxen */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

/* Einzelne Social-Box Styles */
.social-box {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-box span {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.social-box h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.social-box p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Hover-Effekte für die Boxen */
.social-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-box.tiktok:hover { border-color: #00f2fe; }
.social-box.instagram:hover { border-color: #e1306c; }
.social-box.youtube:hover { border-color: #ff0000; }
.social-box.indeed:hover { border-color: #2169ff; }

/* Bereich für E-Mail & Telefon darunter */
.direct-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    font-size: 1.2rem;
    color: #e2e8f0; /* Textfarbe auf helles Grau/Weiß */
    font-weight: 500;
}

/* Farb-Anpassung der Kontakt-Links (Weiß auf Orange) */
.contact-item a {
    color: #ffffff; /* Standardfarbe der Links ist Weiß */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

/* Hover-Effekt: Wechselt zu Orange */
.contact-item a:hover {
    color: #f97316; /* Ein sauberes, modernes Orange */
    border-color: #f97316;
}

/* Responsive Anpassung für kleinere Bildschirme */
@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr); /* Auf dem Handy 2 Spalten nebeneinander */
    }
}
/* Styling für die Rechtstexte */
.legal-text {
    background-color: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.legal-text h3 {
    color: #fff;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.legal-text p {
    color: #cbd5e1;
    margin-bottom: 15px;
}

