/* ===================================
   LOCATIONS PAGE STYLES
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--cyan-blue), var(--dark-blue));
    padding: 150px 0 100px;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 70px 70px;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px var(--black);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background: var(--white);
}

.location-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px;
    background: var(--gray-light);
    border-radius: 30px;
    position: relative;
}

.location-detail:nth-child(odd) {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 188, 212, 0.1));
}

.location-detail:nth-child(even) {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 215, 0, 0.1));
}

.location-detail.reverse {
    direction: rtl;
}

.location-detail.reverse > * {
    direction: ltr;
}

.location-badge {
    display: inline-block;
    background: var(--black);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.location-name {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1;
}

.location-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icon {
    width: 40px;
    height: 40px;
    color: var(--cyan-blue);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.location-description {
    margin-bottom: 30px;
}

.location-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

/* Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 5px solid var(--black);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.location-1 {
    background: url('../images/location-storefront.jpg') center center / cover no-repeat;
}

.location-2 {
    background: url('../images/location-storefront.jpg') center center / cover no-repeat;
}

.location-3 {
    background: url('../images/location-storefront.jpg') center center / cover no-repeat;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.map-placeholder span {
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--bright-yellow));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(0, 188, 212, 0.3) 100px, transparent 100px),
        radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.3) 120px, transparent 120px);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 4rem;
    color: var(--black);
    margin-bottom: 20px;
    text-shadow: 3px 3px 0px var(--white);
}

.cta-text {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .page-title {
        font-size: 3rem;
    }

    .location-detail,
    .location-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 40px 30px;
        gap: 40px;
    }

    .location-detail.reverse .location-map {
        order: 2;
    }

    .location-detail.reverse .location-content {
        order: 1;
    }

    .location-name {
        font-size: 2.5rem;
    }

    .map-placeholder {
        height: 350px;
    }

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

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .location-detail {
        padding: 30px 20px;
        margin-bottom: 50px;
    }

    .location-name {
        font-size: 2rem;
    }

    .map-placeholder {
        height: 250px;
        font-size: 5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}
