/* Location Section Styles */

.location-section {
    background-color: #09293b;
    padding: 80px 40px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.location-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.location-section-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.location-section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.location-text {
    flex: 0 0 40%;
    color: #fff;
    text-align: center;
}

.location-heading {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-venue {
    color: #fff;
    font-size: 36px;
    line-height: 34px;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: "Open Sans", sans-serif;
}

.location-venue a {
    color: #fff;
    text-decoration: none;
}
.location-venue a:hover {
    text-decoration: underline;
}

.location-address {
    color: #fff;
    font-size: 36px;
    line-height: 34px;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-family: "Open Sans", sans-serif;
}

.location-address a {
    color: #fff;
    text-decoration: none;
}

.location-address a:hover {
    text-decoration: underline;
}

.location-note {
    color: #fff;
    font-size: 36px;
    line-height: 34px;
    font-weight: 400;
    margin: 0 0 20px 0;
    font-family: "Open Sans", sans-serif;
}


.location-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 20px;
    }
    
    .location-section-content {
        flex-direction: column;
        gap: 0px;
    }
    
    .location-text {
        flex: 1;
        width: 100%;
    }
    
    .location-image {
        flex: 1;
        width: 100%;
    }
    
    .location-heading {
        font-size: 28px;
    }
    
    .location-venue {
        font-size: 28px;
    }
    
    .location-address,
    .location-note {
        font-size: 28px;
    }
}

