/* Modern Color Palette & Typography */
:root {
    --primary-bg: #f4f4f9;
    --header-bg: #202020;
    --nav-bg: #454545;
    --accent: #3498db;
    --text-main: #333333;
    --text-light: #ecf0f1;
    --card-bg: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header & Logo */
header {
    background-color: var(--header-bg);
    text-align: center;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--nav-bg);
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

nav a:hover, nav a.active {
    background-color: var(--accent);
    transform: translateY(-2px);
}

/* Main Content Container */
main {
    flex: 1;
    max-width: 1200px; /* Slightly wider to accommodate large flyers */
    margin: 2rem auto;
    padding: 0 1rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

h1, h2 {
    color: var(--header-bg);
    margin-bottom: 1rem;
}

/* Contact Specific Styling */
.contact-info {
    font-size: 1.2rem;
    line-height: 1.6;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 2rem auto;
    max-width: 600px;
}

.contact-info a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

/* ----------------------------------------- */
/* NEW GALLERY STYLING (One per row)         */
/* ----------------------------------------- */
.gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem; /* Adds nice breathing room between flyers */
    margin-top: 2rem;
}

.gallery img {
    width: 100%;
    max-width: 850px; /* Forces the image to be large enough to read */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); /* Slightly stronger shadow */
}

/* ----------------------------------------- */
/* NEW PDF STYLING (One per row, Taller)     */
/* ----------------------------------------- */
.pdf-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.pdf-container {
    width: 100%;
    max-width: 900px; /* Matches the gallery width nicely */
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.pdf-container iframe {
    width: 100%;
    height: 80vh; /* Takes up 80% of the screen height so it feels like a real document */
    min-height: 600px; /* Ensures it doesn't get too small on weird resolutions */
    border: none;
    border-radius: 4px;
}

.disclaimer {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Footer */
footer {
    background-color: var(--header-bg);
    color: var(--text-light);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: auto;
}