@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-color: #f8f9fa;
    --text-color: #333;
    --accent-color: #0056b3;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 100vh;
    /* Flyer is square, so limit mostly by viewport height/width */
    width: auto;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
}

.flyer-container {
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    /* Slight rounded corners for premium feel */
    overflow: hidden;
    line-height: 0;
    /* Remove extra space below image */
}

.flyer-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    /* Ensure it fits on screen nicely */
    object-fit: contain;
}

.info-text {
    font-size: 1.1rem;
    font-weight: 300;
    margin-top: 1.5rem;
    color: #555;
    letter-spacing: 0.5px;
}

.info-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.info-text a:hover {
    color: #003d82;
    text-decoration: underline;
}

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

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

@media (max-width: 768px) {
    .flyer-img {
        max-height: 60vh;
    }

    .info-text {
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
}