/**
 * Back Button Styles
 * Used on events, sponsors, and event-details pages
 */

.back-button-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .back-button-container {
        top: 15px;
        left: 15px;
    }
    
    .back-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}
