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

body {
    background-color: #F0EEE6;
    font-family: 'Playfair Display', serif;
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.content {
    animation: fadeIn 1.5s ease-in-out;
}

.logo-container {
    margin-bottom: 2rem;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 400;
    /* Regular weight for elegance */
    letter-spacing: -0.03em;
    /* Tight spacing for "period" look */
    color: #1a1a1a;
    /* Very dark grey, softer than pure black */
    line-height: 1;
}

.announcement {
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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