:root {
    --primary: #000000;
    --secondary: #555555;
    --accent: #4f7ea8;
    --card-bg: #ffffff;
    --radius: 12px;
    --transition: 0.3s ease;
    --max-width: 1100px;
}

/* ================================ */
/* RESET & BODY                     */
/* ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f8f8;
    color: var(--primary);
    line-height: 1.5;
}

/* ================================ */
/* TOP-BANNER                        */
/* ================================ */
.top-banner {
    background: #000;
    color: #c30000;
    text-align: center;
    padding: 0.5rem;
    font-size: 1rem;
}
.top-banner u { text-decoration: underline; }

/* ================================ */
/* NAVIGATION                        */
/* ================================ */
.nav {
    width: 100%;
    background: #000;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: center;
    padding: 12px 0;
}

.nav-inner {
    max-width: 900px;
    width: 100%;
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
}

.nav-inner a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.nav-inner a:hover {
    text-decoration: underline;
}

/* ================================ */
/* HERO                              */
/* ================================ */
.hero {
    width: 100%;
    min-height: 900px;
    background-image: url('../img/header.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 12vh;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-overlay h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* ================================ */
/* GRID FÜR PROFILE                  */
/* ================================ */
.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 0;
}

.profile-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    width: 250px;
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-4px);
}

.profile-photo img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.profile-meta h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--primary);
}

.profile-meta .role {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--secondary);
}

.profile-meta .genres {
    font-size: 13px;
    color: #555;
    margin-bottom: 12px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary:hover {
    opacity: 0.8;
}

/* ================================ */
/* FOOTER                             */
/* ================================ */
.footer {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
}
.footer a:hover { opacity: 0.6; }

/* ================================ */
/* RESPONSIVE                         */
/* ================================ */
@media (max-width: 768px) {
    .hero-overlay h1 { font-size: 36px; }
    .hero-overlay h2 { font-size: 28px; }
    .profile-card { width: 200px; }
    .profile-photo img { height: 120px; }
}

@media (max-width: 480px) {
    .hero-overlay h1 { font-size: 28px; }
    .hero-overlay h2 { font-size: 22px; }
    .profile-card { width: 90%; }
    .profile-photo img { height: auto; }
}
