/* Algemene body instellingen */
@font-face {
    font-family: 'lettertype';
    src: url(../fonts/VT323-Regular.ttf);
}

body {
    background-image: url(../images/background.png);

    height: 100vh;

    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px;
    font-family: lettertype;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #201E1E;
    opacity: 0.9;
    height: 13%;
    padding: 20px 40px;
}

.logofoto {
    width: 130px;
}

.logonaam {
    font-family: 'lettertype';
    color: white;
    margin-left: 12%;
    font-size: 25px;
    margin-top: 0;
}

.logofoto {
    width: 130px;
}

.logonaam {
    font-family: lettertype;
    color: white;
    margin-left: 12%;
    font-size: 25px;
    margin-top: 0px;
}



/* Styling voor tekst in de knoppen */
.imgbuttons .text-in-button1,
.imgbuttons .text-in-button2,
.imgbuttons .text-in-button3,
.imgbuttons .text-in-button4,
.imgbuttons .text-in-button5 {
    font-size: 15px;
    /*lettergrootte */
}

/* Hamburger menu stijlen */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: white;
}

#nav-links {
    display: flex;
    flex-direction: row;
}

.imgbuttons {
    position: relative;
}


/* Styling voor het hamburger-menu */
.buttons {
    display: none;
    flex-direction: column;
    align-items: center;
}

.buttons.open {
    display: flex;
    /* Toon het menu als open */
}

.buttons img.button {
    margin: 10px 0;
}

.button {
    width: 8vw;
    margin-top: 10px;
    margin-left: 20px;
}

.text-in-button {
    position: absolute;
    top: 37%;
    left: 35%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 15px;
    color: white;
}

.text-in-button1 {
    position: absolute;
    top: 39%;
    left: 43%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 100px;
    color: white;
}

.text-in-button2 {
    position: absolute;
    top: 39%;
    left: 32%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 18px;
    color: white;
}

.text-in-button3 {
    position: absolute;
    top: 39%;
    left: 43%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 20px;
    color: white;
}

.text-in-button4 {
    position: absolute;
    top: 39%;
    left: 35%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 18px;
    color: white;
}

.text-in-button5 {
    position: absolute;
    top: 39%;
    left: 39%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 20px;
    color: white;
}

.text-in-button-aboutgame {
    position: absolute;
    top: 37%;
    left: 35%;
    cursor: pointer;
    font-family: lettertype;
    font-size: 0px;
    color: white;
}


.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.content-block {
    background-color: #B82A2A;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-block h2 {
    font-size: 24px;
    color: #fffdfd;
    margin-bottom: 15px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #f3f0f0;
}




/* Content Blokken */
.content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.content-block {
    background-color: #B82A2A;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-block h2 {
    font-size: 24px;
    color: #fffdfd;
    margin-bottom: 15px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #f3f0f0;
}

/* Styling voor de creatieve afbeeldingen */
.images {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}


.image-block {
    width: 190px;
    height: 190px;
    border: 8px solid #5c4f45;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}


.image-block:hover {
    transform: scale(1.1) rotate(3deg);
    transition: transform 0.4s ease-in-out;
}


.image-block::before {
    content: "Craft It!";
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


.image-block:hover::after {
    content: "\f0c0";
    font-family: 'FontAwesome';
    font-size: 30px;
    color: #f39c12;
    position: absolute;
    bottom: 20px;
    right: 20px;
}


/* Waarom Energie ROC sectie */
.why-energy {
    background: linear-gradient(135deg, #eb130b, #38b5e2);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.why-energy:hover {
    transform: translateY(-50px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.10);
}

.why-energy h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.why-energy p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.icons {
    font-size: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon {
    color: #fff;
}