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

html {
scroll-behavior: smooth;
}

body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #111;
color: white;
line-height: 1.6;
}

/* CONTAINER */
.container {
width: 90%;
max-width: 1300px;
margin: auto;
}

/* NAVBAR */
header {
background: #111;
border-bottom: 1px solid #222;
position: sticky;
top: 0;
z-index: 1000;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 0;
}

.logo {
color: #c7924b;
font-size: 20px;
}

/* NAV LINKS */
nav a {
color: white;
margin-left: 25px;
text-decoration: none;
font-weight: 500;
font-size: 14px;
position: relative;
}

nav a::after {
content: "";
position: absolute;
left: 0;
bottom: -5px;
width: 0%;
height: 2px;
background: #c7924b;
transition: 0.3s;
}

nav a:hover::after {
width: 100%;
}

/* HERO */
.hero {
height: 85vh;
background: url("images/foto2.jpg") center/cover;
position: relative;
display: flex;
align-items: center;
}

.hero-overlay {
position: absolute;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
}

.hero-content {
position: relative;
z-index: 2;
max-width: 600px;
}

.hero h1 {
font-size: 38px;
margin-bottom: 15px;
}

.hero p {
color: #ccc;
font-size: 15px;
}

/* BUTTON */
.button {
background: #c7924b;
padding: 12px 22px;
border-radius: 8px;
color: white;
text-decoration: none;
display: inline-block;
margin-top: 18px;
transition: 0.3s;
font-size: 14px;
border: none;
cursor: pointer;
}

.button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(199,146,75,0.4);
}

/* SECTION */
.section {
padding: 60px 0;
}

p {
font-size: 15px;
color: #ccc;
}

/* CARDS */
.cards {
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 20px;
margin-top: 25px;
}

.card {
background: #1a1a1a;
padding: 20px;
border-radius: 12px;
transition: all 0.3s ease;
}

.card:hover {
transform: translateY(-8px) scale(1.02);
box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* DIENSTEN */
.dienst {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 50px;
align-items: center;
}

.dienst img {
width: 100%;
border-radius: 12px;
}

/* FAQ */
.faq-item {
background: #1a1a1a;
margin-bottom: 12px;
border-radius: 10px;
overflow: hidden;
}

.faq-header {
padding: 18px;
cursor: pointer;
background: #c7924b;
}

.faq-body {
max-height: 0;
overflow: hidden;
transition: 0.4s;
padding: 0 18px;
}

.faq-item.active .faq-body {
max-height: 200px;
padding: 18px;
}

/* CONTACT */
.contact-form {
background: #1a1a1a;
padding: 25px;
border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 12px;
margin-bottom: 12px;
border-radius: 8px;
border: 1px solid #333;
background: #111;
color: white;
}

/* CONTACT GRID */
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start;
margin-top: 30px;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 20px;
}

.info-box {
display: flex;
align-items: center;
gap: 15px;
background: #1a1a1a;
padding: 20px;
border-radius: 12px;
transition: 0.3s;
}

.info-box i {
font-size: 20px;
color: #c7924b;
min-width: 30px;
}

.info-box strong {
display: block;
margin-bottom: 3px;
}

.info-box p {
color: #ccc;
font-size: 14px;
}

.info-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* MAP */
iframe {
width: 100%;
height: 220px;
border-radius: 10px;
margin-top: 15px;
border: none;
}

/* ABOUT IMAGE */
.about-image {
margin-top: 30px;
display: flex;
justify-content: center;
}

.about-image img {
width: 70%;
max-width: 600px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
transition: 0.3s;
}

.about-image img:hover {
transform: scale(1.03);
}

/* PROJECTEN */
.project {
margin-bottom: 60px;
}

.project-text h3 {
margin-bottom: 10px;
color: #c7924b;
}

/* SLIDER */
.before-after {
position: relative;
width: 100%;
max-width: 420px;
margin: 0 auto;
height: 220px;
overflow: hidden;
border-radius: 12px;
margin-bottom: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.before-after img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.before-after .after {
width: 50%;
overflow: hidden;
z-index: 2;
transition: 0.2s ease;
}

.slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
cursor: pointer;
z-index: 2;
}

.slider-line {
position: absolute;
top: 0;
left: 50%;
width: 3px;
height: 100%;
background: #c7924b;
z-index: 3;
transition: 0.2s ease;
}

/* FOOTER */
footer {
background: #000;
padding: 25px;
text-align: center;
}

.socials {
margin-top: 10px;
}

.socials a {
margin: 0 10px;
color: #c7924b;
font-size: 20px;
text-decoration: none;
transition: 0.3s;
}

.socials a:visited {
color: #c7924b;
}

.socials a:hover {
color: white;
transform: scale(1.2);
}

/* WHATSAPP */
.whatsapp-wrapper {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
flex-direction: column;
align-items: flex-end;
z-index: 1000;
text-decoration: none;
}

.whatsapp-message {
background: white;
color: #111;
padding: 8px 12px;
border-radius: 8px;
max-width: 220px;
font-size: 12px;
line-height: 1.3;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
margin-bottom: 6px;
animation: shake 3s infinite;
}

.whatsapp-icon {
background: #25D366;
width: 55px;
height: 55px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
align-self: flex-end;
}

@keyframes shake {
0% { transform: translateX(0); }
20% { transform: translateX(-4px); }
40% { transform: translateX(4px); }
60% { transform: translateX(-3px); }
80% { transform: translateX(3px); }
100% { transform: translateX(0); }
}

/* MOBILE */
@media(max-width:768px){

.nav {
flex-direction: column;
gap: 12px;
}

.cards {
grid-template-columns: 1fr;
}

.dienst {
grid-template-columns: 1fr;
}

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

.contact-grid {
grid-template-columns: 1fr;
}

.before-after {
max-width: 100%;
height: 200px;
touch-action: none;
}

.whatsapp-message {
display: none;
}

}

/* ===== FIX BLAUWE LINKS ===== */
a[href^="tel"],
a[href^="mailto"] {
color: white !important;
text-decoration: none;
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
color: #c7924b !important;
}