/* =============================== */
/* 🌐 GLOBAL SETTINGS & RESET      */
/* =============================== */

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(to bottom, #f0f8ff, #e6e6fa);
  color: #333;
  margin: 0;
}

main {
  padding-left: 30px;
  padding-right: 30px;
}

/* =============================== */
/* 📝 TYPOGRAFIE                   */
/* =============================== */

main h1 {
  font-size: 2.5em;
  color: #4b0082;
  margin: 0 5px;
}

main h2 {
  font-size: 1.5em;
  color: #ffa500;
  margin: 0 5px;
}

main h3 {
  color: #20b2aa;
}

/* =============================== */
/* 🔗 LINKS                        */
/* =============================== */

a {
  color: #0077cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =============================== */
/* 🔘 KNOPPEN                      */
/* =============================== */
.cta-buttons {
  margin-top: 20px;
}

.btn {
  background-color: #6a5acd;
  color: white;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn.pink {
  background-color: #ff69b4;
}

.btn:hover {
  opacity: 0.9;
}

/* =============================== */
/* ✨ ANIMATIES                    */
/* =============================== */

@keyframes fadeOut {
  to { background-color: transparent; }
}

@keyframes bounce {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* =============================== */
/* 🌟 HIGHLIGHT EFFECT             */
/* =============================== */

.highlight {
  background-color: #fffa9e;
  animation: fadeOut 2s forwards;
}

/* =============================== */
/* 🎉 GLOBAL TOP BANNER              */
/* =============================== */

.banner-container {
  width: 100%;
  overflow: hidden;
  background-color: #6a4da6;
  color: #ffa500;
  font-weight: bold;
  font-size: 2em;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-top: 3px solid #ffa500;
  border-bottom: 3px solid #ffa500;
}

.banner-tekst {
  display: inline-block;
  white-space: nowrap;
  animation: scrollBanner 20s linear infinite;
  padding-left: 100%;
}

@keyframes scrollBanner {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ============================= */
/* 📱 RESPONSIVE BANNER          */
/* ============================= */
@media (max-width: 600px){
	.banner-container {
    font-size: 1.5em;
  }
}

