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

body {
    /* changed to a serif font as requested */
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    min-height: 100vh;
}

/* Header Styles */
header {
    background-color: #b8d8ea;
    color: #2c3e50;
    text-align: center;
    padding: 3.5rem 2rem;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

header .sponsor {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.85;
    color: #34495e;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Main Text Section */
.main-text {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Photos Section */
.photos {
    margin-bottom: 3rem;
}

.photo-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.photo-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: #ffffff;
}

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.photo-item .caption {
    padding: 1.25rem;
    text-align: center;
    font-size: 0.9rem;
    color: #5a6c7d;
    font-style: italic;
    background-color: #f8f9fa;
}

/* Information Section */
.information {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-column {
    background-color: #f8f9fa;
    padding: 2.5rem;
}

.info-column h2 {
    color: #4a90a4;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-column p {
    line-height: 1.8;
    color: #5a6c7d;
}

/* Footer */
footer {
    background-color: #b8d8ea;
    color: #2c3e50;
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-logos {
    display: inline-flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* small logo size - tweak as necessary */
.footer-logo {
    max-height: 48px;
    height: auto;
    width: auto;
    display: inline-block;
}

/* ensure text spacing remains neat */
footer p {
    margin: 0.5rem 0;
    color: #34495e;
    font-weight: 500;
}

footer p:first-child {
    /* previously styled the sponsor line; now it will apply to the first remaining paragraph (contact) */
    font-style: normal;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header .sponsor {
        font-size: 1rem;
    }

    main {
        padding: 1rem;
    }

    .photo-container {
        flex-direction: column;
    }

    .photo-item {
        max-width: 100%;
    }

    .information {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        max-height: 36px;
    }
}
