/* =====================================
   A-SUR KLEURENPALET
   =====================================

   Donker blauw:    #124c69
   Groen-blauw:     #21bea5
   Accent blauw:    #1eacb3   <-- hoofdkleur
   Licht groen:     #27d49e
   Donker teal:     #177c7d

   Wit:             #ffffff
   Licht grijs:     #d6d5d5
   Grijs:           #99a7af
   Donker grijs:    #7E7D7B

   ===================================== */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}




/* HEADER */
.header {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #1eacb3;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 1px;
    text-decoration: none;
}

.logo {
    height: 40px;
    margin-right: 1px;
}

.logo-text {
    font-family: 'Belleza', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #7E7D7B;
    letter-spacing: 2px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




/* NAV */
nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #7E7D7B;
    font-weight: normal;
    transition: 0.3s;
}

nav a:hover {
    color: #4a4a49;
}






/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: #f5f7f9;
}


.hero h1 {
    font-size: 34px;
}


.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #1abc9c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}







/* SERVICES */
.services {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden;
}

.services h2 {
    letter-spacing: 1px;
}

.services-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.service-box {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}

.services::after {
    content: "";
    position: absolute;
    left: 0px;   /* tegenovergestelde kant van regio → balans */
    top: 50%;
    transform: translateY(-50%);

    width: 800px;
    height: 800px;

    background: url('images/task-icon.png') no-repeat center;
    background-size: contain;

    opacity: 0.14;  /* subtieler */
}

.testimonial {
    background: #f5f5f5;
    margin: 20px;
    padding: 15px;
}


.contact-cta {
    text-align: center;
    padding: 40px 20px;
    background: #1eacb3;
    color: white;
}

.contact-cta h2 {
    margin-bottom: 10px;
}

.contact-cta .btn {
    background: white;
    color: #1eacb3;
    margin-top: 10px;
}

.region-content {
    margin-top: 60px;
    text-align: center;
}




/* CONTACT FORM */

.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background: #f5f7f9; 
}

.contact-hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-hero p {
    color: #7E7D7B;
}


.contact-form {
    border-top: 1px solid #d6d5d5;  
    border-bottom: 1px solid #d6d5d5;
    padding-top: 40px;
    margin-top: 40px;
}


form {
    max-width: 500px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

form input,
form textarea {
    padding: 12px;
    border: 1px solid #d6d5d5;
    border-radius: 5px;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

form textarea {
    min-height: 120px;
    resize: vertical;
}

form button {
    background: #1eacb3;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #177c7d;
}


form input::placeholder,
form textarea::placeholder {
    color: #99a7af;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #1eacb3;
}

.form-disclaimer {
    font-size: 12px;
    color: #99a7af;
    max-width: 500px;
    margin: 10px auto;
}






/* CONTACT PERSON */
.contact-person {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;

    max-width: 900px;
    margin: 60px auto;
}

.contact-left {
    text-align: center;
    max-width: 350px;
}

.contact-left h2 {
    margin-bottom: 10px;
}

.contact-left p {
    color: #7E7D7B;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.contact-info li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #4a4a49;
}

.contact-photo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-person h2 {
    font-family: 'Belleza', sans-serif;
    margin-bottom: 5px;
}

.contact-person p {
    color: #7E7D7B;
    margin-bottom: 20px;
}






/* FOOTER */
.footer {
    background: #333;
    color: white;
    padding: 20px 0px 10px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer h3 {
    font-family: 'Belleza', sans-serif;
    margin-bottom: 10px;
    color: #1eacb3;
}


.footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin: 2px 0;  
}


.footer a:hover {
    color: #1eacb3;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #555;
    padding-top: 15px;
    font-size: 14px;
}
