/* --- Globale Einstellungen --- */
:root {
    --bg-color: #0a0a0a; /* Sehr dunkles Schwarz für Eleganz */
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05); /* Glassmorphismus */
    /* Der Verlauf basierend auf deinem Logo: Pink -> Lila -> Blau */
    --brand-gradient: linear-gradient(90deg, #ff4dcb 0%, #9b51e0 50%, #00d4ff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Hilfsklassen --- */
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Buttons --- */
.btn-primary {
    background: var(--brand-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(155, 81, 224, 0.4);
}

.btn-secondary {
    border: 2px solid #fff;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-logo {
    height: 50px; /* Logo Größe anpassen */
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00d4ff;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, rgba(155, 81, 224, 0.15) 0%, rgba(10,10,10,1) 70%);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 40px;
}

/* --- Talent Section --- */
.talent-section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.talent-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.talent-image-wrapper {
    flex: 1; /* Nimmt 50% der Breite ein */
    min-width: 300px;
    min-height: 500px; /* Mindesthöhe, damit das Bild wirkt */
    position: relative;
    overflow: hidden; /* Wichtig für den Zoom-Effekt */
}

.talent-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* MAGIE: Das Bild füllt den Bereich perfekt aus, ohne zu verzerren */
    object-position: center top; /* Fokus auf das Gesicht (oben) */
    display: block;
    transition: transform 0.5s ease; /* Sanfter Zoom bei Hover */
}

/* Update für mehr Text-Lesbarkeit */
.bio {
    margin-bottom: 15px; /* Abstand zwischen den Absätzen */
    color: #ddd; /* Leichtes Grau statt hartes Weiß ist angenehmer zu lesen */
    font-size: 0.95rem;
}

.bio strong {
    color: #fff;
    font-weight: 600;
}

/* Optional: Ein cooler Zoom-Effekt, wenn man mit der Maus über die Karte fährt */
.talent-card:hover .talent-img {
    transform: scale(1.05);
}

.talent-info {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.talent-info h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.talent-info .slogan {
    color: #ff4dcb; /* Pink Akzent */
    font-style: italic;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    background: rgba(255,255,255,0.08);
    padding: 15px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.stat-box .count {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.stat-box.tiktok .count { color: #00d4ff; } /* TikTok Farbe */
.stat-box.instagram .count { color: #E1306C; } /* Insta Farbe */

.full-width {
    width: 100%;
    text-align: center;
}

/* --- About Section --- */
.about-section {
    padding: 80px 10%;
    background: #0f0f0f;
    text-align: center;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00d4ff;
}

/* --- Footer --- */
footer {
    padding: 50px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.email-link {
    display: block;
    font-size: 1.2rem;
    margin: 20px 0;
    color: #fff;
    font-weight: bold;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* --- Mobile Responsiveness Updates --- */
@media (max-width: 768px) {
    
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .talent-card { flex-direction: column; }
    
    /* --- NEU: Social Buttons Mobile Optimierung --- */
    
    /* 1. Den Text (das span-Element) ausblenden */
    .social-btn span {
        display: none;
    }

    /* 2. Den Button zu einem Kreis machen */
    .social-btn {
        width: 50px;        /* Quadratische Basis */
        height: 50px;       /* Quadratische Basis */
        padding: 0;         /* Padding entfernen, damit es mittig ist */
        border-radius: 50%; /* Macht es zum perfekten Kreis */
        
        /* Icon exakt in die Mitte setzen */
        display: flex;
        align-items: center;
        justify-content: center;
        
        /* Button zentrieren im Container */
        margin: 15px auto 0 auto; 
    }

    /* 3. Das Icon etwas vergrößern, damit es gut klickbar ist */
    .social-btn i {
        font-size: 1.5rem;
        margin: 0; /* Sicherheitsabstand entfernen */
    }
}
/* Update für die Stat-Box, damit der Button unten bündig sitzt */
.stat-box {
    background: rgba(255,255,255,0.08);
    padding: 20px; /* Etwas mehr Platz */
    border-radius: 12px;
    flex: 1;
    text-align: center;
    
    /* Damit der Button immer unten ist, auch wenn Texte unterschiedlich lang sind */
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center;
}

.spacer {
    flex-grow: 1; /* Schiebt den Button nach unten */
}

/* --- Neue Social Media Buttons --- */
.social-btn {
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    width: 80%; /* Button Breite */
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* TikTok Button Design (Schwarz & Cyan) */
.btn-tiktok {
    background-color: #000;
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.btn-tiktok:hover {
    background-color: #00d4ff;
    color: #000;
}

/* Instagram Button Design (Original Gradient) */
.btn-instagram {
    /* Der offizielle Instagram Gradient */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border: none;
}

.btn-instagram:hover {
    filter: brightness(1.1); /* Wird beim Drüberfahren leicht heller */
}
/* --- Hero Section Update (mit pulsierenden Kreisen) --- */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative; /* Wichtig, damit die Kreise sich daran orientieren */
    overflow: hidden;   /* Damit die Kreise nicht aus dem Bildschirm ragen */
    background-color: #0a0a0a; /* Dunkler Hintergrund als Basis */
    z-index: 1;
}

/* Der Text-Inhalt muss über den Kreisen liegen */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Wir erstellen künstliche Elemente für den Hintergrund */
.hero::before, 
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Exakte Mitte */
    border-radius: 50%;
    z-index: -1; /* Hinter den Text schieben */
    opacity: 0.6;
}

/* Der erste pulsierende Kreis (Lila) - Vergrößert */
.hero::before {
    width: 600px;   /* Vorher 300px -> Jetzt doppelt so groß */
    height: 600px;
    background: radial-gradient(circle, rgba(155, 81, 224, 0.7) 0%, rgba(155, 81, 224, 0) 70%);
    animation: pulse-glow 6s infinite ease-in-out;
    
    /* Standard-Positionierung beibehalten */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

/* Der zweite pulsierende Kreis (Pink/Blau) - Vergrößert */
.hero::after {
    width: 900px;   /* Vorher 500px -> Füllt jetzt fast den Screen */
    height: 900px;
    background: radial-gradient(circle, rgba(255, 77, 203, 0.35) 0%, rgba(0, 212, 255, 0) 70%);
    animation: pulse-glow 8s infinite ease-in-out reverse;
    animation-delay: 1s;

    /* Standard-Positionierung beibehalten */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
}

/* --- Die Animation Definition --- */
@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5); /* Wird 50% größer */
        opacity: 0.7; /* Wird heller */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
}
/* --- Neues Text Design für Talent Info --- */

.bio-intro {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.9;
}

.bio-grid {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Abstand zwischen den Blöcken */
    margin-bottom: 30px;
}

.bio-item {
    background: rgba(255, 255, 255, 0.03); /* Ganz subtiler Hintergrund */
    padding: 15px 20px;
    border-radius: 0 10px 10px 0; /* Rechts abgerundet */
    border-left: 4px solid; /* Die farbige Linie links */
    border-image: var(--brand-gradient) 1; /* Linie bekommt den Farbverlauf */
    transition: transform 0.3s ease;
}

/* Kleiner Hover-Effekt für Spaß beim Lesen */
.bio-item:hover {
    transform: translateX(5px); /* Bewegt sich leicht nach rechts */
    background: rgba(255, 255, 255, 0.08);
}

.bio-title {
    font-size: 1rem;
    color: #00d4ff; /* Überschrift in Blau/Cyan */
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bio-item p {
    font-size: 0.9rem;
    color: #ccc; /* Text leicht abgedunkelt für Lesbarkeit */
    line-height: 1.5;
}

.bio-item strong {
    color: white;
}
/* --- Social Media Buttons Update --- */
.social-btn {
    margin-top: 15px;
    padding: 10px 20px; /* Etwas mehr Polsterung für Touch-Bedienung */
    border-radius: 30px; /* Runder = moderner */
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    
    /* WICHTIG: Flexbox für Icon + Text Ausrichtung */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Abstand zwischen Icon und Text */
    
    width: 100%; /* Auf Mobile volle Breite nutzen */
    max-width: 200px; /* Aber nicht unendlich breit werden */
    margin-left: auto;
    margin-right: auto;
}

/* Das Icon etwas vergrößern */
.social-btn i {
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}