/* ============================================================
   STRAATZAKEN026 — Glow Effects
   ============================================================ */

/* Primary Glow (Blue) */
.glow-primary {
    box-shadow: 0 0 20px rgba(0, 64, 133, 0.3);
}

.glow-primary-strong {
    box-shadow: 0 0 30px rgba(0, 64, 133, 0.5), 0 0 60px rgba(0, 64, 133, 0.3);
}

/* Accent Glow (Orange/Gold) */
.glow-accent {
    box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
}

.glow-accent-strong {
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.5), 0 0 60px rgba(212, 160, 23, 0.3);
}

/* Success Glow (Green) */
.glow-success {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

/* Danger Glow (Red) */
.glow-danger {
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

/* Text Glow */
.text-glow {
    text-shadow: 0 0 10px currentColor;
}

.text-glow-accent {
    text-shadow: 0 0 10px rgba(212, 160, 23, 0.5), 0 0 20px rgba(212, 160, 23, 0.3);
}

.text-glow-primary {
    text-shadow: 0 0 10px rgba(0, 64, 133, 0.5), 0 0 20px rgba(0, 64, 133, 0.3);
}

/* Animated Glow */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 160, 23, 0.6), 0 0 60px rgba(212, 160, 23, 0.4);
    }
}

.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulseBlue {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 64, 133, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 64, 133, 0.6), 0 0 60px rgba(0, 64, 133, 0.4);
    }
}

.glow-pulse-blue {
    animation: glowPulseBlue 2s ease-in-out infinite;
}

/* Focus Ring Glow */
.focus-glow:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 64, 133, 0.4), 0 0 20px rgba(0, 64, 133, 0.2);
}

.focus-glow-accent:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.4), 0 0 20px rgba(212, 160, 23, 0.2);
}

/* Border Glow */
.border-glow {
    border: 2px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
                linear-gradient(135deg, #004085, #D4A017) border-box;
}

.border-glow-accent {
    border: 2px solid transparent;
    background: linear-gradient(var(--card-bg), var(--card-bg)) padding-box,
                linear-gradient(135deg, #D4A017, #f4c430) border-box;
}

/* Hover Glow Effects */
.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(0, 64, 133, 0.4);
}

.hover-glow-accent {
    transition: box-shadow 0.3s ease;
}

.hover-glow-accent:hover {
    box-shadow: 0 0 25px rgba(212, 160, 23, 0.4);
}

/* Button Glow */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.btn-glow:hover::after {
    width: 200%;
    height: 200%;
}

.btn-glow-accent {
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.btn-glow-accent:hover {
    box-shadow: 0 6px 25px rgba(212, 160, 23, 0.5);
}

/* Card Glow on Hover */
.card-glow-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-glow-hover:hover {
    box-shadow: 0 0 30px rgba(0, 64, 133, 0.3), 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

/* Icon Glow */
.icon-glow {
    transition: filter 0.3s ease;
}

.icon-glow:hover {
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.6));
}

/* Input Glow */
.input-glow {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.input-glow:focus {
    border-color: #004085;
    box-shadow: 0 0 0 3px rgba(0, 64, 133, 0.2), 0 0 20px rgba(0, 64, 133, 0.1);
}

/* Online Status Glow */
.status-glow {
    position: relative;
}

.status-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: statusGlowPulse 2s ease-in-out infinite;
}

.status-glow.online::before {
    background: rgba(34, 197, 94, 0.4);
}

@keyframes statusGlowPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0; }
}
