﻿/* Global Layout */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.site-header {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.main-nav {
    background: #333;
    padding: 10px;
    text-align: center;
}

    .main-nav a {
        color: #fff;
        margin: 0 15px;
        text-decoration: none;
    }

.site-footer {
    background: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

/* Show Selector */
.show-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
}

.show-card {
    width: 350px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: var(--highlight);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.flyer-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.show-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

/* Show Pages */
.show-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.flyer-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.show-details {
    text-align: center;
    line-height: 1.5;
}

/* Theme Variables */
.bellevue-theme {
    --accent-color: #ff6fae;
    --highlight: #fff0f7;
}

.portland-theme {
    --accent-color: #2d6a6a;
    --highlight: #e0f7f7;
}

.vendors-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    margin-bottom: 10px;
}

.page-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.vendor-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
}

.vendors-page {
    max-width: 900px;
    margin: 0 auto; /* centers the whole page */
    padding: 20px;
    text-align: center; /* centers text inside */
}

.page-title {
    margin-bottom: 10px;
}

.page-intro {
    margin-bottom: 30px;
    font-size: 1.1em;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    justify-items: center; /* centers each card */
    justify-content: center; /* centers the whole grid */
}

.vendor-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    width: 100%;
    max-width: 260px; /* keeps cards uniform and centered */
    text-align: center; /* centers text inside each card */
}

.vendor-name {
    margin-top: 0;
    font-size: 1.2em;
}

.vendor-location {
    color: #555;
    margin-bottom: 10px;
}

.vendor-link a {
    color: #0066cc;
    text-decoration: none;
}

    .vendor-link a:hover {
        text-decoration: underline;
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}

.gallery-item {
    text-align: center;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* keeps images uniform without stretching */
    border-radius: 4px;
}

.desc {
    margin-top: 8px;
    font-size: 14px;
}
/* Directions Page Wrapper */
.directions-page {
    background-color: #f3f8ff;
    padding: 30px;
    border-radius: 8px;
}

    /* Centered text */
    .directions-page h1,
    .directions-page h2,
    .directions-page h3,
    .directions-page p,
    .directions-page ul,
    .directions-page li {
        text-align: center;
    }

/* Map */
.map-frame {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Get Directions Button */
.directions-button {
    text-align: center;
    margin-bottom: 40px;
}

    .directions-button a {
        display: inline-block;
        padding: 12px 26px;
        background-color: #1976d2;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
    }

        .directions-button a:hover {
            background-color: #0f4fa0;
        }

/* Direction Cards */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.direction-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
}

/* Light comic-friendly background */
.directions-bg {
    background-color: #f3f8ff; /* soft blue tint */
    padding: 30px;
    border-radius: 8px;
}

/* Center all text inside the directions area */
.directions-bg h1,
.directions-bg h2,
.directions-bg h3,
.directions-bg h4,
.directions-bg ul,
.directions-bg li {
    text-align: center;
}

/* Center the list bullets nicely */
.directions-bg ul {
    list-style-position: inside;
    padding-left: 0;
}

/* Map container */
.map-frame {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Get Directions button */
.directions-button {
    margin: 10px auto 40px auto;
    text-align: center;
}

    .directions-button a {
        display: inline-block;
        padding: 12px 26px;
        background-color: #1976d2;
        color: #fff;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        font-size: 16px;
    }

        .directions-button a:hover {
            background-color: #0f4fa0;
        }

/* Apply the soft blue background panel */
.directions-style {
    background-color: #f3f8ff;
    padding: 30px;
    border-radius: 8px;
}

    /* Center all text inside the page */
    .directions-style h1,
    .directions-style h2,
    .directions-style h3,
    .directions-style p {
        text-align: center;
    }

/* Vendor grid becomes a clean, centered grid like Directions */
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Vendor cards get the same look as direction cards */
.vendor-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Vendor name styling */
.vendor-name {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Vendor location */
.vendor-location {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Vendor link */
.vendor-link a {
    font-weight: bold;
    color: #1976d2;
}

    .vendor-link a:hover {
        color: #0f4fa0;
    }