/* Reset and Base Styles */
:root {
    --bg-color: #fcf9f4; /* Warm, paper-like off-white */
    --text-color: #3a3a38; /* Soft charcoal */
    --accent-color: #d97757; /* Muted terracotta/coral for subtle highlights */
}

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

body {
    font-family: 'Lora', serif; /* Primary font is now Serif */
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/* Header / Logo */
header {
    margin-bottom: 4rem;
}

.logo {
    font-family: 'Inter', sans-serif; /* Keep logo clean/modern or serif? Let's go serif for "graceful" */
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

/* Main Content */
main {
    flex: 1;
}

h1 {
    font-size: 3.5rem; /* Large but not massive */
    font-weight: 400; /* Regular weight for elegance */
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h1 em {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 400;
    color: #666; /* Slightly softer for contrast */
}

.subtitle {
    font-family: 'Inter', sans-serif; /* Clean sans for supporting text */
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 450px;
    line-height: 1.5;
}

/* Status Badge - Minimalist */
.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ebe5dc; /* Slight contrast background */
    color: #555;
    border-radius: 4px; /* Soft square, not pill */
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Footer */
footer {
    margin-top: 4rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #999;
}

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