/* Locations Page Styles */
.locations-page {
    padding-top: 80px;
    min-height: 100vh;
    background-color: var(--bg-primary);
}

.locations-header {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--bg-secondary);
    margin-bottom: 3rem;
}

.locations-header h1 {
    color: var(--yellow);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.locations-header p {
    color: var(--text-secondary);
}

/* Location Cards */
.locations-container {
    display: grid;
    gap: 3rem;
    padding: 0 1rem 3rem;
}

.location-card {
    background-color: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.location-info {
    padding: 2rem;
}

.location-info h2 {
    color: var(--yellow);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-info address {
    font-style: normal;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--yellow);
}

.hours {
    margin-top: 1rem;
}

.hours h3 {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.hours p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: opacity 0.3s ease;
}

.map-container:hover iframe {
    opacity: 0.9;
}

/* Directions Button */
.directions-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--blue);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.directions-button:hover {
    background-color: var(--red);
    transform: translateY(-2px);
}

/* Colombian Flag Accent */
.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        to right,
        var(--yellow) 0%,
        var(--yellow) 50%,
        var(--blue) 50%,
        var(--blue) 75%,
        var(--red) 75%,
        var(--red) 100%
    );
}

/* Responsive Design */
@media (min-width: 992px) {
    .locations-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .locations-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .locations-header h1 {
        font-size: 2rem;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-info h2 {
        font-size: 1.75rem;
    }

    .map-container {
        height: 250px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.chicago {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 