/*
Theme Name: Mike's Local Gay Bar Review
Description: Custom theme for Mike's Local Gay Bar Review site - displays gay bar reviews from podcast transcripts
Version: 1.0
Author: Your Name
Text Domain: mgbr-local
*/

/* Custom styles for Mike's Local Gay Bar Review */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.site-title a {
    color: white;
    text-decoration: none;
}

.site-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navigation */
.site-navigation {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
    margin: 0;
}

.nav-menu li {
    margin: 0 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #667eea;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #764ba2;
}

/* Main Content */
.site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    min-height: calc(100vh - 300px);
}

.entry-content {
    width: 100%;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Review Cards */
.reviews-section h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.review-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 1.5rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.review-card-link .review-card:hover,
.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.review-header h3 {
    color: #667eea;
    font-size: 1.3rem;
}

.venue-name {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.venue-name:hover {
    color: #764ba2;
    text-decoration: underline;
}

.review-card-link .venue-name {
    color: #667eea;
    font-weight: 600;
}

.review-card-link:hover .venue-name {
    color: #764ba2;
    text-decoration: underline;
}

.episode-link a {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.episode-link a:hover {
    background: #e0e0e0;
}

.episode-badge {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    color: #666;
    font-size: 0.9rem;
}

.timestamp {
    color: #999;
    font-size: 0.85rem;
}

.review-body {
    margin-bottom: 1rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.review-dildos {
    color: #667eea;
    font-size: 1.1rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.85rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.5rem;
}

/* Venues Grid */
.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
}

.venue-controls {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.search-button {
    padding: 0.8rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.search-button:hover {
    background: #764ba2;
}

.clear-search {
    padding: 0.8rem 1rem;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.clear-search:hover {
    background: #e0e0e0;
}

.sort-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.sort-controls label {
    font-weight: 600;
    color: #666;
}

.sort-link {
    padding: 0.5rem 1rem;
    background: #f0f0f0;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.sort-link:hover,
.sort-link.active {
    background: #667eea;
    color: white;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.venue-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.venue-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.venue-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.venue-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.venue-info {
    padding: 1.5rem;
}

.venue-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.venue-address {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.venue-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.venue-reviews {
    color: #999;
    font-size: 0.9rem;
}

.venue-rating {
    color: #667eea;
    font-size: 1.2rem;
}

/* Venue Detail Page */
.venue-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.venue-detail-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
}

.venue-detail-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.venue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.venue-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.venue-detail-body {
    padding: 2rem;
}

.venue-photo-large {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* View All Button */
.view-all-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.view-all-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-state p {
    color: #666;
    margin-bottom: 1rem;
}

.empty-state code {
    background: #f0f0f0;
    padding: 0.3rem 0.6rem;
    border-radius: 3px;
    font-family: monospace;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer p {
    opacity: 0.8;
    margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 1.8rem;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
}
