/* Venue Pages Specific Styles */

.venue-navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.venue-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 4rem;
}

.venue-about {
    padding: 5rem 0;
    background: var(--light-bg);
}

.venue-about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.venue-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.venue-stats .stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.venue-stats .stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.venue-stats .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.venue-menu {
    padding: 5rem 0;
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: var(--white);
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.menu-item .price {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.menu-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.venue-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.venue-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 1rem;
}

.venue-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.back-to-home {
    background: #f3f4f6;
    padding: 2rem 0;
    text-align: center;
}

.back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--secondary-color);
}

/* Happy Hour Section (Budget Bar specific) */
.happy-hour {
    padding: 5rem 0;
    background: #f3f4f6;
}

.happy-hour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.happy-hour-text {
    padding: 3rem;
}

.happy-hour-text .badge {
    background: rgba(217, 119, 6, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.happy-hour-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.happy-hour-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.happy-hour-list {
    list-style: none;
    margin-bottom: 2rem;
}

.happy-hour-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.happy-hour-list .fas {
    color: #10b981;
}

.happy-hour-image {
    position: relative;
    height: 24rem;
}

.happy-hour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}