/* =========================
   GLOBALE VARIABELEN
========================= */
:root {
    --border-width: 6px;
    --border-style: groove;
    --border-radius: 30px;
    --border-color: rgb(124, 151, 45);
    /* De groene kleur uit je eerste bestand */
}

/* =========================
   FONT
========================= */
@font-face {
    font-family: fwont;
    src: url("../fonts/Sprintura Demo.otf");
}

/* =========================
   BODY & BASIS
========================= */
body {
    font-family: fwont;
    background: url("../img/Ubuntu-Mate-Cold-no-logo.PNG") no-repeat fixed center/cover;
    background-size: cover;
    background-attachment: fixed;
    margin: 0px;
    color: white;
}

a:hover {
    color: rgb(4, 70, 4);
}

/* =========================
   NAV
========================= */
nav {
    font-family: fwont;
    backdrop-filter: blur(5px);
    width: 100%;
    padding: 10px 0px;
    color: rgb(0, 0, 0);
    border: 2px solid black;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
}

nav a {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 5px 10px;
    max-width: 900px;

    border: var(--border-width) var(--border-style);
    border-color: var(--border-color);
    border-radius: var(--border-radius);
}

h1 {
    text-align: center;
}

/* =========================
   CONTACT FORMULIER SECTIE
========================= */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    margin-left: 30%;
    padding: 30px;
    background: rgba(0, 0, 0, 0.4);
    /* Licht transparant voor leesbaarheid */
    border: var(--border-width) var(--border-style);
    border-color: var(--border-color);
    border-radius: var(--border-radius);
}

form .form-input {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;
}

form label {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

form input,
form textarea {
    padding: 10px;
    font-family: Arial, sans-serif;
    /* Voor betere leesbaarheid tijdens typen */
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
}

form button {
    font-family: fwont;
    padding: 10px 20px;
    font-size: 20px;
    cursor: pointer;
    background-color: var(--border-color);
    color: white;
    border: var(--border-width) var(--border-style) white;
    border-radius: var(--border-radius);
    transition: 0.3s;
}

form button:hover {
    background-color: white;
    color: var(--border-color);
    border-color: var(--border-color);
}

/* =========================
           REVIEWS / BEOORDELINGEN
        ========================= */

.review-title {
    text-align: left;
    padding-left: 23%;
}

.reviews-section {

    max-width: 450px;
    margin: 10px auto;
}

.reviews {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    gap: 3%;
    margin: 0 auto;
    padding: 30px;
    border: var(--border-width) var(--border-style);
    border-color: var(--border-color);
    border-radius: var(--border-radius);
}

.review {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 250px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
}

.klantenbeoordeling {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 25%;
    margin-top: 2%;
    margin-bottom: 4%;
    width: 50%;
    border: var(--border-width) var(--border-style);
    border-color: var(--border-color);
    border-radius: var(--border-radius);
}

.klantenbeoordeling img {
    width: 120px;
    height: auto;
    margin-left: 10%;
}

/* =========================
   FOOTER
========================= */
footer {
    max-width: 900px;
    width: 100%;
    margin: auto;
}

footer ul {
    font-family: Arial, Helvetica, sans-serif;
    border: 1px solid;
    padding: 5px;
    color: white;
}

footer a {
    border: none;
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: rgb(43, 0, 255);
    text-decoration: underline;
}

.terug-knop {
    display: inline-block;
    padding: 12px 25px;
    background-color: black;
    color: white;
    text-decoration: none;
    border: var(--border-width) var(--border-style);
    border-color: var(--border-color);
    border-radius: var(--border-radius);
    transition: 0.3s;
}

.terug-knop:hover {
    background-color: white;
    color: var(--border-color);
}