:root {
    --bg-color: #050505;
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --border-color: #222222;
    --accent: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle Top Loading Bar */
.top-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--text-secondary);
    width: 100%;
    transform-origin: left;
    animation: loadingBar 3s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes loadingBar {
    0% { transform: scaleX(0); transform-origin: left; }
    49% { transform: scaleX(1); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: right; }
    100% { transform: scaleX(0); transform-origin: right; }
}

/* Main Layout */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-wrapper {
    max-width: 700px;
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}

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

/* Typography & Brand */
.brand {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 4rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

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

.subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.contact-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-email {
    font-size: 1.25rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
    width: fit-content;
}

.contact-email:hover {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 2rem 5%;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.location {
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .brand {
        margin-bottom: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}
