/* BASIS & TYPOGRAFIE */
* {margin:0;padding:0;box-sizing:border-box;}
body {background:#0e0e0f;color:#e6e6e6;font-family:"Inter", sans-serif;display:flex;flex-direction:column;min-height:100vh;}
h1,h2,h3,h4{font-family:"Sora", sans-serif;}

/* HEADER */
header{background:#161617;color:#fff;padding:1rem 6%;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #1f1f1f;}
header h1{font-size:1.5rem;font-weight:700;}
nav a{color:#b9b9b9;margin-left:1.5rem;text-decoration:none;font-size:0.95rem;transition:color 0.2s;}
nav a:hover{color:#00f18c;}

/* HERO */
.hero{text-align:center;padding:6rem 1rem;background:linear-gradient(180deg,#111,#0b0b0b);}
.hero h2{font-size:2.8rem;color:#00f18c;margin-bottom:1rem;}
.hero p{color:#c5c5c5;font-size:1.1rem;max-width:650px;margin:0 auto;}
.btn-download{display:inline-block;margin-top:2rem;padding:1rem 2.4rem;background:#00f18c;color:#0f0f10;font-weight:600;border-radius:6px;text-decoration:none;transition:all 0.25s;}
.btn-download:hover{background:#00d77e;box-shadow:0 0 20px rgba(0,241,140,0.3);}

/* CURVES */
.hero-curves svg,
.mods-curves svg{display:block;width:100%;height:100px;}

/* FEATURES */
.features{background:#141415;padding:4rem 2rem;}
.features h3{text-align:center;font-size:2rem;color:#fff;margin-bottom:2.5rem;}
.feature-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:2rem;max-width:1000px;margin:0 auto;}
.feature{background:#1a1a1b;padding:2rem;border-radius:8px;border:1px solid #222;text-align:center;transition:transform 0.2s,border 0.2s;}
.feature:hover{transform:translateY(-4px);border-color:#00f18c;}
.feature h4{color:#00f18c;margin-bottom:0.5rem;}
.feature p{color:#c2c2c2;}

/* MODS */
.mods{padding:4rem 2rem;max-width:1200px;margin:0 auto;}
.mods h3{text-align:center;font-size:2rem;margin-bottom:2rem;color:#fff;}
.mod-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;}
.mod-card{background:#1b1b1c;border:1px solid #222;border-radius:8px;overflow:hidden;transition:transform 0.25s,box-shadow 0.25s;}
.mod-card:hover{transform:translateY(-6px);box-shadow:0 10px 20px rgba(0,241,140,0.1);}
.mod-card img{width:100%;height:180px;object-fit:cover;}
.mod-card .content{padding:1.5rem;}
.mod-card h4{color:#00f18c;font-size:1.2rem;}
.mod-card p{color:#c5c5c5;margin-top:0.5rem;}

/* TIMELINE */
.timeline{background:#141415;padding:4rem 2rem;}
.timeline h3{text-align:center;font-size:2rem;margin-bottom:3rem;}
.timeline-line{position:relative;max-width:800px;margin:0 auto;padding-left:30px;border-left:3px solid #00f18c;}
.timeline-item{position:relative;margin-bottom:2rem;padding-left:1rem;}
.timeline-item::before{content:"";position:absolute;left:-11px;top:6px;width:14px;height:14px;background:#00f18c;border-radius:50%;}
.timeline-item h4{color:#00f18c;}
.timeline-item p{color:#bfbfbf;margin-top:0.3rem;}

/* SOCIAL BUTTONS */
.social-buttons{display:flex;justify-content:center;gap:1rem;padding:2rem 0;background:#0f0f10;}
.btn{padding:0.8rem 1.6rem;border-radius:6px;color:#fff;text-decoration:none;font-weight:600;transition:all 0.25s;}
.btn.github{background:#24292e;}
.btn.github:hover{background:#444950;}
.btn.modrinth{background:#00f18c;color:#0f0f10;}
.btn.modrinth:hover{background:#00d77e;}
.btn.discord{background:#7289da;}
.btn.discord:hover{background:#5b6eae;}

/* FOOTER */
footer{background:#0d0d0e;padding:3rem 2rem 1.5rem;border-top:1px solid #1a1a1a;color:#b5b5b5;}
.footer-container{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:3rem;max-width:1200px;margin:0 auto 2rem;align-items:start;}
.footer-logo img{width:110px;margin-bottom:1rem;}
.footer-logo p{font-size:0.95rem;line-height:1.5;color:#ccc;}
.footer-links h4,.footer-info h4{color:#00f18c;margin-bottom:0.8rem;font-size:1.1rem;font-weight:600;}
.footer-links ul{list-style:none;padding:0;}
.footer-links li{margin-bottom:0.5rem;}
.footer-links a{color:#b5b5b5;text-decoration:none;transition:color 0.2s;}
.footer-links a:hover{color:#00f18c;}
.footer-info p{margin:0.4rem 0;font-size:0.95rem;}
.footer-info a{color:#00f18c;text-decoration:none;}
.footer-info a:hover{text-decoration:underline;}
.footer-bottom{text-align:center;border-top:1px solid #1a1a1a;padding-top:1.5rem;font-size:0.9rem;color:#888;}
@media(max-width:800px){.footer-container{text-align:center;}.footer-logo img{margin:0 auto 1rem;}}

/* ANIMATIES */
.fade-in,.slide-up{opacity:0;transform:translateY(20px);transition:opacity 0.6s ease-out,transform 0.6s ease-out;}
.fade-in.visible,.slide-up.visible{opacity:1;transform:translateY(0);}

/* ======= BASIS ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }
  
  body {
    background: #0f0f10;
    color: #e6e6e6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* ======= HEADER ======= */
  header {
    background: #161617;
    color: #fff;
    padding: 1rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f1f1f;
  }
  
  header h1 {
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  nav a {
    color: #b9b9b9;
    margin-left: 1.5rem;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  
  nav a:hover {
    color: #00f18c;
  }
  
  /* ======= HERO ======= */
  .hero {
    text-align: center;
    padding: 6rem 1rem;
    background: linear-gradient(180deg, #101112, #0d0d0d);
  }
  
  .hero h2 {
    font-size: 2.6rem;
    color: #00f18c;
    margin-bottom: 1rem;
  }
  
  .hero p {
    color: #c5c5c5;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .btn-download {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #00f18c;
    color: #0f0f10;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
  }
  
  .btn-download:hover {
    background: #00d97b;
  }
  
  /* ======= FEATURES ======= */
  .features {
    background: #141415;
    padding: 4rem 2rem;
  }
  
  .features h3 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2.5rem;
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .feature {
    background: #1a1a1b;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    text-align: center;
    transition: transform 0.2s, border 0.2s;
  }
  
  .feature:hover {
    transform: translateY(-4px);
    border-color: #00f18c;
  }
  
  .feature h4 {
    color: #00f18c;
    margin-bottom: 0.5rem;
  }
  
  .feature p {
    color: #c2c2c2;
    font-size: 0.95rem;
  }
  
  /* ======= MODS ======= */
  .mods {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .mods h3 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
  }
  
  .mod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .mod-card {
    background: #1b1b1c;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .mod-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 241, 140, 0.08);
  }
  
  .mod-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .mod-card .content {
    padding: 1.5rem;
  }
  
  .mod-card h4 {
    color: #00f18c;
    font-size: 1.2rem;
  }
  
  .mod-card p {
    color: #c5c5c5;
    font-size: 0.95rem;
    margin-top: 0.4rem;
  }
  
  /* ======= TIMELINE ======= */
  .timeline {
    background: #141415;
    padding: 4rem 2rem;
  }
  
  .timeline h3 {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 3rem;
  }
  
  .timeline-line {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
    border-left: 3px solid #00f18c;
  }
  
  .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1rem;
  }
  
  .timeline-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #00f18c;
    border-radius: 50%;
  }
  
  .timeline-item h4 {
    color: #00f18c;
  }
  
  .timeline-item p {
    color: #bfbfbf;
    margin-top: 0.3rem;
  }
  
  /* ======= FOOTER ======= */
  footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #101010;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #191919;
  }
  
  footer a {
    color: #00f18c;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* ======= ANIMATIES ======= */
  .fade-in, .slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in.visible, .slide-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* PORTFOLIO PAGE */
.portfolio-hero {
  background: linear-gradient(180deg, #111, #0b0b0b);
  text-align: center;
  padding: 6rem 1rem 8rem;
}

.search-section {
  background: #141415;
  padding: 2.5rem 1rem;
  text-align: center;
}

.search-section input {
  width: 70%;
  max-width: 600px;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 6px;
  background: #1b1b1c;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 2px transparent;
}
.search-section input:focus {
  box-shadow: 0 0 0 2px #00f18c;
}

.tags {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.tag {
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  border: 1px solid #222;
  background: #1a1a1b;
  color: #ccc;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.95rem;
}
.tag:hover {
  border-color: #00f18c;
  color: #00f18c;
}
.tag.active {
  background: #00f18c;
  color: #0f0f10;
  border-color: #00f18c;
}

.portfolio-grid {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.project-card {
  background: #1b1b1c;
  border-radius: 8px;
  border: 1px solid #222;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 241, 140, 0.1);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-card .content {
  padding: 1.5rem;
}
.project-card h3 {
  color: #00f18c;
  margin-bottom: 0.5rem;
}
.project-card p {
  color: #c5c5c5;
  font-size: 0.95rem;
}