/* Location Badge Styles */
.location-badge-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
}

.location-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #007bff;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-content i {
    font-size: 1.5rem;
    color: #dc3545;
}

.location-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
}

.location-tagline {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.badge-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-outline-primary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #007bff;
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .location-badge {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .badge-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}
