/* ===== WULL-BOUW — stylesheet ===== */

:root {
  --red: #a4262c;
  --red-dark: #7c1d22;
  --red-light: #c4363d;
  --black: #1b1b1b;
  --dark-gray: #2b2b2b;
  --gray: #6b6b6b;
  --light-gray: #e9e6e1;
  --cream: #f7f5f2;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
  --transition: all 0.25s ease;
  --container: 1180px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.section {
  padding: 96px 0;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.08rem;
}

.bg-cream {
  background: var(--cream);
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(164, 38, 44, 0.35);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(164, 38, 44, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== Header ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 54px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  color: var(--black);
  border-radius: 6px;
  transition: var(--transition);
  font-size: 0.96rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--black);
  font-size: 0.95rem;
}

.header-phone svg {
  color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15, 15, 15, 0.88) 20%, rgba(15, 15, 15, 0.55) 60%, rgba(164, 38, 44, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 90px;
}

.hero-content .eyebrow {
  color: #f2b9bb;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.4rem;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 1.15rem;
  color: #e7e4e0;
  margin-bottom: 34px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page hero (inner pages) */

.page-hero {
  position: relative;
  padding: 190px 0 90px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.82), rgba(15, 15, 15, 0.7));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.page-hero p {
  color: #e7e4e0;
  max-width: 560px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 18px;
  color: #cfcbc6;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 600;
}

/* ===== Feature strip ===== */

.feature-strip {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  padding: 36px;
}

.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-item .icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.86rem;
}

/* ===== Services cards ===== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card .img-wrap {
  height: 220px;
  overflow: hidden;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .img-wrap img {
  transform: scale(1.08);
}

.service-card .content {
  padding: 30px;
}

.service-card .num {
  color: var(--light-gray);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 8px 0 12px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card .link {
  color: var(--red);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Why us / split section ===== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split h2 {
  margin-bottom: 22px;
}

.split-media {
  position: relative;
}

.split-media img {
  border-radius: var(--radius);
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.check-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list .tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

.check-list h4 {
  font-size: 1.02rem;
  margin-bottom: 3px;
}

.check-list p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ===== Gallery / projects ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 15, 0.85), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay span {
  color: var(--white);
  font-weight: 700;
}

.gallery-item .tag,
.project-card .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 30px;
  z-index: 2;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.project-card .cover-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-card .cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .cover-wrap img {
  transform: scale(1.08);
}

.project-card .photo-count-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 15, 15, 0.7);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
}

.project-card .info {
  padding: 18px 20px;
}

.project-card .info h3 {
  font-size: 1.08rem;
}

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid var(--light-gray);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2000;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--light-gray);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--red);
}

.lightbox-close {
  top: 28px;
  right: 28px;
}

.lightbox-nav.prev {
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav.next {
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== CTA banner ===== */

.cta-banner {
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.cta-banner p {
  color: #f4d9da;
  margin-bottom: 30px;
}

/* ===== Diensten detail ===== */

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse .media {
  order: 2;
}

.service-detail .media img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail .index {
  font-family: var(--font-head);
  color: var(--light-gray);
  font-size: 3rem;
  font-weight: 700;
}

.service-detail h2 {
  font-size: 2rem;
  margin: 6px 0 18px;
}

.service-detail p {
  color: var(--gray);
  margin-bottom: 22px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  background: var(--cream);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
}

/* ===== Over ons ===== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.value-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.88rem;
}


/* ===== Contact ===== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item h5 {
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-info-item p, .contact-info-item a {
  color: #cfcbc6;
  font-size: 0.92rem;
}

.contact-info-item a:hover {
  color: var(--white);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--red);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  padding: 44px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: #eaf7ee;
  border: 1.5px solid #57b370;
  color: #1f6b37;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-success.active {
  display: block;
}

.form-error {
  display: none;
  background: #fbeaea;
  border: 1.5px solid #d9534f;
  color: #a02622;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-error a {
  color: #a02622;
  text-decoration: underline;
}

.form-error.active {
  display: block;
}

/* ===== Footer ===== */

.site-footer {
  background: var(--black);
  color: #b9b6b1;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--white);
  padding: 6px 10px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col .contact-line {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-col .contact-line svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== Responsive ===== */

@media (max-width: 980px) {
  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .service-detail,
  .service-detail.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .media {
    order: 0;
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 760px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
  }

  .main-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .section {
    padding: 64px 0;
  }

  .services-grid,
  .values-grid,
  .gallery-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-strip .container {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: -30px;
  }

  .section-header h2,
  .page-hero h1 {
    font-size: 1.9rem;
  }

  .contact-info-card,
  .form-card {
    padding: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
