:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #f8f9fa;
    --text-color: #333;
    color-scheme: light dark;
    forced-color-adjust: none;
}

* {
    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;
    margin: 0;
    padding: 20px;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
}

.header {
    margin: 2rem 0;
    color: var(--primary-color);
}

.nav-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    padding: 1rem;
}

.nav-button {
    padding: 1.5rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.search-container {
    margin: 1rem 0 2rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-container {
        flex-direction: row;
    }
}

.search-box {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
}

.category-select {
    padding: 0.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    background-color: white;
}

.filters {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.filters input,
.filters select {
    padding: 8px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.venue-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.venue-card {
    margin: 0;
    padding: 1rem;
    background: white;
    border: 1px solid;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    color: #eb8d09; /* orange - this will affect all text inside venue-card */
}

.venue-card h3 {
    margin: 0 0 1rem 0;
    color: var(--primary-color); /* Keep headers in original color */
    font-size: 1.25rem;
    font-weight: 600;
}

.venue-card > *:not(h3):not(a) {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.venue-card a {
    color: var(--secondary-color); /* Keep links in original color */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.venue-card a:hover {
    text-decoration: underline;
}

.venue-card i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .venue-card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .venue-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .venue-card > *:not(h3):not(a) {
        font-size: 0.9rem;
        margin: 0.35rem 0;
    }
}

.alpha-badge {
    background-color: #ff4081;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.coming-soon {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f5f5f5;
    border-radius: 8px;
    color: #666;
}

.coming-soon p {
    margin: 0.5rem 0;
}

.coming-soon p:last-child {
    font-weight: bold;
    color: #2196f3;
}

.error {
    color: #e74c3c;
    padding: 10px;
    background: #fdf2f2;
    border-radius: 4px;
    margin: 10px 0;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #1a1a1a;
        color: #fff;
    }
    
    .venue-card,
    .filters {
        background: #2d2d2d;
    }
    
    .venue-card h3 {
        color: #fff;
    }
    
    .venue-card > *:not(h3):not(a) {
        color: #ccc;
    }
    
    .venue-card a {
        color: #5dade2;
    }
    
    .filters input,
    .filters select {
        background: #333;
        color: #fff;
        border-color: #444;
    }
}
