/* Venue Page Styles */
.venue-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(182, 180, 180, 0.7)), url('../images/venue-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    border-radius: 8px;
}

.venue-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.venue-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.venue-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.venue-info h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: left;
}

.venue-info p {
    margin-bottom: 15px;
}

.venue-contact {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.venue-contact h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.venue-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.travel-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.travel-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.travel-option {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.travel-option h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.travel-option .icon {
    margin-right: 10px;
}

.accommodation {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.hotels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.hotel {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.hotel h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.hotel p {
    margin-bottom: 8px;
}

.local-info {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.local-info ul {
    list-style-position: inside;
    margin: 15px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .venue-details {
        grid-template-columns: 1fr;
    }
    
    .travel-options, .hotels {
        grid-template-columns: 1fr;
    }
}
