:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-color: #000000;
    --font-main: 'Outfit', sans-serif;
    --spacing-unit: 1rem;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    /* Architectural Grid Pattern */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;

    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    justify-content: center;
}

.content {
    text-align: center;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

.logo-wrapper {
    margin-bottom: 3rem;
    padding: 1rem;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

h1 {
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

.subtitle {
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    width: 100%;
    max-width: 200px;
    margin: 2rem auto;
}

.visit-us {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.visit-us a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.visit-us a:hover {
    border-bottom-color: var(--accent-color);
    opacity: 0.8;
}

.footer {
    margin-top: auto;
    padding-top: 4rem;
    font-size: 0.875rem;
    color: #999;
    font-weight: 300;
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 220px;
    }
}