/* Grundvariablen für Farben und Schriften */
:root {
    --bg-color: #121212;
    --bg-light: #1e1e1e;
    --text-color: #e0e0e0;
    --cyber-blue: #00e5ff;
    --cyber-blue-hover: #00b8cc;
}

html {
    scroll-behavior: smooth; /* Sorgt für das weiche Scrollen zu den Sektionen */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

body {
    margin: 0;
    padding: 0;
}

/* Allgemeine Klassen */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    padding: 80px 0;
}
.dark-bg {
    background-color: var(--bg-light);
}
.text-center {
    text-align: center;
}
.hidden {
    display: none !important;
}

/* Navbar (Sticky Header) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid #333;
}
.nav-logo {
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--cyber-blue);
}
.lang-btn {
    background: none;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.3s;
}
.lang-btn:hover {
    border-color: var(--cyber-blue);
    color: var(--cyber-blue);
}
.lang-btn span {
    opacity: 0.5; /* Zeigt inaktiv an */
}
.lang-btn.en-active {
    color: var(--text-color);
}
.lang-btn.en-active span {
    opacity: 1;
    color: var(--cyber-blue);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Später kommt hier ein Hintergrundbild rein, wenn du magst */
}
.hero-logo {
    max-width: 80%;
    height: auto;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- SOCIAL MEDIA ICONS IM HERO BEREICH --- */
.hero-social-links {
    margin-bottom: 15px; /* Schöner Abstand nach unten zum Willkommenstext */
}

.hero-social-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px; /* Abstand zwischen den einzelnen Icons */
    font-size: 1.5rem; /* Etwas kleiner und dezenter als im Footer */
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
}

.hero-social-links a:hover {
    color: var(--cyber-blue); /* Unser typisches Leuchten */
    transform: scale(1.2); /* Wird beim Drüberfahren leicht größer */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}
.cyber-btn {
    background-color: var(--cyber-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
.cyber-btn:hover {
    background-color: var(--cyber-blue-hover);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
}

/* Video Grid (Horizontal Scroll) */
.video-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr); /* 2 Reihen */
    grid-auto-flow: column; /* Fließt nach rechts weiter */
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-color: var(--cyber-blue) var(--bg-color);
    scrollbar-width: thin;
}
.video-item {
    width: 320px; /* Feste Breite für die Videos */
    height: 180px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}
.video-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}
.placeholder-vid {
    color: #777;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.newsletter-form input {
    padding: 12px 20px;
    width: 300px;
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--cyber-blue);
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 40px 0 20px 0;
    text-align: center;
    border-top: 1px solid #222;
}
.social-links a, .legal-links a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}
.social-links a:hover, .legal-links a:hover {
    color: var(--cyber-blue);
}
.social-links {
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.legal-links {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* --- MOBILE ANPASSUNGEN (SMARTPHONES) --- */
@media (max-width: 768px) {
    
    /* Versteckt den Text "TECSTONEDEE" links oben nur auf Handys */
    .nav-logo {
        display: none;
    }

    /* Passt die Navigationsleiste für schmale Displays an */
    .navbar {
        padding: 15px 10px; /* Etwas weniger Rand links/rechts */
        justify-content: center; /* Rückt alles schön in die Mitte */
        gap: 15px; /* Abstand zwischen den Links und dem Sprach-Button */
    }

    /* Rückt die Menüpunkte etwas enger zusammen */
    .nav-links {
        gap: 15px; 
    }

    /* Macht die Schrift der Links auf dem Handy einen Hauch kleiner */
    .nav-links a {
        font-size: 0.8rem;
    }
}

/* --- STUDIO STAFF SECTION --- */
.studio-staff {
    margin-top: 50px;
    padding: 20px;
    text-align: center;
}

.staff-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Richtet die Namen unten bündig aus */
    gap: 30px;
    flex-wrap: wrap; /* Wichtig für die Handy-Ansicht */
    margin-top: 20px;
}

.staff-member {
    text-align: center;
}

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%; /* Macht das Bild kreisrund */
    overflow: hidden;
    border: 3px solid #333;
    transition: transform 0.3s, border-color 0.3s;
    margin-bottom: 10px;
}

/* Dein Bild in der Mitte machen wir einen Tick größer */
.profile-main {
    width: 150px;
    height: 150px;
    border-color: var(--cyber-blue);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Verhindert Verzerrung */
}

.staff-member:hover .staff-photo {
    transform: scale(1.1);
    border-color: var(--cyber-blue);
}

.staff-member p {
    font-weight: bold;
    margin: 5px 0 2px 0;
    color: #fff;
}

.staff-role {
    font-size: 0.8rem;
    color: var(--cyber-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}