/* Bergwerk Kreativ - Website
   Stil: Direkt, modern, kein Schnickschnack
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1a1a1a;
    --white: #fafafa;
    --gray: #666;
    --accent: #ff6b35;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 24px;
}

header {
    margin-bottom: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent);
}

.tagline {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 8px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

section {
    padding: 24px 0;
    border-top: 1px solid #333;
}

section:first-child {
    border-top: none;
    padding-top: 0;
}

h2 {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 16px;
}

.intro p {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4;
}

ul {
    list-style: none;
}

li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
}

li:last-child {
    border-bottom: none;
}

.project {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-type {
    font-size: 0.85rem;
    color: var(--gray);
}

.video-container {
    margin-top: 24px;
}

.video-container video {
    width: 100%;
    border-radius: 4px;
}

a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    transition: color 0.2s ease;
}

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

.about p {
    color: var(--gray);
}

.address {
    margin-top: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

footer {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.copyright {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Mobile */
@media (max-width: 600px) {
    .container {
        padding: 48px 20px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .intro p {
        font-size: 1.2rem;
    }

    main {
        gap: 40px;
    }
}
