@font-face {
    font-family: 'Gringed';
    src: url('../fonts/gringed_2_0.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: #F1E9DA;
    color: #1D2C59;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3,
p {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Gringed', sans-serif;
}

/* --- HEADER & NAVIGATIE BLOKJE --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #F6E2CE;
}

.main-header ul {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.main-header a {
    text-decoration: none;
    color: #1D2C59;
    font-weight: bold;
}


.btn-bestel {
    background-color: #1D2C59; 
    color: white !important;   
    padding: 12px 25px;        
    border-radius: 15px;       
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease; 
    display: inline-block;
}


.btn-bestel:hover {
    background-color: #8DA6C1; 
    color: white !important;
    cursor: pointer;
}

.btn-submit {
    transition: background-color 0.3s ease; 
}

.btn-submit:hover {
    background-color: #8DA6C1; 
    cursor: pointer;
}
.hero {
    display: flex;
    align-items: center;
    padding: 60px 10%;
    text-align: left;

    background-image: url('../images/golven.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-text p {
    text-align: left;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 80%;
    max-width: 500px;
}

.product-focus {
    padding: 80px 10%;
}

.product-focus img {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
   
}

.usp {
    background-color: #D1E4F3;
    padding: 100px 5%;
}

.usps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    list-style: none;
    margin-top: 60px;
}

.usps li {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usps img {
    background-color: #F1E9DA;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    padding: 35px;
    margin-bottom: 20px;
    display: block;
}

.usps li:nth-child(even) {
    margin-top: 60px;
}

.extra-plezier {
    padding: 100px 10%;
}

.spel-visual img {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
}

.productie {
    padding: 100px 10%;
}

.productie h2 {
    margin-bottom: 50px;
}

.productie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.productie-beeld img {
    width: 100%;
    max-width: 500px;
    border-radius: 40px;
}

.productie-tekst-kader {
    flex: 1;
    max-width: 450px;
    border: 3px solid #1D2C59;
    padding: 40px;
    border-radius: 40px;
    text-align: left;
}

.productie-tekst-kader p {
    text-align: left;
}

.shop {
    padding: 100px 5%;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin-top: 50px;
    flex-wrap: wrap;
}

.product-card {
    padding: 40px 20px;
    width: 280px;
    text-align: center;
}

.product-card:nth-child(1),
.product-card:nth-child(3) {
    background-color: #F8D7BE;
}

.product-card:nth-child(2) {
    background-color: #8DA6C1;
}

.product-card img {
    width: 100%;
    margin-bottom: 20px;
}

.contact {
    padding: 100px 5%;
}

.contact-form {
    max-width: 550px;
    margin: 40px auto 0;
    padding: 50px;
    border: 4px solid #1D2C59;
    border-radius: 50px;
}

.contact-form label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 15px;
    border: 1px solid #ccc;
}

.btn-submit {
    width: 100%;
    background-color: #1D2C59;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
}

.main-footer {
    background-image: url('../images/Footer.svg');
    background-size: cover;
    background-position: top;
    padding: 180px 10% 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-contact ul {
    list-style: none;
    text-align: left;
}

.footer-contact a {
    text-decoration: none;
    color: #1D2C59;
    font-weight: bold;
}

.footer-logo img {
    width: 120px;
}

.footer-address {
    font-style: normal;
    text-align: right;
    font-size: 0.9rem;
    font-weight: bold;
}

.footer-bottom {
    margin-top: 100px;
    font-size: 0.75rem;
    opacity: 0.8;
}

