/* Lilou Brand Colors (from lilou_ui package) */
:root {
    --color-bg-black: #000000;
    --color-text-white: #FFFFFF;
    --color-text-gray: #CCCCCC;
    --color-accent-blue: #4A90E2;
    --color-accent-blue-hover: #357ABD;
    --color-success-green: #4CAF50;
    --color-warning-yellow: #FFC107;
    --color-error-red: #F44336;
    --color-border-gray: #333333;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--color-bg-black);
    color: var(--color-text-white);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header */
.site-header {
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--color-border-gray);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-text-white);
    text-transform: lowercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-gray);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-white);
}

/* Hero Section (Home Page) */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: lowercase;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 1rem;
    color: var(--color-text-gray);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-text-gray);
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--color-accent-blue);
    color: var(--color-text-white);
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--color-accent-blue-hover);
}

/* Login Page */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-box {
    background-color: #111;
    border: 1px solid var(--color-border-gray);
    border-radius: 8px;
    padding: 3rem;
    max-width: 400px;
    width: 100%;
}

.login-box h1 {
    margin: 0 0 0.5rem 0;
    font-size: 28px;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #888;
    margin: 0 0 2rem 0;
    font-size: 14px;
}

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    color: var(--color-text-gray);
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-bg-black);
    border: 1px solid var(--color-border-gray);
    border-radius: 4px;
    color: var(--color-text-white);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-blue);
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--color-accent-blue);
    color: var(--color-text-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: var(--color-accent-blue-hover);
}

.disclaimer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: 0 0 1rem 0;
}

.back-link {
    text-align: center;
    margin: 0;
}

.back-link a {
    color: var(--color-accent-blue);
    font-size: 14px;
    transition: text-decoration 0.3s ease;
}

.back-link a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 14px;
    border-top: 1px solid var(--color-border-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .login-box {
        padding: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}
