@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&family=Work+Sans:wght@700;900&display=swap');

:root {
 --primary-color: #e67e22;
 --bg-dark: #111111;
 --bg-light: #ffffff;
 --text-dark: #000000;
 --text-light: #ffffff;
 --border-color: #000000;
 --font-heading: 'Work Sans', sans-serif;
 --font-mono: 'Roboto Mono', monospace;
 --transition: all 0.2s ease-in-out;
}

/* --- RESET & GLOBALS --- */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
}

body {
 font-family: var(--font-mono);
 font-size: 16px;
 line-height: 1.6;
 color: var(--text-dark);
 background-color: var(--bg-light);
 -webkit-font-smoothing: antialiased;
}

a {
 color: var(--text-dark);
 text-decoration: underline;
 text-decoration-color: var(--primary-color);
 text-decoration-thickness: 2px;
 transition: var(--transition);
}

a:hover {
 background-color: var(--primary-color);
 color: var(--text-light);
 text-decoration-color: var(--primary-color);
}

img {
 max-width: 100%;
 height: auto;
 display: block;
}

h1, h2, h3, h4 {
 font-family: var(--font-heading);
 font-weight: 900;
 text-transform: uppercase;
 color: var(--text-dark);
}

.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}

.section {
 padding: 100px 0;
 border-bottom: 2px solid var(--border-color);
}

.section-dark {
 background-color: var(--bg-dark);
 color: var(--text-light);
 border-color: var(--text-light);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
 color: var(--text-light);
}

.section-dark a {
 color: var(--text-light);
}

.section-header {
 text-align: left;
 margin-bottom: 50px;
 max-width: 700px;
}

.section-id {
 font-family: var(--font-mono);
 font-size: 1rem;
 color: var(--primary-color);
 margin-bottom: 8px;
 display: block;
}

.section-title {
 font-size: clamp(2rem, 5vw, 3.5rem);
 line-height: 1;
 margin-bottom: 1rem;
}

.section-subtitle {
 font-size: 1.1rem;
 line-height: 1.6;
}

/* --- HEADER --- */
.header {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 border-bottom: 2px solid var(--border-color);
 background-color: var(--bg-light);
}

.nav {
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: 80px;
}

.nav-logo {
 font-family: var(--font-heading);
 font-size: 1.5rem;
 font-weight: 900;
 text-decoration: none;
}
.nav-logo:hover {
 background: none;
 color: var(--primary-color);
}

.nav-links {
 display: flex;
 gap: 30px;
}

.nav-link {
 font-family: var(--font-mono);
 font-weight: 700;
 font-size: 1rem;
 text-transform: uppercase;
 text-decoration: none;
 padding-bottom: 5px;
 border-bottom: 2px solid transparent;
}

.nav-link.active,
.nav-link:hover {
 border-bottom-color: var(--primary-color);
 background: none;
 color: var(--text-dark);
}

.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 1001;
}

.nav-toggle span {
 display: block;
 width: 25px;
 height: 3px;
 background-color: var(--text-dark);
 margin: 5px 0;
}

/* --- HERO --- */
.hero {
 display: flex;
 align-items: center;
 justify-content: center;
 min-height: calc(100vh - 82px);
 padding: 100px 0;
 text-align: left;
 background-color: var(--bg-light);
 border-bottom: 2px solid var(--border-color);
 margin-top: 80px;
}

.hero-content {
 width: 100%;
}

.hero-title {
 font-size: clamp(3rem, 10vw, 8rem);
 line-height: 0.9;
 margin: 0;
}
.hero-title-alt {
 color: var(--primary-color);
}

.hero-subtitle {
 font-family: var(--font-mono);
 margin-top: 1rem;
 font-size: 1rem;
 color: #555;
}

.btn-hero {
 display: inline-block;
 font-family: var(--font-mono);
 font-weight: 700;
 text-transform: uppercase;
 color: var(--text-dark);
 background-color: transparent;
 border: 2px solid var(--border-color);
 padding: 14px 28px;
 margin-top: 2rem;
 text-decoration: none;
 transition: var(--transition);
}
.btn-hero:hover {
 background-color: var(--primary-color);
 border-color: var(--primary-color);
 color: var(--text-light);
}

/* --- SERVICES & CARDS --- */
.grid-3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 2px;
 border: 2px solid var(--border-color);
}

.card {
 padding: 30px;
 border-right: 2px solid var(--border-color);
}

.grid-3 .card:last-child {
 border-right: none;
}

.card-title {
 font-size: 1.5rem;
 margin-bottom: 1rem;
}

.card-text {
 font-size: 1rem;
 margin-bottom: 1rem;
}

.card-tag {
 font-family: var(--font-mono);
 font-size: 0.9rem;
 color: var(--primary-color);
}

/* --- MEDIA OBJECT --- */
.media-object {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
}

.media-visual img {
 border: 2px solid var(--border-color);
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.section-dark .media-visual img {
 border-color: var(--text-light);
}

.media-title {
 font-size: 2rem;
 margin-bottom: 1rem;
}

.checklist {
 list-style: none;
 margin-top: 1rem;
}
.checklist li {
 margin-bottom: 0.5rem;
 display: flex;
 align-items: baseline;
}
.check-mark {
 color: var(--primary-color);
 margin-right: 10px;
 font-weight: 700;
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
}
.testimonial {
 border-left: 4px solid var(--primary-color);
 padding-left: 2rem;
}

.testimonial-text {
 font-size: 1.5rem;
 font-weight: 400;
 line-height: 1.4;
 margin-bottom: 1rem;
 font-family: var(--font-heading);
 font-weight: 700;
}
.testimonial-cite {
 font-family: var(--font-mono);
 font-style: normal;
}

/* --- CTA SECTION --- */
.cta-section {
 text-align: center;
}
.cta-section .section-header {
 margin-left: auto;
 margin-right: auto;
 text-align: center;
}
.btn-cta {
 display: inline-block;
 font-family: var(--font-mono);
 font-weight: 700;
 text-transform: uppercase;
 color: var(--text-light);
 background-color: var(--primary-color);
 border: 2px solid var(--primary-color);
 padding: 18px 36px;
 margin-top: 1rem;
 text-decoration: none;
 transition: var(--transition);
}
.btn-cta:hover {
 background-color: transparent;
 border-color: var(--primary-color);
 color: var(--primary-color);
}

/* --- FOOTER --- */
.footer {
 padding: 60px 0;
 background-color: var(--bg-dark);
 color: var(--text-light);
 border-top: 2px solid var(--text-dark);
}

.footer-main {
 display: grid;
 grid-template-columns: 2fr 1fr 1fr 1.5fr;
 gap: 40px;
 padding-bottom: 40px;
 border-bottom: 2px solid #333;
}
.footer-logo {
 font-family: var(--font-heading);
 font-weight: 900;
 font-size: 1.5rem;
 margin-bottom: 1rem;
 display: block; 
 color: var(--text-light);
 text-decoration: none;
}
.footer-logo:hover {
 background: none;
 color: var(--primary-color);
}
.footer-brand p {
 color: #aaa;
 max-width: 300px;
}
.footer-heading {
 font-family: var(--font-mono);
 font-weight: 700;
 text-transform: uppercase;
 margin-bottom: 1.5rem;
 color: #fff;
}
.footer-links, .footer-contact {
 list-style: none;
}
.footer-links li, .footer-contact li {
 margin-bottom: 1rem;
}
.footer-links a, .footer-contact a {
 color: #aaa;
 text-decoration: none;
}
.footer-links a:hover, .footer-contact a:hover {
 color: var(--text-light);
 background: none;
 text-decoration: underline;
 text-decoration-color: var(--primary-color);
}
.footer-contact li {
 color: #aaa;
}

.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 30px;
 font-family: var(--font-mono);
 font-size: 0.9rem;
}
.footer-copyright {
 color: #777;
}
.footer-legal a {
 color: #777;
 text-decoration: none;
 margin-left: 20px;
}
.footer-legal a:hover {
 color: var(--text-light);
 background: none;
}

/* --- PAGE HEADER (for subpages) --- */
.page-header {
 padding: 150px 0 100px;
 border-bottom: 2px solid var(--border-color);
 margin-top: 80px;
}
.page-id {
 font-family: var(--font-mono);
 color: var(--primary-color);
 display: block;
 margin-bottom: 1rem;
 font-size: 1rem;
}
.page-title {
 font-size: clamp(3rem, 8vw, 6rem);
 line-height: 1;
}
.page-subtitle {
 font-size: 1.2rem;
 max-width: 600px;
 margin-top: 1rem;
}

/* --- DIENSTEN PAGE ---*/
.service-block {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
 align-items: center;
 margin-bottom: 100px;
}
.service-block.reverse {
 grid-template-columns: 1fr 1fr;
}
.service-block.reverse .service-image {
 order: 2;
}

.service-image {
 border: 2px solid var(--border-color);
 height: 400px;
 object-fit: cover;
}
.service-title {
 font-size: 2.5rem;
 margin-bottom: 1rem;
}
.service-code {
 display: block;
 margin-top: 1.5rem;
 font-family: var(--font-mono);
 color: var(--primary-color);
 font-size: 1rem;
 background: #f0f0f0;
 padding: 5px 10px;
 border: 1px solid #ccc;
 display: inline-block;
}

/* --- OVER ONS PAGE --- */
.team-grid {
 gap: 40px;
}
.team-member {
 text-align: center;
 border: 2px solid var(--border-color);
 padding: 30px;
}
.section-dark .team-member {
 border-color: var(--text-light);
}
.team-photo {
 width: 150px;
 height: 150px;
 object-fit: cover;
 margin: 0 auto 1.5rem;
 border: 2px solid var(--border-color);
}
.section-dark .team-photo {
 border-color: var(--text-light);
}
.team-name {
 font-size: 1.5rem;
 margin-bottom: 0.5rem;
}
.team-title {
 font-family: var(--font-mono);
 color: var(--primary-color);
 margin-bottom: 1rem;
}

/* --- PORTFOLIO PAGE ---*/
.portfolio-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 2px;
 border: 2px solid var(--border-color);
}
.portfolio-item {
 position: relative;
 overflow: hidden;
 border: 2px solid var(--border-color);
}
.portfolio-item img {
 width: 100%;
 height: 400px;
 object-fit: cover;
 transition: transform 0.3s ease;
}
.portfolio-item:hover img {
 transform: scale(1.05);
}
.portfolio-info {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 background: rgba(0,0,0,0.8);
 color: white;
 padding: 20px;
 transform: translateY(100%);
 transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-info {
 transform: translateY(0);
}
.portfolio-info h3 {
 color: var(--primary-color);
 font-size: 1.5rem;
}
.portfolio-tag {
 font-family: var(--font-mono);
 position: absolute;
 top: 20px;
 right: 20px;
 background: var(--primary-color);
 color: white;
 padding: 5px 10px;
 font-size: 0.8rem;
}

/* --- CONTACT PAGE --- */
.contact-container {
 display: grid;
 grid-template-columns: 2fr 1.5fr;
 gap: 60px;
}
.contact-subtitle {
 font-size: 2rem;
 margin-bottom: 2rem;
 border-bottom: 2px solid var(--border-color);
 padding-bottom: 1rem;
}
.form-group {
 margin-bottom: 1.5rem;
}
.form-group label {
 display: block;
 font-family: var(--font-mono);
 font-weight: 700;
 margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
 width: 100%;
 padding: 12px;
 font-family: var(--font-mono);
 font-size: 1rem;
 border: 2px solid var(--border-color);
 background: var(--bg-light);
}
.form-group input:focus, .form-group textarea:focus {
 outline: 2px solid var(--primary-color);
 border-color: var(--primary-color);
}
textarea {
 resize: vertical;
 min-height: 120px;
}
.btn-form {
 display: inline-block;
 font-family: var(--font-mono);
 font-weight: 700;
 text-transform: uppercase;
 color: var(--text-dark);
 background-color: transparent;
 border: 2px solid var(--border-color);
 padding: 14px 28px;
 cursor: pointer;
 transition: var(--transition);
}
.btn-form:hover {
 background-color: var(--primary-color);
 border-color: var(--primary-color);
 color: var(--text-light);
}
.contact-info-block {
 margin-bottom: 2rem;
}
.contact-info-block h4 {
 font-family: var(--font-mono);
 font-weight: 700;
 font-size: 1rem;
 text-transform: uppercase;
 margin-bottom: 0.5rem;
 color: var(--primary-color);
}
.map-container {
 border: 2px solid var(--border-color);
 height: 450px;
}
.map-container iframe {
 width: 100%;
 height: 100%;
 filter: grayscale(1);
}

/* --- LEGAL & THANK YOU PAGES ---*/
.legal-content h2, .legal-content h3 {
 margin-top: 2rem;
 margin-bottom: 1rem;
}
.legal-content ul {
 margin-left: 20px;
 margin-bottom: 1rem;
}
.cookie-table {
 width: 100%;
 border-collapse: collapse;
 margin: 2rem 0;
 font-family: var(--font-mono);
}
.cookie-table th, .cookie-table td {
 border: 2px solid var(--border-color);
 padding: 10px;
 text-align: left;
}
.cookie-table th {
 background-color: var(--bg-dark);
 color: var(--text-light);
 font-family: var(--font-mono);
}
.thank-you-header {
 text-align: center;
}

/* --- COOKIE BANNER --- */
#cookie-banner {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 background-color: var(--bg-light);
 color: var(--text-dark);
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 z-index: 2000;
 border-top: 2px solid var(--border-color);
 font-family: var(--font-mono);
}
#cookie-banner p {
 margin: 0;
}
#cookie-banner a {
 color: var(--primary-color);
}
.cookie-buttons {
 display: flex;
 gap: 10px;
}

#cookie-accept, #cookie-decline {
 font-family: var(--font-mono);
 text-transform: uppercase;
 border: 2px solid var(--border-color);
 background: transparent;
 padding: 8px 16px;
 cursor: pointer;
 font-weight: 700;
}
#cookie-accept {
 background: var(--primary-color);
 border-color: var(--primary-color);
 color: var(--text-light);
}
#cookie-accept:hover {
 background: var(--text-dark);
 border-color: var(--text-dark);
}
#cookie-decline:hover {
 background: var(--text-dark);
 color: var(--text-light);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
 .grid-3 {
 grid-template-columns: 1fr;
 }
 .card {
 border-right: none;
 border-bottom: 2px solid var(--border-color);
 }
 .grid-3 .card:last-child {
 border-bottom: none;
 }
 .media-object {
 grid-template-columns: 1fr;
 }
 .footer-main {
 grid-template-columns: 1fr 1fr;
 }
 .contact-container {
 grid-template-columns: 1fr;
 }
 .portfolio-grid {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 768px) {
 .nav-links {
 position: fixed;
 top: 0;
 right: 0;
 width: 100%;
 height: 100vh;
 background-color: var(--bg-light);
 flex-direction: column;
 justify-content: center;
 align-items: center;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 gap: 40px;
 }
 .nav-links.active {
 transform: translateX(0);
 }
 .nav-link {
 font-size: 1.5rem;
 }
 .nav-toggle {
 display: block;
 }
 .footer-main {
 grid-template-columns: 1fr;
 text-align: center;
 }
 .footer-brand p {
 margin: 0 auto;
 }
 .footer-bottom {
 flex-direction: column;
 gap: 20px;
 }
 #cookie-banner {
 flex-direction: column;
 gap: 15px;
 text-align: center;
 }
}