/* Location Page Styles */

/* Page-specific header override */
.page-header p {
    font-style: italic;
}

/* Location Section */
.location-section {
    padding: 4rem 2rem;
    background: #f4f1ed;
}

.location-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Map */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #a8a5a0;
}

.map-placeholder i {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin: 0;
}

/* Embedded map */
.map-container iframe {
    width: 100%;
    flex: 1;
    min-height: 300px;
    border: none;
    display: block;
}

.open-maps-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    color: #d4af37;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.open-maps-btn:hover {
    background: #d4af37;
    color: #1a1d28;
}

.open-maps-btn i {
    font-size: 1.25rem;
}

/* Location Details */
.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-card {
    background: linear-gradient(180deg, #1a1d28 0%, #252836 100%);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location-card h2 {
    color: #d4af37;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-card h2 i {
    font-size: 1.5rem;
}

.location-card p {
    color: #e8e6e3;
    margin: 0.25rem 0;
    font-size: 1rem;
}

.location-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-card li {
    color: #e8e6e3;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.location-card li::before {
    content: '•';
    color: #d4af37;
    position: absolute;
    left: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        order: 2;
    }

    .location-details {
        order: 1;
    }
}

@media (max-width: 480px) {
    .location-card {
        padding: 1.25rem 1.5rem;
    }
}
