/**
 * Glesner - Section Locations
 */

.locations-block-section {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: #FFFFFF;
}

.locations-block-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.locations-block-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locations-block-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 75%,
        #16161A 100%
    );
    z-index: 1;
}

.locations-block-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
    max-width: 960px;
    width: 80%;
}

.location-card {
    background: rgba(22, 22, 26, 0.3);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(252, 206, 45, 0.25);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.location-icon {
    width: 80px;
    height: 80px;
    margin-bottom: -3rem;
    position: relative;
    top: -5rem;
}

.location-icon svg {
    width: 100%;
    height: 100%;
    fill: #FCCE2D;
}

.location-city {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FCCE2D;
    margin: 0 0 1rem 0;
    letter-spacing: 0;
}

.location-address {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.location-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: #FCCE2D;
}

.location-phone svg {
    width: 20px;
    height: 20px;
    fill: #FCCE2D;
}

@media (max-width: 768px) {
    .locations-block-section {
        min-height: 700px;
    }
    
    .locations-block-content {
        grid-template-columns: 1fr;
        gap: 5.2rem;
        padding: 2rem 1.5rem;
        /* width: 80%; */
    }
    
    .location-card {
        padding: 1.5rem;
    }
}
