body { font-family: Verdana, sans-serif; }


/* AOS fade-in effect */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

.aos-animate {
  opacity: 1;
}

/* Glow hover effect on CTA buttons */
.button-glow {
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(234,178,96,0);
}
.button-glow:hover {
  box-shadow: 0 0 15px rgba(234,178,96,0.7);
}

/* Shimmer on glass separator */
.glass-separator {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  height: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.glass-separator::after {
  content: "";
  position: absolute;
  top: 0; left: -150px;
  height: 100%; width: 150px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite linear;
}
@keyframes shimmer {
  0% { left: -150px; }
  100% { left: 100%; }
}


@media (max-width: 768px) {
  main[style*="background"] {
    background-size: cover !important;
    background-position: center top !important;
    background-attachment: fixed !important;
  }
}


@media (max-width: 768px) {
  main.section-with-bg {
    background-size: cover !important;
    background-position: center top !important;
    background-attachment: fixed !important;
  }
}

/* Main navigation menu */
/* removed duplicate */ {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* removed duplicate */ li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
/* removed duplicate */ li a:hover {
  color: #eab260;
  text-shadow: 0 0 5px rgba(234,178,96,0.4);
}
/* removed duplicate */ .current-menu-item a {
  color: #eab260;
  border-bottom: 2px solid #eab260;
}

/* Centered horizontal menu */
.horizontal-center {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 1rem;
  list-style: none;
  margin: 0;
}
.horizontal-center li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.horizontal-center li a:hover {
  color: #eab260;
  text-shadow: 0 0 5px rgba(234,178,96,0.4);
}
.horizontal-center .current-menu-item a {
  color: #eab260;
  border-bottom: 2px solid #eab260;
}




/* Transparante sticky header (glassmorphism) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow 0.3s ease;
}

/* Shadow-effect zodra gescrold wordt */
.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Menu links als knoppen */
.horizontal-center li a {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #eab260;
  border-radius: 6px;
  color: #eab260;
  background-color: transparent;
  transition: all 0.3s ease;
  font-weight: 500;
}

.horizontal-center li a:hover {
  background-color: #eab260;
  color: #1a1a1a;
  box-shadow: 0 0 8px rgba(234,178,96,0.4);
}

.horizontal-center .current-menu-item a {
  background-color: #eab260;
  color: #1a1a1a;
}

/* Shimmer + scaling effect */
.horizontal-center li a {
  position: relative;
  overflow: hidden;
  transform: scale(1);
}

.horizontal-center li a:hover {
  transform: scale(1.05);
}

.horizontal-center li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s;
  pointer-events: none;
}

.horizontal-center li a:hover::before {
  left: 125%;
}

/* Glans-animatie over header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.08) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: header-glint 6s infinite;
  pointer-events: none;
}

@keyframes header-glint {
  0% { left: -75%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

h1, h2, h3, .article-grid h3, .post-title {
  font-family: 'Poppins', sans-serif !important;
}


/* Titels in Poppins */
h1, h2, h3,
.article-grid h3,
.entry-title,
.post h1, .post h2, .post h3,
.single h1.entry-title,
.archive h2.entry-title {
  font-family: 'Poppins', sans-serif !important;
}


/* Hamburger menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #eab260;
  cursor: pointer;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .horizontal-center {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
  }

  .horizontal-center.active {
    display: flex;
  }
}


/* DEBUG voor zichtbaar maken menu */
@media (max-width: 768px) {
  .horizontal-center.active {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(234, 178, 96, 0.3);
    padding: 1rem;
  }
}


/* Sessietijdenblok */
.session-times-section {
  background-image: url('../images/abstract-bg.png');
  background-size: cover;
  background-position: center;
  padding: 3rem 1rem;
  margin-top: 2rem;
}

.session-times-section .glass-layer {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}

.sessions-grid .session h3 {
  color: #eab260;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sessions-grid .session-time {
  font-size: 1.5rem;
  color: #fff;
}

/* Sessietijden glazen stijl */
.session-glass-wrapper {
  background: url('../images/abstract-bg.png') no-repeat center center / cover;
  padding: 4rem 1rem;
}

.session-glass-card {
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  color: white;
  text-align: center;
}

.session-glass-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.session-glass-header h2 {
  font-size: 1.5rem;
  color: white;
}

.session-glass-header small {
  display: block;
  font-size: 0.8rem;
  color: #ccc;
}

.session-logo {
  width: 40px;
  height: auto;
}

.session-times-list {
  list-style: none;
  padding: 1rem 0;
  font-size: 1.1rem;
  text-align: left;
}

.session-times-list li {
  padding: 0.3rem 0;
}

.session-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.session-buttons button {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: bold;
  cursor: default;
  transition: 0.3s ease;
}

.session-buttons button.active-session {
  background: #eab260;
  color: black;
  box-shadow: 0 0 10px #eab260, 0 0 20px #eab260;
}


@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 10px #eab260, 0 0 20px #eab260;
  }
  50% {
    box-shadow: 0 0 20px #eab260, 0 0 40px #eab260;
  }
  100% {
    box-shadow: 0 0 10px #eab260, 0 0 20px #eab260;
  }
}

.session-buttons button.active-session {
  background: #eab260;
  color: black;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 10px #ff4c4c, 0 0 20px #ff4c4c;
  }
  50% {
    box-shadow: 0 0 20px #ff4c4c, 0 0 40px #ff4c4c;
  }
  100% {
    box-shadow: 0 0 10px #ff4c4c, 0 0 20px #ff4c4c;
  }
}

.session-buttons button.weekend-closed {
  background: #ff4c4c;
  color: white;
  animation: pulse-red 2s infinite;
}
