/* Basis reset en layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #2e223a, #1b2d1b);
    color: #f0f0f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Start Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(#3c643c, #503b64);
}

::-webkit-scrollbar-thumb {
  background: #1d1d1d;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(#2e223a, #1b2d1b);
}
/* End Custom Scrollbar */

.scroll-to-block {
  scroll-margin-block: 20px;
}

#topBtn {
  display: block;
  position: fixed;
  width: 55px;
  bottom: 80px;
  right: 25px;
  font-size: 39px;
  border: 2px;
  border-style: solid;
  border-color: rgba(59, 156, 72, 0.39) transparent;
  outline: none;
  background: linear-gradient(135deg, #48355c, #2b4e2b);
  color: #695a02;
  text-shadow: 2px 2px 5px #408640;
  cursor: pointer;
  padding: 7px;
  border-radius: 5px;
}

#topBtn:hover {
  background: linear-gradient(135deg, #664b83, #478147);
  text-shadow: 2px 2px 5px #232323;
  color: #ddbc00;
  text-shadow: 2px 2px 5px #2b6b2b;
  border: 2px;
  border-style: solid;
  border-color: rgba(92, 228, 110, 0.39) transparent;
}

/* Navbar */
.navbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #141414;
  padding: 15px 30px;
  position: fixed;
  overflow: hidden;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffd700;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.navbar .nav-links li a:hover {
  color: #ffd700;
}

.hamburger {
  font-size: 28px;
  color: #fff;
  display: none;
  cursor: pointer;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Georgia', serif;
}

.logo a {
    text-decoration: none;
    color: #00a329;;
}

.logo a span {
    color: #A600BF;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a4ffa4;
}

/* Secties */
.section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 2rem;
    color: #a4ffa4;
    margin-bottom: 20px;
}

/* Home */
.home {
    text-align: center;
    padding-top: 100px;
}

.hero-logo {
    font-size: 3.5rem;
    font-weight: bold;
    color: #00a329;
    margin-top: -50px;
    margin-bottom: 25px;
    text-shadow: 2px 2px #000;
    font-family: 'Georgia', serif;
}

.hero-logo img {
    height: 400px;
}

.hero-logo p {
    margin-top: -60px;
}

.hero-logo p span {
    color: #A600BF;
}

/* Server Info */
.server-info-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.info-block {
    flex: 1 1 250px;
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    font-size: 1.1rem;
}

.info-block h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.version-block {
    flex: 1 1 250px;
    background-color: rgba(255,255,255,0.05);
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
    font-size: 1.0rem;
    height: auto;
}

.version-block span {
    color: #ffd700;
    font-weight: bold;
}

.server-toegang-block {
    flex: 1 1 250px;
    background-color: rgba(255,255,255,0.05);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-align: center;
    font-size: 1.1rem;
    height: auto;
}

.server-toegang-block h3 {
    color: #ff5e00;
    margin-bottom: 10px;
}

/* Regels */
.regels-list p {
    margin: 8px 0;
    font-size: 1.05rem;
    padding-left: 10px;
    position: relative;
}
.regels-list span {
    color: #fffae5;
    font-weight: bold;
}

.regels-list p::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #00ffcc;
    font-weight: bold;
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    max-width: 200px;
    border-radius: 10px;
    flex: 1 1 200px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.team-member h3 {
    color: #ffd700;
    margin-bottom: 5px;
}

/* Contact + Discord */
.discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #5865F2;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background-color: #4752c4;
}

.discord-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(1);
}

/* Onderbalk boven footer */
.bottom-bar {
    background-color: rgba(0,0,0,0.4);
    color: #ccc;
    padding: 20px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1000px;
    margin: 40px auto 0;
}

@media(min-width: 768px) {
    .bottom-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.bottom-bar a {
    color: #a4ffa4;
    text-decoration: none;
    margin: 0 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: #ccc;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1b1b1b;
    position: absolute;
    top: 65px;
    right: 0;
    width: 200px;
    padding: 15px 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 12px;
  }
}