@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700;900&family=Inter:wght@300;400;500;700;900&display=swap');

/* Team-spezifische Variablen und Overrides */
body {
    --columbo-bg: #1a1a1a;
    --columbo-border: rgba(255, 255, 255, 0.1);
    --columbo-shadow: 0 8px 30px rgba(0,0,0,0.5);
    --columbo-card-bg: #282828;
    --columbo-card-border: #3a3a3a;
    --columbo-card-shadow: 0 2px 10px rgba(0,0,0,0.3);
    --text-light: #e4e4e7;
    --text-medium: #a1a1aa;
    --text-dark: #d4d4d8;
    --accent-green: #10b981;
    --accent-green-bg: rgba(16,185,129,0.1);
    --accent-green-border: rgba(16,185,129,0.3);
    --accent-amber: #ffbf00;
    --accent-amber-bg: rgba(255,193,7,0.1);
    --accent-gray: #9ca3af;
    --accent-gray-bg: rgba(107,114,128,0.1);
    --accent-blue: #60a5fa;
    --accent-blue-bg: rgba(96,165,250,0.1);
}

/* Hero Section Styles for team/index.html */
.hero { min-height: 35vh; display: flex; align-items: center; justify-content: center; padding: 2rem; margin-top: 2rem; }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(2rem, 7vw, 4.5rem); font-weight: 900; color: #f4f4f5; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; margin-bottom: 1rem; }
.hero-title span { color: #e11d48; }
.hero-divider { width: 3rem; height: 2px; background: #e11d48; margin: 1.25rem auto; opacity: 0.5; }

/* Section Heading (general for team pages) */
.section-heading {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

/* Agent List Styles for team/index.html */
.agent-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.agent-card {
    background: var(--columbo-card-bg);
    border: 1px solid var(--columbo-card-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--columbo-card-shadow);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}
.agent-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--accent-green);
}
.agent-card h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.agent-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}
.agent-card .detail-link {
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent-blue-bg);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}
.agent-card .detail-link:hover {
    background: rgba(96,165,250,0.2);
}

/* Agent Detail Styles for claudia-biber.html */
.agent-detail-container {
    max-width: 900px;
    margin: 4rem auto;
    background: var(--columbo-bg);
    border: 1px solid var(--columbo-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--columbo-shadow);
    color: var(--text-dark);
}
.agent-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 2rem;
}
.agent-detail-header img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-green);
}
.agent-detail-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    line-height: 1.1;
}
.agent-detail-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}
.content-section {
    margin-bottom: 2.5rem;
}
.content-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-blue);
    padding-left: 1rem;
}
.content-section p, .content-section ul {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.content-section ul {
    list-style: disc inside;
    padding-left: 1rem;
}
.content-section ul li {
    margin-bottom: 0.5rem;
}
.back-link {
    display: inline-block;
    margin-top: 2rem;
    background: var(--accent-blue-bg);
    color: var(--accent-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}
.back-link:hover {
    background: rgba(96,165,250,0.2);
}
