@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Montserrat:wght@300;400;500&display=swap');

:root {
    --bg-color: #F6F4EF;
    --bg-gradient-end: #eae8e3;
    --accent-gold: #B3953C;
    --text-color: #051C29;
    --text-subtle: #556873;
}

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

body {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out forwards;
    max-width: 600px;
    width: 100%;
}

.logo-area {
    margin-bottom: 1.5rem;
}

/* 
   Designed to look premium as text, 
   but can be replaced by an <img src="assets/logo.png" ...> 
*/
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.divider {
    height: 2px;
    background-color: var(--accent-gold);
    width: 120px;
    margin: 0 auto 2.5rem auto;
    opacity: 0.9;
}

.status {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-subtle);
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.95;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo-img { max-width: 280px; }
    .status { font-size: 2.5rem; }
    .tagline { font-size: 0.9rem; letter-spacing: 2px; }
}

.logo-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
