/* Entertainment Guide Styles */

.entertainment-page {
    min-height: 100vh;
    background: var(--sub-color);
}

/* Hero Section */
.entertainment-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.entertainment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/frontpage.jpg') center/cover;
    opacity: 0.6;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

/* Search and Filter Section */
.search-filter-section {
    background: var(--sub-color);
    padding: 2rem 0;
    border-bottom: 2px solid var(--primary-gold);
}

.search-filter-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.view-toggle {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.view-btn {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-select {
    background: var(--sub-color);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--main-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.filter-select option {
    background: var(--sub-color);
    color: var(--main-color);
}

.btn-location {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.btn-location:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Featured Venues Section */
.featured-venues-section {
    padding: 4rem 0;
    background: var(--sub-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.featured-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* Venue Cards */
.venue-card {
    background: var(--sub-color);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.venue-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.venue-card.featured-venue {
    border-color: var(--primary-gold);
}

.venue-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.venue-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-card:hover .venue-image img {
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
}

.venue-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-gold);
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid var(--primary-gold);
    z-index: 10;
}

.venue-info {
    padding: 1.5rem;
}

.venue-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.venue-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.venue-meta .rating {
    color: var(--primary-gold);
    font-weight: 600;
}

.venue-meta .rating i {
    margin-right: 0.25rem;
}

.venue-meta .reviews {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.venue-meta .price-range {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.venue-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.venue-address {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.venue-address i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

.venue-distance {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-view {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Venues Content Section */
.venues-content {
    padding: 4rem 0;
    background: var(--sub-color);
}

.results-header {
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 1.8rem;
    color: var(--main-color);
    font-weight: 600;
}

.venues-list {
    display: none;
}

.venues-list.active {
    display: block;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--sub-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.75rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.no-results p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Map View */
.map-container {
    display: none;
    position: relative;
    height: 600px;
}

.map-container.active {
    display: flex;
}

#venueMap {
    flex: 1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.map-sidebar {
    width: 350px;
    background: var(--sub-color);
    border: 2px solid var(--primary-gold);
    border-radius: 12px;
    padding: 1.5rem;
    margin-left: 1rem;
    overflow-y: auto;
}

.map-sidebar h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

#mapVenuesList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-venue-item {
    background: var(--sub-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-venue-item:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.map-venue-item h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-venue-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .featured-venues-grid,
    .venues-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        flex-direction: column;
        height: auto;
    }

    #venueMap {
        height: 400px;
    }

    .map-sidebar {
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        max-height: 400px;
    }

    .view-toggle {
        flex-direction: column;
    }
}


