/*
 * Stylesheet for the Coral Park High School 50th Reunion website.
 * The color palette draws on patriotic red, white and blue tones to
 * evoke the "Spirit of ’76" theme. Layouts are simple and responsive
 * so the pages look good on both desktop and mobile screens.
 */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f7fb;
    color: #333;
    line-height: 1.6;
}

/* Navigation bar */
nav {
    background-color: #002f5b; /* dark blue */
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.25rem;
    flex-wrap: wrap;
}

nav .logo {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: #c60c30; /* accent red */
}

/* Header section with image */
header {
    text-align: center;
    overflow: hidden;
}

header img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main content area */
main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

main h1 {
    color: #002f5b;
    margin-top: 0;
}

main h2 {
    color: #002f5b;
    margin-top: 1.5rem;
}

main p {
    margin-bottom: 1rem;
}

/* Sponsor cards */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.sponsor-card {
    background-color: #f9f9fa;
    border: 1px solid #e0e4ed;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
}

.sponsor-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.sponsor-card h3 {
    margin: 0.5rem 0;
    color: #002f5b;
}

/* Ticket iframe styling */
.ticket-frame {
    width: 100%;
    height: 800px;
    border: none;
}

/* Hotel page */
.hotel-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hotel-info a {
    color: #c60c30;
    text-decoration: none;
    font-weight: 600;
}

.hotel-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #002f5b;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer a {
    color: #c60c30;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}