/* ============================================
   bunt.schoen.laut - Moderne Filmproduktion
   ============================================ */

/* CSS Reset & Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #666;
    --accent-color: #ff6b35;
    --bg-color: #ffffff;
    --text-color: #333;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Typografie */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo - OBEN LINKS */
nav .logo {
    display: flex;
    align-items: center;
    margin: 0;
}

nav .logo img {
    height: 50px;
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-color);
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 5rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--secondary-color);
}

/* Film Grid - KORRIGIERT */
.film-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.film-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.film-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Film Card Image - KORRIGIERT */
.film-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.film-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.film-card:hover .film-card-image img {
    transform: scale(1.05);
}

/* Film Card Content - KORRIGIERT */
.film-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.film-card-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.film-meta {
    color: var(--secondary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.film-card-content p {
    margin-bottom: 1rem;
}

.film-card-content a {
    margin-top: auto;
    display: inline-block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

/* Team Photo - Standard für Peter */
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    object-position: center center;
}

/* NUR Diana - Bild nach OBEN verschieben (kleinerer Wert = mehr Kopf oben sichtbar) */
.team-member:first-child .team-photo img {
    object-position: center 20%; /* NACH OBEN - zeigt den oberen Teil des Bildes */
}

/* Awards */
.awards-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.award-item {
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
    background: #f9f9f9;
}

.award-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.3rem;
}

/* Contact Section */
.contact-info {
    background: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
}

footer a:hover {
    color: var(--accent-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav .container {
        padding: 1rem 1.5rem;
    }

    nav .logo img {
        height: 35px;
    }

    nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .film-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    nav .container {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}
