/*
--------------------------
Project:
Lumina Frontend

Joy Williams Morales
Date: 29 December 2025

Filename: style.css
-----------------------------
*/

:root {
                --bg-color: #f9f7f2;
                --text-color: #2c2c2c;
                --accent-color: #7d8a7d;
            }
body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Georgia', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
}
#chat-container {
    max-width: 700px;
    width: 100%;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 100px;
}
.message {
    line-height: 1.6;
    font-size: 1.1rem;
    animation: fadeIn 0.8s ease;
}
.user { color: var(--accent-color); font-style: italic; }
.ai { color: var(--text-color); }
#input-area {
    position: fixed;
    bottom: 40px;
    width: 100%;
    max-width: 600px;
    display: flex;
    gap: 10px;
}
input {
    flex-grow: 1;
    border: none;
    border-bottom: 1px solid var(--accent-color);
    background: transparent;
    padding: 10px;
    font-size: 1rem;
    font-family: inherit;
}
input:focus { outline: none; border-bottom: 2px solid var(--accent-color); }
button { background: transparent; border: none; cursor: pointer; color: var(--accent-color); font-weight: bold; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }