.venue-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1 {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.venue-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    padding: 3rem;
    margin-bottom: 4rem;
    transition: transform 0.3s;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.venue-card:hover {
    transform: translateY(-5px);
}

.venue-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.venue-header i {
    font-size: 2.5rem;
    color: var(--orange);
}

.venue-header h2 {
    font-size: 2rem;
    color: var(--terracotta);
}

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

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

.venue-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--orange);
    font-size: 1.2rem;
}

/* Schedule Styles */
.schedule-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    padding: 3rem;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.schedule-header i {
    font-size: 2.5rem;
    color: var(--orange);
}

.schedule-header h2 {
    font-size: 2rem;
    color: var(--terracotta);
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--orange), var(--terracotta));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.7rem;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--orange);
}

.date {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.date .day {
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.content h3 {
    font-size: 1.8rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.event-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-type i {
    color: var(--orange);
}

.venue-info {
    padding-right: 2rem;
    border-right: 2px solid #f5f5f5;
}

.map-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    justify-content: center;
}

.directions-btn:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 99, 71, 0.2);
}

.directions-btn i {
    font-size: 1.2rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .venue-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-info {
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #f5f5f5;
        padding-bottom: 2rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .venue-card {
        padding: 1.5rem;
    }

    .venue-address {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 250px;
    }
} 