/* 1. Basis Kleuren en Instellingen */
:root {
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --accent-green: #00e676;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 2. Reset & Body */
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Voorkomt horizontaal scrollen */
}

/* 3. De Navigatiebalk (Blijft plakken bovenaan!) */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(15, 15, 15, 0.9); /* Licht transparant */
    backdrop-filter: blur(10px); /* Cool waas-effect erachter */
    box-sizing: border-box;
    z-index: 1000; /* Zorgt dat het menu altijd vooraan staat */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.nav-btn {
    border: 1px solid var(--accent-green);
    padding: 8px 20px;
    border-radius: 5px;
}

/* 4. De Header (Titelgedeelte) */
header {
    height: 100vh; /* Neemt exact 100% van je schermhoogte in */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #1a3a2a 0%, var(--bg-dark) 70%);
}

header h1 {
    font-size: 4.5rem;
    margin: 0;
    letter-spacing: 2px;
}

header p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

/* Download Knop */
button {
    background-color: var(--accent-green);
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.4);
}

/* 5. Features Sectie */
section {
    padding: 100px 10%;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 gelijke kolommen */
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-green);
}

.feature-card h3 {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-top: 0;
}

/* --- NIEUW: Subtitels --- */
.section-sub {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* --- NIEUW: Screenshots Gallery --- */
#gallery {
    background-color: var(--bg-card); /* Iets andere achtergrondkleur voor contrast */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    border-color: var(--accent-green);
    transform: scale(1.05); /* Plaatje komt iets naar voren */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt dat de verhouding van de plaatjes klopt */
    display: block;
}

/* --- NIEUW: Credits / Footer --- */
footer {
    background-color: #050505; /* Extra donker */
    padding: 60px 20px 20px 20px;
    text-align: center;
    border-top: 2px solid var(--accent-green); /* Groen lijntje boven de footer */
}

.footer-content h2 {
    color: var(--text-main);
    margin-bottom: 10px;
}

.credit-name {
    font-size: 1.2rem;
    color: var(--accent-green);
    margin: 20px 0;
}

.footer-tech {
    margin: 30px 0;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    margin: 0 5px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.8rem;
}


/* --- NIEUW: Scroll Animaties (Wordt bestuurd door script.js) --- */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NIEUW: Split Section (Changelog & Roadmap) --- */
.split-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 80px 10%;
    flex-wrap: wrap; /* Zorgt dat het netjes op mobiel past */
}

.info-box {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.info-box h2 {
    text-align: center;
    margin-top: 0;
}

/* Changelog Styling */
.version-tag {
    background: var(--accent-green);
    color: #000;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.log-entry ul {
    list-style: none;
    padding: 0;
}

.log-entry li { margin: 10px 0; font-size: 0.95rem; }
.log-entry .add span { color: var(--accent-green); font-weight: bold; margin-right: 10px; }
.log-entry .fix span { color: #ffab00; font-weight: bold; margin-right: 10px; }

/* Roadmap Styling */
.roadmap-list {
    list-style: none;
    padding: 0;
}

.roadmap-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--text-dim);
}

.roadmap-list li.current {
    color: var(--accent-green);
    font-weight: bold;
}

.roadmap-list li.current span {
    font-size: 0.8rem;
    background: rgba(0, 230, 118, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
}

/* --- NIEUW: FAQ Grid --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-green);
}

.faq-item h4 { margin-top: 0; color: var(--text-main); font-size: 1.2rem;}
.faq-item p { color: var(--text-dim); margin-bottom: 0; }

/* --- NIEUW: Community Knoppen --- */
.contact-btns button {
    margin: 10px;
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--text-main);
}
.contact-btns .btn-discord { background: #5865F2; border-color: #5865F2; }
.contact-btns .btn-discord:hover { box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4); }

/* --- NIEUW: Legal Links in Footer --- */
.legal-links {
    margin-top: 20px;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--text-dim);
    text-decoration: none;
    margin: 0 10px;
}

.legal-links a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

/* --- Legal Pages Styling --- */
.legal-page {
    display: block;
    padding-top: 100px;
    text-align: left;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-container h1 { color: var(--accent-green); }
.legal-container h3 { color: var(--accent-green); margin-top: 30px; }
.legal-container p { line-height: 1.8; color: var(--text-dim); }

.btn-sub {
    display: inline-block;
    margin-top: 40px;
    color: var(--accent-green);
    text-decoration: none;
    border: 1px solid var(--accent-green);
    padding: 10px 20px;
    border-radius: 5px;
}

/* --- Live Status Bar --- */
.live-status {
  background: #1a1a1a;
  color: #dddddd;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-bottom: 1px solid #333;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #4CAF50;
  border-radius: 50%;
  box-shadow: 0 0 10px #4CAF50;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* --- Waitlist Section --- */
.waitlist-section {
  background: #252526;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 600px;
  border: 1px solid #444;
}

.waitlist-section h2 {
  color: #fff;
  margin-bottom: 10px;
}

.waitlist-section p {
  color: #aaaaaa;
  margin-bottom: 20px;
}

#beta-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

#contact-info {
  padding: 10px 15px;
  border: 1px solid #555;
  border-radius: 4px;
  background: #1e1e1e;
  color: #fff;
  width: 60%;
}

.btn-primary {
  padding: 10px 20px;
  background: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.btn-primary:hover {
  background: #45a049;
}