/* Reset en basis stijlen */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
  background-color: #0a1017;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header en navigatie */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #1a2635;
  background-color: rgba(10, 16, 23, 0.95);
  backdrop-filter: blur(8px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo-nav {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.blue-text {
  color: #38b2e0;
}

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  margin-left: 24px;
}

.main-nav li {
  margin-right: 16px;
  position: relative;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #38b2e0;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background-color: #111a24;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
  margin-top: 8px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 8px 16px;
  color: #ccc;
  font-size: 14px;
  text-transform: none;
}

.dropdown-content a:hover {
  background-color: #38b2e0;
  color: #fff;
}

.header-buttons {
  display: flex;
}

.icon-button {
  background: none;
  border: none;
  color: #fff;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s;
}

.icon-button:hover {
  background-color: #1a2635;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 100;
  display: block;
}

#mobile-menu-button {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 10px;
  cursor: pointer;
  background-color: rgba(10, 16, 23, 0.8);
  border-radius: 4px;
}

#mobile-menu-button span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: #111a24;
  z-index: 99;
  padding: 80px 20px 20px;
  transition: right 0.3s;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
}

.mobile-nav li {
  margin-bottom: 16px;
}

.mobile-nav a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-XjtcV41ScbTjnT1eFseAnBaZOSRHE3.png");
  background-size: cover;
  background-position: center;
  padding: 96px 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
}

.hero-button-container {
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  padding: 12px 24px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #38b2e0;
  color: #fff;
}

.btn-primary:hover {
  background-color: #2c9ec9;
}

.btn-white {
  background-color: #fff;
  color: #38b2e0;
}

.btn-white:hover {
  background-color: #f0f0f0;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #38b2e0;
  color: #38b2e0;
}

.btn-outline:hover {
  background-color: #38b2e0;
  color: #fff;
}

.btn-full {
  width: 100%;
  display: block;
}

.btn-large {
  padding: 16px 24px;
  font-size: 18px;
}

/* News Section */
.news-section {
  padding: 64px 0;
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.news-card {
  background-color: #111a24;
  border-radius: 8px;
  overflow: hidden;
  transition: background-color 0.3s;
}

.news-card:hover {
  background-color: #162130;
}

.news-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 16px;
}

.news-category {
  display: block;
  font-size: 14px;
  color: #999;
  margin-bottom: 8px;
}

.news-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.news-content p {
  color: #ccc;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-content a {
  color: #38b2e0;
}

.news-content a:hover {
  text-decoration: underline;
}

/* Features Section */
.features-section {
  background-color: #0d1620;
  padding: 64px 0;
  text-align: center;
}

.features-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  background-color: #111a24;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: #38b2e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: #999;
}

/* Discord Section */
.discord-section {
  background-color: #38b2e0;
  padding: 48px 0;
  text-align: center;
  color: #000;
}

.discord-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.discord-section p {
  font-size: 18px;
  margin-bottom: 24px;
}

/* Page Header */
.page-header {
  background-color: #0d1620;
  padding: 64px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 20px;
  color: #999;
  max-width: 600px;
  margin: 0 auto;
}

/* Page Content */
.page-content-container {
  padding: 64px 0;
}

.content-box {
  background-color: #111a24;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 32px;
}

.content-box:last-child {
  margin-bottom: 0;
}

.content-box h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.content-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.content-box p {
  color: #ccc;
  margin-bottom: 16px;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.text-center {
  text-align: center;
}

/* Rules Styling */
.rules-list {
  margin-bottom: 32px;
}

.rules-list p {
  margin-bottom: 8px;
}

.rule-section {
  margin-bottom: 32px;
}

.rule-section:last-child {
  margin-bottom: 0;
}

.rule-subtitle {
  font-weight: 600;
  margin-bottom: 8px;
}

.rule-penalty {
  font-weight: 600;
  margin-top: 16px;
  color: #38b2e0;
}

.alert-box {
  background-color: #0a1017;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 32px;
}

.alert-title {
  color: #f0b400;
  font-weight: 600;
  margin-bottom: 8px;
}

.code-box {
  background-color: #0a1017;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 24px;
}

.code-title {
  color: #f0b400;
  font-weight: 600;
  margin-bottom: 8px;
}

code {
  display: block;
  background-color: #070d13;
  padding: 12px;
  border-radius: 4px;
  color: #ccc;
  font-family: monospace;
  user-select: all;
}

.inline-code {
  background-color: #0a1017;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}

.numbered-list {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 24px;
}

.numbered-list li {
  margin-bottom: 8px;
  color: #ccc;
}

.numbered-list a {
  color: #38b2e0;
}

.numbered-list a:hover {
  text-decoration: underline;
}

/* Jobs Grid */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.job-card {
  background-color: #111a24;
  border: 1px solid #1a2635;
  border-radius: 8px;
  overflow: hidden;
}

.job-header {
  padding: 16px;
  border-bottom: 1px solid #1a2635;
}

.job-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.job-header p {
  color: #999;
  font-size: 14px;
}

.job-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.job-image img {
  max-height: 100%;
  max-width: 100%;
}

.job-features {
  padding: 16px;
  list-style-type: none;
}

.job-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #fff;
}

.job-features li:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2338b2e0'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.job-footer {
  padding: 16px;
  border-top: 1px solid #1a2635;
}

/* Application Form */
.application-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-section {
  margin-bottom: 32px;
}

.form-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  background-color: #0a1017;
  border: 1px solid #333;
  border-radius: 4px;
  color: #fff;
  font-family: inherit;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
}

.checkbox-item input[type="checkbox"] {
  margin-right: 8px;
}

/* Thank You Page */
.thank-you-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 64px 0;
  text-align: center;
}

.check-icon {
  width: 96px;
  height: 96px;
  background-color: #38b2e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.check-icon svg {
  width: 48px;
  height: 48px;
}

.thank-you-container h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.thank-you-container p {
  font-size: 18px;
  color: #999;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Roleplay Basics */
.rp-concept {
  margin-bottom: 24px;
}

.commands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.command-card {
  background-color: #0a1017;
  padding: 16px;
  border-radius: 4px;
}

.command-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.command-example {
  background-color: #070d13;
  padding: 12px;
  border-radius: 4px;
  margin-top: 12px;
}

.example-label {
  font-size: 14px;
  color: #999;
  margin-bottom: 4px;
}

.example-text {
  color: #38b2e0;
}

.tips-list {
  list-style-type: none;
}

.tips-list li {
  display: flex;
  margin-bottom: 16px;
}

.tip-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  margin-top: 4px;
  color: #38b2e0;
}

.tip-content {
  flex-grow: 1;
}

.tip-title {
  font-weight: 600;
  margin-bottom: 4px;
}

/* Footer */
.footer {
  background-color: #070d13;
  padding: 32px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.footer-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-info p {
  color: #999;
}

.footer-bottom {
  border-top: 1px solid #1a2635;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #999;
  margin-bottom: 4px;
}

.small-text {
  font-size: 14px;
  color: #999;
}

/* Page System */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .mobile-nav-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 64px;
  }

  .news-grid,
  .features-grid,
  .jobs-grid,
  .commands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .checkbox-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .button-container {
    text-align: links;
  }
}

@media (max-width: 767px) {
  .button-group {
    flex-direction: column;
  }
}

