:root {
    color-scheme: light dark;
    --font: "Segoe UI", sans-serif;

    /* Fallback values: set manually via media queries */
    --primary-bg: #ffffff;
    --text-color: #111111;
    --accent-color: #007bff;
}

/* Override with dark mode values using media query (for Firefox and older browsers) */
@media (prefers-color-scheme: dark) {
    :root {
        --primary-bg: #121212;
        --text-color: #eeeeee;
    }
}

/* Modern override for supporting browsers */
@supports (color: light-dark(#000, #fff)) {
    :root {
        --primary-bg: light-dark(#ffffff, #121212);
        --text-color: light-dark(#111111, #eeeeee);
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    background-color: var(--primary-bg);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    transition: background 0.3s, color 0.3s;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }
}
