/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Pure black theme */
    color: #ffffff;
    font-family: 'Space Mono', monospace, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    -webkit-font-smoothing: antialiased;
}

/* Centered Main Content */
.center-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    width: 140px; /* Adjust size to fit your preference */
    height: auto;
    margin-bottom: 2rem;
    display: block;
}

.brand-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e0e0e0;
}

/* Footer Layout */
.site-footer {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: #666666; /* Subtle dimmed text */
    padding-top: 1rem;
}

.copyright {
    grid-column: 2;
    text-align: center;
}

.contact {
    grid-column: 3;
    text-align: right;
}

.contact-link {
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .site-footer {
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
        text-align: center;
    }

    .contact {
        text-align: center;
    }
}
