/*
Theme Name:  HSV Maurits
Theme URI:   https://hsvmaurits.nl
Author:      HSV Maurits
Description: Hengelsportvereniging Geleen — modern thema met Tailwind CSS en Elementor ondersteuning.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: hsv-maurits
*/

/* ══════════════════════════════════════════
   GLASSMORPHISM NAVIGATIE
══════════════════════════════════════════ */
.glass-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

/* ══════════════════════════════════════════
   NAV LINK ANIMATIE (underline hover)
══════════════════════════════════════════ */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #38bdf8;
  transition: width 0.2s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }

/* ══════════════════════════════════════════
   HERO OVERLAY
══════════════════════════════════════════ */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(8,47,73,0.96) 0%,
    rgba(3,105,161,0.85) 50%,
    rgba(8,47,73,0.92) 100%
  );
}

/* ══════════════════════════════════════════
   GRADIENT TEXT
══════════════════════════════════════════ */
.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #7dd3fc 50%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════
   KAART HOVER EFFECT
══════════════════════════════════════════ */
.card {
  transition: transform 0.25s cubic-bezier(.4,0,.2,1),
              box-shadow 0.25s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* ══════════════════════════════════════════
   FEATURE CARD (gradient top border bij hover)
══════════════════════════════════════════ */
.feature-card {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0369a1, #38bdf8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature-card:hover::before { opacity: 1; }

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATIE
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   GLOW EFFECT
══════════════════════════════════════════ */
.glow { box-shadow: 0 0 40px rgba(56,189,248,0.15); }

/* ══════════════════════════════════════════
   STAT NUMMERS
══════════════════════════════════════════ */
.stat-number { font-variant-numeric: tabular-nums; }

/* ══════════════════════════════════════════
   JUBILEUM PULSERENDE DOT
══════════════════════════════════════════ */
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0;   }
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #fbbf24;
  animation: pulse-ring 1.5s ease infinite;
}

/* ══════════════════════════════════════════
   INPUT VELDEN (contactformulier)
══════════════════════════════════════════ */
.input-field {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
}
.input-field:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56,189,248,0.15);
}

/* ══════════════════════════════════════════
   GLOBAAL
══════════════════════════════════════════ */
* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { background-color: #f8fafc; color: #1e293b; }

/* Elementor: zorg dat de content container vol-breedte is */
.elementor-section-boxed > .elementor-container { max-width: 1280px; }
