/* ========================= */
/*     ORANJE ANIMATIE BG    */
/* ========================= */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: white;
  
  background: linear-gradient(180deg, #ff7a00, #ff5100, #ff8c1a);
  background-size: 100% 300%;
  animation: scroll-bg 12s linear infinite;
  transition: background 0.3s ease;
}

@keyframes scroll-bg {
  0% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}

/* ========================= */
/*          NAVBAR           */
/* ========================= */

nav {
  position: sticky;       /* maakt de navbar sticky */
  top: 0;                 /* plakt hem bovenaan */
  z-index: 1000;          /* blijft boven andere content */
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7px);
  transition: background 0.3s ease; /* subtiele overgang bij scrollen */
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

nav a:hover {
  opacity: 0.8;
}


/* ========================= */
/*           HERO            */
/* ========================= */
/* LET OP: alleen op INDEX.HTML aanwezig → dus andere pagina's blijven onaangetast */

.hero {
  padding: 80px 20px;
  text-align: center;
}

.hero-card {
  max-width: 500px;
  margin: auto;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 30px;
  backdrop-filter: blur(6px);
}

.hero-logo {
  width: 140px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.25);
}

/* ========================= */
/*           CARDS           */
/* ========================= */

.card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 15px;
}

/* ========================= */
/*          BUTTONS          */
/* ========================= */

.btn {
  background: #ff7a00;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
}

.btn:hover {
  background: #ff5100;
}

small {
  display: block;
  text-align: center;
  width: 100%;
}

h2 {
  display: block;
  text-align: center;
  width: 100%;
}

h1 {
  display: block;
  text-align: center;
  width: 100%;
}

p {
  display: block;
  text-align: center;
  width: 100%;
}

div {
  display: block;
  text-align: center;
  width: 100%;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.video-grid .video-item {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}

.video-grid .video-item:hover {
  transform: scale(1.03);
}

.video-grid .video-thumb {
  width: 100%;
  border-radius: 10px;
}

.video-grid .video-title {
  margin-top: 10px;
  font-size: 1rem;
  color: white;
}

.subscribe-btn {
  display: block;
  width: fit-content;
  margin: 2px auto 8px auto;
  background: red;
  color: white;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0px 5px 15px rgba(255, 0, 0, 0.3);
  transition: 0.2s ease-in-out;
}



.subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

img {
  width: 200px; /* beginbreedte */
  height: auto;
  transition: transform 0.3s ease; /* soepele overgang */
}

img:hover {
  transform: translateY(-4px);
}