/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
  color: #fff;
}

/* Banner achtergrond */
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
#background-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}



/* Navigatie */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.nav-menu {
  display: flex;
  list-style: none;
  background: rgba(0, 20, 50, 0.6);
  padding: 10px 20px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}
.nav-menu li { margin: 0 15px; }
.nav-menu a {
  text-decoration: none;
  color: #e0f0ff;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav-menu a:hover {
  color: #4da6ff;
  text-shadow: 0 0 8px #4da6ff;
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  right: 20px;
}

/* Slide menu */
.slidermenu {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 50, 0.95);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slidermenu.open { transform: translateX(0); }
.slidermenu ul { list-style: none; text-align: center; }
.slidermenu li { margin: 20px 0; }
.slidermenu a {
  font-size: 24px;
  color: #e0f0ff;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}
.slidermenu a:hover {
  color: #4da6ff;
  text-shadow: 0 0 8px #4da6ff;
}

/* Content buttons */
.content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
button {
  width: 180px;
  padding: 12px 0;
  margin: 15px 8px;
  border-radius: 25px;
  font-weight: bold;
  border: 2px solid #4da6ff;
  background: rgba(0, 0, 50, 0.3);
  color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
button span {
  background: #4da6ff;
  height: 100%;
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  transition: width 0.5s;
}
button:hover span { width: 100%; }
button:hover {
  border: none;
  background: #4da6ff;
  transform: scale(1.05);
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 30, 60, 0.9);
  padding: 15px 20px;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
  font-size: 14px;
}
.cookie-popup a { color: #4da6ff; }
.cookie-popup button {
  background: #4da6ff;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  margin: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.cookie-popup button:hover { background: #357acc; }

/* Responsive */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-btn { display: block; }

}


/* Page content */
.page-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  color: #fff;
  background: rgba(0, 20, 50, 0.6);
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  margin-top: 120px;
  margin-bottom: 120px;
}

/* Rule cards styled like Discord embeds */
.rule-card {
  background: rgba(0,0,0,0.6);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  color: #fff;
}
.rule-card h2 { margin-bottom: 10px; color: #4da6ff; }
.rule-card ul { margin-left: 20px; }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: #e0f0ff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #4da6ff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(77, 166, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(224, 240, 255, 0.6);
}

.contact-form label {
  color: #4da6ff;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-form button {
  background: linear-gradient(45deg, #4da6ff, #0066cc);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(77, 166, 255, 0.4);
}

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  margin-top: 15px;
  font-weight: bold;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  display: none;
}

.form-status:not([style*="display: none"]) {
  display: block;
}

/* Word count indicator */
.word-count {
  font-size: 12px;
  color: #4da6ff;
  margin-top: 5px;
  text-align: right;
}

.word-count.warning {
  color: #ffa500;
}

.word-count.success {
  color: #00ff00;
}

/* Page title */
.page-title {
  text-align: center;
  margin-bottom: 30px;
  color: #4da6ff;
}

.footer {
  background: rgba(0, 20, 50, 0.6);
  color: #fff;
  padding: 30px;
  margin-top: 50px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  height: 80px;
}

.footer-right {
  display: flex;
  gap: 50px; /* ruimte tussen Volg ons en Partners */
  flex: 2;
  justify-content: flex-end;
}

.footer-section h3 {
  margin-bottom: 10px;
  color: #4da6ff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: #e0f0ff;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #4da6ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #4da6ff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* Welkomst Embed met logo */
.welcome-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 20, 50, 0.6);
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 650px;
  width: 90%;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
  animation: fadeIn 1s ease-in-out;
}

.welcome-embed .logo {
  width: 300px;
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
  animation: pulseZoom 4s infinite ease-in-out;
}

.logo {
  width: 3;
  max-width: 90vw;
  height: auto;
  animation: pulseZoom 4s infinite ease-in-out;
  cursor: pointer;
}
@keyframes pulseZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}


.welcome-embed h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #4da6ff;
}

.welcome-embed p {
  margin-bottom: 15px;
  font-size: 16px;
}

.embed-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-embed {
    padding: 20px 15px;
  }
  .welcome-embed .logo {
    width: 120px;
    margin-bottom: 15px;
  }
  .welcome-embed h2 {
    font-size: 20px;
  }
  .welcome-embed p {
    font-size: 14px;
  }
  .embed-buttons {
    flex-direction: column;
  }
}

