/* =========================
   ALGEMEEN / BODY
========================= */

body{
    margin: 0;
    background: linear-gradient(#444444, #303030);
    color: rgb(197, 197, 197);

    display: flex;
    flex-direction: column;
    min-height: 100vh;

    scrollbar-width: thin;

    word-wrap: break-word;
    overflow-wrap: break-word;
}

body::before{
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
    opacity: 0.5;
}

/* algemene link reset */
a{
    text-decoration: none;
    color: inherit;
}



/* =========================
   HEADER / MENUBAR
========================= */

#Menubar{
    background-color: rgb(37, 37, 37);
    padding: 1px;

    display: flex;
    align-items: center;

    margin: 10px;
    border-radius: 8px;
}

/* LOGO */
#Logo{
    width: 70px;
    margin: 5px 0 0 10px;
}

/* TITEL */
#title{
    margin-left: 10px;
    color: rgb(250, 100, 0);
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================
   NAVIGATIE
========================= */

#Navigation{
    margin-left: auto;
    margin-right: 30px;

    display: flex;
    gap: 10px;

    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;

    scrollbar-width: none;
}

/* knop styling */
.NavButton{
    flex-shrink: 0;

    background-color: transparent;
    color: rgb(250, 100, 0);

    border: none;

    padding: 10px;
    font-size: 20px;

    cursor: pointer;

    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}

/* hover effect */
.NavButton:hover{
    color: rgb(128, 62, 0);
    transition: 0.2s;
}

/* =========================
   MAIN CONTENT
========================= */

.center{
    flex: 1;

    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.left {
    margin-bottom: auto;
    margin-top: 40px;
}

/* artikel layout */
article{
    max-width: 800px;
    text-align: center;
}

.h1 {
    color: rgb(250, 100, 0);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
}

h3 {
    font-family: Arial, Helvetica, sans-serif;
}

.text {
    font-family: Arial, Helvetica, sans-serif;
}

.games{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.game-card{
    display: flex;
    gap: 20px;

    padding: 20px;
    border-radius: 8px;

    background-color: rgb(37, 37, 37);
}

.game-info{
    flex: 1;
}

.game-info h3{
    margin-top: 0;
    color: #fa6400;
}

@media (max-width: 768px){
    .game-card{
        flex-direction: column;
        align-items: center;
    }
}

.contactfield {
    min-width: 500px;
}

.socials {
    flex: 1;
    min-width: 200px;
    background-color: #222;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.socials ul{
    list-style: none;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.socials li {
    margin-bottom: 10px;
    transition: 0.2s;
}

.socials li:hover {
    text-decoration: underline;
    color: white;
    font-size: 110%;
}

.contact-info {
    flex: 1;
    min-width: 200px;
    background-color: #222;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.contact-items {
    flex: 1;
    min-width: 200px;
    background-color: #222;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 10px;
}

.contact-items ul {
    list-style: none;
    padding: 0;
    margin-bottom: 8px;
}

.message {
    flex: 1;
    min-width: 200px;
    background-color: #222;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 10px;
}

.message a{
    transition: 0.3s;
}

.message a:hover{
    font-size: 110%;
    color: white;
    text-decoration: underline;
}

@media (max-width: 500px){

    .socials,
    .contact-info,
    .contact-items,
    .message{
        padding-left: 15px;
        padding-right: 15px;
    }
    .contactfield{
        min-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

}

.about {
    display: flex;
    gap: 20px;
}

.about-half {
    flex: 1;
    margin-bottom: 100px;
    text-align: center;
}

.about-half h1 {
    text-align: center;
}

.about-half p {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }

    .about-half p {
        margin: 0 auto;
        max-width: 600px;
        padding-right: 25px;
        padding-left: 25px;
    }
}

.info-box {
    margin: 0 auto;
    border: black solid;
    padding-bottom: 15px;
    width: 300px;
    text-align: center;
}

.center-home{
    flex: 1;

    max-width: 1100px;
    margin: -40px auto;
    padding: 0 0px;
}

.stack {
    display: grid;
    text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* achtergrondlaag */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("TheTreeAndTheAxe.png");
  background-size: cover;
  background-position: center;
  opacity: 0.3; /* alleen achtergrond */
  z-index: 0;
}

/* logo erboven */
.logo {
  position: relative;
  z-index: 1;
  width: 250px;
}

.button {
    background-color: #fa6400;
    opacity: 0.8;
    padding: 10px;
    margin-top: 50px;
    width: 200px;
    height: 50px;
    border-radius: 15px;
    border: 1px black solid;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 550;
    letter-spacing: 1px;
    transition: 0.3s;
}

.button:hover {
    background-color: #c75000;
    opacity: 0.8;
    padding: 10px;
    margin-top: 50px;
    width: 210px;
    height: 60px;
    border-radius: 15px;
    border: 1px black solid;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 550;
    letter-spacing: 1px;
}

.info {
    width: 100%;
    height: 300px;
}

.img-index {
    width: 500px;
}

@media (max-width: 768px) {

  .hero {
    height: 350px;
    padding: 0px;
  }

  .logo {
    width: 160px;
  }

  .button {
    width: 160px;
    height: 45px;
    font-size: 14px;
    margin-top: 25px;
  }

  .button:hover {
    /* hover werkt slecht op mobiel → kleiner effect */
    width: 160px;
    height: 45px;
  }

  .center-home {
    margin: 0 auto;
    padding: 0 10px;
  }

  .img-index {
    width: 100%;
    max-width: 350px;
  }

  .info {
    height: auto;
    padding: 20px;
  }
}

/* =========================
   FOOTER
========================= */

.footer{
    background-color: #141414;
    color: white;

    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* container */
.footer-container{
    max-width: 1200px;
    margin: auto;
}

/* rij layout */
.footer-row{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* kolommen */
.footer-col{
    flex: 1;
    min-width: 200px;
}

/* logo */
.footer-logo{
    width: 80px;
    margin-bottom: 10px;
}

/* titels */
.footer-col h4{
    margin-bottom: 10px;
}

/* lijst */
.footer-col ul{
    list-style: none;
    padding: 0;
}

.footer-col ul li{
    margin-bottom: 8px;
}

/* links in footer */
.footer-col a{
    color: white;
}

.footer-col a:hover{
    text-decoration: underline;
}

/* onderkant footer */
.footer-bottom{
    text-align: center;
    margin-top: 30px;

    border-top: 1px solid #333;
    padding-top: 15px;

    font-size: 14px;
}