/* Styles for Plume Studio - Minimalist Dark Theme */

body {
    background-color: #0f0f0f;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
}

.content {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.5s ease-out forwards;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 3rem;
}

.announcement {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #bbb;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    display: inline-block;
}

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

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .subtitle { font-size: 0.9rem; }
}