/* ============================================================
   STRAATZAKEN026 — Gradient Backgrounds & Glass Effects
   ============================================================ */

/* Hero Gradient - Modern Professional */
.hero {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl, 16px);
    margin: 0 0 2rem 0;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Recent Posts - Hero Style */
.recent-posts {
    margin-bottom: 2rem;
}

.recent-posts h2,
.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(234, 170, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #EAAA00;
    position: relative;
    z-index: 1;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
    letter-spacing: -0.02em;
}

.hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
}

.hero p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(226, 232, 240, 0.9);
    max-width: 700px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

/* Hero mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-lg, 12px);
        margin-bottom: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 64, 133, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle animated gradient for hero */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-animated {
    background: linear-gradient(-45deg, #004085, #002752, #001a3a, #004085);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Card Gradients */
.card-gradient {
    background: linear-gradient(145deg, var(--card-bg) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.card-gradient-hover {
    transition: background 0.3s ease;
}

.card-gradient-hover:hover {
    background: linear-gradient(145deg, rgba(30, 41, 59, 1) 0%, rgba(30, 41, 59, 0.9) 100%);
}

/* Header Gradient - Matching hero style */
.site-header {
    background: linear-gradient(135deg, #004085 0%, #002752 50%, #001a3a 100%);
    border-bottom: 3px solid #D4A017;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 64, 133, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer Gradient */
footer {
    background: linear-gradient(135deg, #004085 0%, #002752 50%, #001a3a 100%);
    position: relative;
    border-top: 3px solid #D4A017;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 64, 133, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 64, 133, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Button Gradients */
.btn-gradient {
    background: linear-gradient(135deg, #004085 0%, #002752 100%);
    border: none;
    color: #D4A017;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #002752 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 64, 133, 0.4);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(90deg, #D4A017, #f4c430, #D4A017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: textGradientMove 3s linear infinite;
}

@keyframes textGradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Overlay Gradients */
.gradient-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.gradient-overlay-bottom {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

.gradient-overlay-left {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
}

/* ========================================
   GLASS EFFECTS
   ======================================== */

/* Light Glass */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Dark Glass */
.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glass Card */
.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg, 16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Glass Modal */
.glass-modal {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl, 20px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* Status Badge Gradients */
.status-badge-gradient {
    background: linear-gradient(135deg, rgba(0, 64, 133, 0.3) 0%, rgba(212, 160, 023, 0.2) 100%);
    border: 1px solid rgba(212, 160, 023, 0.3);
}

/* Online/Offline Indicators */
.status-online {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.5);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.6); }
}

.status-offline {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* Animated background pattern */
.bg-pattern {
    background-color: #0f172a;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 64, 133, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(212, 160, 23, 0.08) 0%, transparent 50%);
}

/* Subtle noise texture overlay */
.bg-texture {
    position: relative;
}

.bg-texture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}
