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

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: monospace;
    background: white;
    color: black;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

/* Homepage styles */
.logo {
    width: 100%;
    max-width: 250px;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.byline {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    opacity: 0.7;
}

/* Project page styles */
h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learnings, .philosophy, .tech-stack, .mission, .approach, .bio {
    text-align: left;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.learnings h3, .tech-stack h3, .mission h3, .approach h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.tech-stack p, .learnings p {
    text-align: center;
    opacity: 0.7;
}

.philosophy p {
    text-align: center;
    font-style: italic;
    margin-bottom: 1rem;
}

.bio p, .mission p, .approach p {
    margin-bottom: 1rem;
}

.note {
    font-style: italic;
    opacity: 0.6;
    text-align: center;
}

/* Links */
.links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.links a {
    color: black;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.2s ease;
}

.links a:hover {
    border-bottom: 1px solid black;
}

.links a.primary {
    border: 1px solid black;
    padding: 0.5rem 1rem;
    border-radius: 3px;
}

.links a.primary:hover {
    background: black;
    color: white;
    border-bottom: 1px solid black;
}

/* Footer */
footer {
    padding: 1rem;
    text-align: center;
}

.impressum {
    color: black;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.5;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.impressum:hover {
    opacity: 1;
    border-bottom: 1px solid black;
}

/* Legal info */
.legal-info {
    text-align: left;
    line-height: 1.6;
}

.legal-info h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-info p {
    margin-bottom: 1.5rem;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .links {
        flex-direction: column;
        gap: 1rem;
    }

    main {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}

.tech-approach {
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.tech-approach h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    opacity: 0.8;
}

.tech-approach p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.status {
    margin-bottom: 2rem; /* This fixes the spacing issue */
}
