/* ===== Global Layout ===== */
body {
    margin: 0;
    font-family: sans-serif;
    background: #fdfdfb;
}

.header {
    height: 80px;
    background: #ccc;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    font-size: 1.2rem;
    font-weight: bold;
}

/* ===== Page Container ===== */
.container {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== Sidebar & Filter ===== */
.sidebar {
    width: 250px;
}

.sticky-box {
    position: sticky;
    top: 80px;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    line-height: 2.5rem;
}

.seating-capacity-filter {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e05e;
    padding: 10px;
    border-radius: 8px;
}

/* ===== Map Column ===== */
.map-column {
}

#map {
    width: 400px;
    height: 800px;
    border-radius: 6px;
}

/* ===== Venue Content Area ===== */
.content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.venue-tile {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.venue-counter {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 500;
}

/* ===== HTMX Spinner ===== */
.spinner {
    margin: 2rem auto;
    width: 30px;
    height: 30px;
    border: 4px solid #ccc;
    border-top: 4px solid #888;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Search & Buttons ===== */
.searchbar-box {
    display: flex;
    gap: 10px;
    width: 90%;
}

.search-form {
    flex-grow: 1;
    margin: 0;
}

.search-form input[type="text"] {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    padding-bottom: 15px;
    padding-top: 15px;
    border-radius: 4px;
}

.clear-filters-button {
    
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    padding: 20px;
}

.blog-button {
    
    background: #568eb5;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 20px;
}

/* ===== Misc Elements ===== */
.pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pagination a {
    
    background: #ddd;
    border-radius: 5px;
    text-decoration: none;
}

.location-results {
    max-height: none;
    overflow: visible;
    padding-bottom: 2000px; /* Helps sentinel come into view */
}

.map-thumb {
    height: 100px;
    width: 150px;
}

.leaflet-popup-content {
margin: 13px 24px 13px 20px;
line-height: 1.3;
font-size: 1.08333em;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.logo-container {
order: -1;
margin-bottom: 10px;
}

.logo {
    width: 100%;
    height: auto;
}

.slogan-text{
font-size: 1.7rem;
font-family: sans-serif;
display: flex;
justify-content: center;    
margin-top: 80px;
}

.search-and-slogan {
    width: 1100px;
    margin-left: 5%;
    margin-top: 80;
}

.search-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.Blog-Link {
    display: inline-block;
    padding: 0;
    border: none;
    background: none;
}

.Blog-Link .blog-link {
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    display: inline-block;
}

.Blog-Link .blog-link:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.venue-heading {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
}

