/* Event Venue Section Fix - Match Sample Layout */

.event-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.event-info-section .sec-title {
    text-align: center;
    margin-bottom: 60px;
}

.event-info-section .sec-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.event-info-section .sec-title .text {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

/* Map Column Styling */
.event-info-section .map-column {
    position: relative;
    margin-bottom: 30px;
}

.event-info-section .map-outer {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-info-section .map-outer iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Info Column Styling */
.event-info-section .info-column {
    position: relative;
    padding-left: 0;
}

.event-info-section .info-column .inner-column {
    padding-left: 0;
}

/* Event Info Tabs Styling */
.event-info-tabs {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.event-info-tabs .tab-buttons {
    position: relative;
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.event-info-tabs .tab-btn {
    position: relative;
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.event-info-tabs .tab-btn:hover,
.event-info-tabs .tab-btn.active-btn {
    color: #4965AD;
    background: #ffffff;
    border-bottom: 3px solid #4965AD;
}

.event-info-tabs .tabs-content {
    position: relative;
    background: #ffffff;
    padding: 30px;
    border: none;
    box-shadow: none;
}

.event-info-tabs .tabs-content .tab {
    min-height: auto;
}

.event-info-tabs .tabs-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.event-info-tabs .tabs-content h4 .icon {
    color: #4965AD;
    font-size: 18px;
    margin-right: 10px;
}

.event-info-tabs .tabs-content .text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.event-info-tabs .tabs-content .info-list {
    margin-top: 20px;
}

.event-info-tabs .tabs-content .info-list li {
    padding-left: 0;
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.event-info-tabs .tabs-content .info-list li .icon {
    position: static;
    color: #4965AD;
    font-size: 16px;
    margin-right: 10px;
    width: 20px;
}

.event-info-tabs .tabs-content .info-list li a {
    color: #4965AD;
    text-decoration: none;
    font-weight: 500;
}

.event-info-tabs .tabs-content .info-list li a:hover {
    color: #57428D;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-info-section .sec-title h2 {
        font-size: 28px;
    }
    
    .event-info-section .map-outer {
        height: 300px;
    }
    
    .event-info-tabs .tabs-content {
        padding: 20px;
    }
    
    .event-info-tabs .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}
