body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content {
    margin: 2rem 0;
}

.announcement {
    font-family: Georgia, serif;
    font-size: 2rem;
    font-weight: bold;
    font-variant: small-caps;
    color: #666666;
    text-align: center;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flourish {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('assets/images/petal-flouish.png');
    filter: brightness(0.8);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 1rem;
    flex-shrink: 0;
}

.announcement-text {
    text-align: center;
}

.announcement sup {
    font-size: 0.65em;
}

footer {
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-button {
    background-color: #661c0d;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-button:hover {
    background-color: #E3310E;
}

.social-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(0);
}

@media (max-width: 480px) {
    .social-links {
        gap: 0.75rem;
    }

    .social-button {
        padding: 10px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }
}