/* static/css/style.css - Refreshed for an Elegant, Rustic Aesthetic */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Raleway:wght@300;400;500&display=swap');

/* --- General Body & Typography --- */
body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: #F7F3E9; /* Warm Ivory/Champagne */
    color: #4B4B4B; /* Soft Charcoal */
    font-weight: 300;
}

/* --- Login Page --- */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.login-box {
    background: #fff;
    padding: 40px 50px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border: 1px solid #EAE0D3;
}

.login-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-top: 0;
    margin-bottom: 10px;
    color: #3D405B; /* Deep Indigo */
}

.login-box .subtitle {
    margin-bottom: 30px;
    color: #707070;
}

.login-box input[type="password"] {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-size: 1em;
}

.login-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 5px;
    background-color: #A2998B; /* Dusty Sage Green */
    color: white;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-box button:hover {
    background-color: #8C8275;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.error {
    color: #d9534f;
    margin-top: 15px;
}

/* --- Main Content & Theme Selector Page --- */
header {
    background: #fff;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-bottom: 1px solid #EAE0D3;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #3D405B;
    margin: 0;
}

header a {
    text-decoration: none;
    color: #A2998B;
    font-weight: 500;
    font-size: 1.1em;
}

.content-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    border: 1px solid #EAE0D3;
}

.content-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    text-align: center;
    color: #3D405B;
    border-bottom: 1px solid #EAE0D3;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.content-container p {
    line-height: 1.7;
    font-size: 1.1em;
}

.theme-list {
    list-style: none;
    padding: 20px 0 0 0;
}
.theme-list li {
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.theme-list li:hover {
    background-color: #F7F3E9;
}
.theme-list a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.3em;
    font-family: 'Playfair Display', serif;
    color: #3D405B;
    transition: color 0.2s;
}
.theme-list a:hover {
    color: #A2998B;
}