:root {
    --text-color: #f0f0f0;
    --background-color: #121212;
    --card-background: #212121;
    --link-color: #e0b060;
    --button-background: #e0b060;
    --button-text: #121212;
}

/* Base styling */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #2a2a2a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header img {
    height: 100px;
    margin-right: 1rem;
}

header a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    margin-left: 2rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

header a:hover {
    color: var(--link-color);
}

/* Intro section */
#intro {
    text-align: center;
    padding: 4rem 1rem;
    flex-grow: 1;
}

#intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: auto;
    margin-bottom: 1.5rem;
}

#intro #rolesLink {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-background);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

#intro #rolesLink:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: #2a2a2a;
    color: #a0a0a0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    header img {
        height: 80px;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    header a {
        margin: 0.5rem 0;
        padding: 0.5rem;
    }

    #intro {
        padding: 2rem 1rem;
    }

    #intro p {
        font-size: 1rem;
    }
}