@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:wght@400;600&display=swap');

/* Prefix cl- applies to the Elementor widget */
.cl-locations-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
}

.cl-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(168, 166, 155, 0.85); /* Warm grayish overlay */
    z-index: 1;
}

.cl-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.cl-left-panel {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
}

.cl-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: #1a2530;
}

.cl-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #1a2530;
}

.cl-location-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cl-card {
    border-radius: 20px;
    padding: 35px 35px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    position: relative;
    overflow: hidden;
}

.cl-card h2, .cl-card p, .cl-card span {
    color: white;
}

.cl-card:hover {
    transform: translateY(-5px);
    opacity: 0.9;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cl-card.cl-active {
    opacity: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cl-card.cl-active::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

.cl-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
}

.cl-card .cl-address {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

.cl-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 0 0 25px 0;
}

.cl-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cl-hours .cl-icon {
    font-size: 1.3rem;
    align-self: flex-start;
    margin-top: -2px;
}

.cl-right-panel {
    flex: 1.2;
    display: flex;
    min-height: 100%;
}

.cl-map-container {
    width: 100%;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cl-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .cl-left-panel {
        max-width: 100%;
    }

    .cl-title {
        font-size: 3.5rem;
    }

    .cl-map-container {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .cl-locations-section {
        padding: 50px 0;
    }

    .cl-title {
        font-size: 2.5rem;
    }

    .cl-card {
        padding: 25px;
    }

    .cl-map-container {
        min-height: 400px;
    }
}
