* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f2f2f2;
    color: #636161;
}

/* HEADER */
header {
    background-color: #000000;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 50px;
}

/* MENU */
nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #ff9900;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
}

/* CONTENT */
section {
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 6px;
}

/* FOOTER */
footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px;
}

.galerij {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.galerij img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
form {
    max-width: 600px;
    margin: auto;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    min-height: 120px;
}

button {
    margin-top: 20px;
    background-color: #ff9900;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #e68a00;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.diensten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dienst {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dienst h3 {
    margin-top: 0;
    color: #ff9900;
}
/* MOBIEL */
@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        display: block;
        margin: 8px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        margin: 20px 10px;
        padding: 20px;
    }
}
header img {
  height: 60px;
  width: auto;
}
.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact-page h1 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-page .intro {
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.contact-box {
  background-color: #000000;
  border-left: 5px solid #c4161c;
  padding: 25px;
  margin-bottom: 40px;
}

.contact-box h2 {
  margin-top: 0;
}

.contact-box a {
  color: #c4161c;
  text-decoration: none;
  font-weight: bold;
}

.contact-box a:hover {
  text-decoration: underline;
}

.contact-cta {
  text-align: center;
  padding: 30px;
  background-color: #000000;
  border-top: 3px solid #c4161c;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav {
  margin-left: auto;
  text-align: left;
  display: flex;
  align-items: center;
}
/* ACTIEF MENU */

nav a {
  color: #fff;
  text-decoration: none;
}

nav a.active {
  color: #c4161c; /* Renov/K rood */
  font-weight: bold;
}
.galerij {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.galerij img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.galerij img:hover {
    transform: scale(1.03);
}
/* EXTRA RESPONSIVE FIXES */

img {
    max-width: 100%;
    display: block;
}

@media (max-width: 768px) {

    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    header nav {
        margin-left: 0;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }

    nav a {
        margin: 10px 0;
    }

    .hero {
        padding: 70px 20px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 16px;
    }

    section {
        margin: 20px 10px;
        padding: 20px;
    }

    .diensten {
        grid-template-columns: 1fr;
    }

    .galerij {
        grid-template-columns: 1fr;
    }

    .galerij img {
        height: 230px;
    }

    .contact-box,
    .contact-cta {
        padding: 20px;
    }

    button,
    .btn {
        width: 100%;
        text-align: center;
    }

    .whatsapp {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
