

/* Kleurenpalet */
:root {
   --retro-orange: #0000FF;
   --retro-brown: #0000FF;
   --retro-cream: #C0C0C0;
   --retro-yellow: #F1C40F;
   --retro-shadow: rgba(0,0,0,0.15);
   --radius: 14px;
   --font-title: "Cooper Black", "Georgia", serif;
   --font-body: "Poppins", sans-serif;
   
   
 
}



   
   

   
   
   
   
}

/* Breedte van de hele site */
.wrapper {
   max-width: 500px;
   margin: 0 auto;
   padding:0 140px;
   
}

   
}

/* Algemene stijl */
body {
   margin: 0;
   padding: 0;
   background: var(--retro-cream);
   font-family: var(--font-body);
   color: var(--retro-brown);
}

/* Retro sectie */
.contact.retro {
   max-width: 900px;
   margin: 40px auto;
   padding: 40px;
   background: linear-gradient(135deg, var(--retro-cream), #fff8e6);
   border-radius: var(--radius);
   box-shadow: 0 6px 20px var(--retro-shadow);
}

/* Titels */
.contact.retro h1 {
   font-family: var(--font-title);
   font-size: 48px;
   color: var(--retro-orange);
   text-align: center;
   margin-bottom: 10px;
}

.contact.retro h2 {
   font-family: var(--font-title);
   color: var(--retro-brown);
   margin-top: 30px;
}

/* Intro tekst */
.intro {
   text-align: center;
   font-size: 18px;
   margin-bottom: 30px;
}

/* Contact info */
.contact-info p {
   margin: 6px 0;
}

/* Formulier */
.contact-form {
   margin-top: 30px;
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.contact-form label {
   font-weight: bold;
   color: var(--retro-brown);
}

.contact-form input,
.contact-form textarea {
   padding: 14px;
   border-radius: var(--radius);
   border: 2px solid var(--retro-orange);
   background: #fffdf7;
   font-size: 16px;
   color: var(--retro-brown);
   outline: none;
   transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
   border-color: var(--retro-yellow);
   box-shadow: 0 0 8px var(--retro-shadow);
}

.contact-form textarea {
   min-height: 140px;
}

/* Knop */
.contact-form button {
   background: var(--retro-orange);
   color: #fff;
   padding: 14px 22px;
   border: none;
   border-radius: var(--radius);
   font-size: 18px;
   cursor: pointer;
   font-family: var(--font-title);
   transition: 0.3s;
   box-shadow: 0 4px 12px var(--retro-shadow);
}

.contact-form button:hover {
   background: var(--retro-brown);
   transform: translateY(-3px);

}
.wrapper {
    background:lightgrey;
    }