/* ===== BASIS ===== */
.btn,
.btn-primary,
.btn-secondary,
.btn-portfolio {
  padding: 14px 36px !important;
}

body {
  font-family: 'Montserrat','Segoe UI',Arial,sans-serif;
  font-size: 17px;
  color: #242424;
  background: #f8f8fa;
  margin: 0;
}
h1,h2,h3,h4 {
  margin: 0;
  font-weight: 500;
}
p {
  margin: 0 0 1em;
  line-height: 1.6;
}
a {
  color: #e0582a;
  text-decoration: none;
  transition: color .2s;
}
a:hover {
  color: #d8d8d8;
}

/* ===== BUTTONS ===== */
.btn, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0582a;
  color: #fff;
  font-weight: 500;
  font-size: 1.12rem;
  padding: 14px 36px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 18px rgba(224,88,42,0.10);
  cursor: pointer;
  transition: background .2s, transform .14s;
}
.btn:hover, .btn-secondary:hover {
  background: #c7471d;
  transform: translateY(-2px) scale(1.03);
}
.btn-icon {
  font-size: 1.2em;
}

/* ===== SECTION TITLES & DOTS ===== */
.section {
  max-width: 1920px;
  margin: 0;
  padding-top: 20px;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 28px;
}
.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: #162052;
}
.section-dots {
  display: flex;
  gap: 32px;
  margin-top: 5px;
  margin-bottom: 15px;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 3px;
  vertical-align: middle;
}
.dot-blue      { background: #1a2b57; }
.dot-lightblue { background: #47b0e0; }
.dot-green     { background: #7ac142; }
.dot-orange    { background: #e0582a; }
.dot-yellow    { background: #f7cb1d; }
.dot-pink      { background: #ea1c5c; }
.dot-red       { background: #d82c20; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url('/img/hero.jpg') center/cover no-repeat;
  box-shadow: 0 8px 36px rgba(50,50,50,0.07);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,35,40,0.56);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1300px;
  padding: 90px 40px 90px 80px;
}
.hero h1 {
  font-size: 2.5rem;
  line-height: 1.22;
  margin-bottom: 40px;
}

/* ===== WIE ZIJN WIJ ===== */
.section-wij {
  background: #f8f8fa;
  padding-top: 25px;
}
.section-wij .section-grid {
  display: flex;
  align-items: flex-start; /* Verticale uitlijning bovenin */
  gap: 64px;
  flex-wrap: wrap;
}
.section-wij-content {
  flex: 1;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;   /* Verticaal bovenin */
}
.section-wij-content p {
  margin-bottom: 1.2em;
}
.section-wij-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* Altijd bovenin */
}
.section-wij-image img {
  width: 100%;
  min-height: 250px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.11);
  border-radius: 0;
}

/* ===== ONZE DIENSTEN ===== */
.section-diensten {
  background: #f8f8fa;
  padding-bottom: 0;
}

.diensten-cards {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Flex-items in dezelfde lijn */
.diensten-cards .dienst-card,
.diensten-cards p {
  flex: 1;
  max-width: 48%;
}

/* Dienstkaart styling */
.dienst-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(30,42,70,0.09);
  transition: transform .18s;
  border-radius: 0;
}
.dienst-card:hover {
  transform: translateY(-4px);
}

.dienst-imgwrap {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.dienst-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.07);
  transition: transform .22s;
  border-radius: 0;
}
.dienst-card:hover img {
  transform: scale(1.03);
}

.dienst-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.397) 80%, rgba(30,30,34,0) 100%);
}

/* Tekstblok naast de kaart */
.diensten-cards p {
  color: #000000;
  font-size: 1rem;
  border-radius: 0;
}

/* Onderkant overlay */
.dienst-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px 14px;
}
.dienst-title {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
}
.dienst-arrow {
  color: #fff;
  font-size: 2.5rem;
  transition: color .2s;
}
.dienst-card:hover .dienst-title,
.dienst-card:hover .dienst-arrow {
  color: #dbdbdb;
}


/* ===== ONZE PROJECTEN ===== */
.section-header--projects {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-bottom: 28px;
}
.projects-header-left {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn-portfolio {
  grid-column: 3;
  padding: 12px 28px;
  font-size: .97rem;
  margin-left: 0;
}

.project-large {
  position: relative;
  width: 100%;
  height: 360px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 0;
}
.project-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.05);
  transition: transform .3s;
}
.project-large:hover img { transform: scale(1.02); }
.project-large::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.project-large .project-content {
  position: absolute; top: 50%; left: 6%;
  transform: translateY(-50%);
  color: #fff; max-width: 40%; z-index: 2;
}
.project-large .project-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
.project-large .project-content p { margin-bottom: 16px; line-height: 1.5; }

/* === GRID met gelijke hoogtes === */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  align-items: stretch;
}
.project-grid .project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.11);
  transition: transform .3s;
}
.project-grid .project-card:hover { transform: translateY(-4px); }

.project-grid .project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(1.02) contrast(1.05);
  transition: transform .3s;
  border-radius: 0;
}
.project-grid .project-card:hover img { transform: scale(1.03); }

.project-grid .project-card .content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.project-grid .project-card h3 {
  font-size: 1.15rem;
  color: #162052;
  margin-bottom: 8px;
}
.project-grid .project-card p {
  font-size: .95rem;
  color: #444;
  margin-bottom: 12px;
}
/* Knop altijd onderaan en 100% breed */
.project-grid .project-card .btn,
.project-grid .project-card .see-more-link {
  margin-top: auto;
  align-self: stretch;     /* pakt volledige breedte van de content */
  display: block;
  text-align: center;
}

/* ===== RESPONSIVE AANPASSING ONZE PROJECTEN ===== */
@media (max-width: 950px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
  }
  .project-grid .project-card,
  .project-large { max-width: 100%; }
  .project-grid .project-card img { height: auto; }
  .project-large .project-content {
    left: 2%; right: 2%; max-width: 100%;
  }
  .btn, .btn-primary, .btn-secondary {
    width: 100% !important; margin: 0 !important;
  }
}



/* ===== ONZE PARTNERS ===== */
.carousel-wrapper {
  max-width: 1300px;    /* Of wat jij wilt, bv. 900px */
  margin: 0 auto;
  overflow: hidden;     /* Maskert buitenkant carousel */
  padding-left: auto;   /* optioneel, voor wat lucht links/rechts */
  padding-right: auto;
}
.section-partners {
  background: #fff;
  padding-top: auto;
  padding-bottom: auto;
}
.partners-carousel {
  display: flex;
  align-items: flex-start; /* Altijd bovenin */
  gap: 60px;
  flex-wrap: nowrap;
  will-change: transform;
}
.partners-carousel img {
  max-height: 70px;
  filter: grayscale(1) contrast(1.15);
  opacity: 0.9;
  transition: opacity .2s, filter .2s;
  flex: 0 0 auto;
}
.partners-carousel img:hover {
  opacity: 1;
  filter: none;
}
@media (max-width: 600px) {
  .partners-carousel {
    gap: 32px;
  }
  .partners-carousel img {
    max-height: 40px;
  }
}

/* ===== UNIFORM SPACING ===== */
.section + .section {
  padding-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .section-wij .section-grid,
  .project-grid {
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }
  .diensten-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }
  .diensten-cards .dienst-card {
    max-width: 100%;
  }
  .dienst-imgwrap {
    height: 350px;
  }
  .project-large {
    height: 240px;
  }
  
  .diensten-cards p{
    padding: 10px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .hero-content {
    padding: 40px 16px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ===== OVER RUAD SPECIFIEKE STIJLEN ===== */
.hero-over {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url('/img/gebouw.jpg') center/cover no-repeat;
  box-shadow: 0 8px 36px rgba(50,50,50,0.07);
  padding: 0 20px;
  margin-bottom: 10px;
}
.hero-over .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,35,40,0.56);
}
.hero-over .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 90px 40px 90px 80px;
}
.hero-over h1 {
  font-size: 2.5rem;
  line-height: 1.22;
  margin-bottom: 40px;
  margin-top: 0;
}

/* Algemene sectie-padding */
.section-over {
  padding-top: 1px;
}
.section-over .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 28px;
}
.section-over .section-title {
  font-size: 2rem;
  color: #162052;
}
.section-over .section-dots {
  display: flex;
  gap: 32px;
  margin-top: 5px;
}
.section-over .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.section-over .dot-blue      { background: #1a2b57; }
.section-over .dot-lightblue { background: #47b0e0; }
.section-over .dot-green     { background: #7ac142; }
.section-over .dot-orange    { background: #e0582a; }
.section-over .dot-yellow    { background: #f7cb1d; }
.section-over .dot-pink      { background: #ea1c5c; }
.section-over .dot-red       { background: #d82c20; }

/* Tekst-<->-beeld grid */
.section-grid.over-grid {
  display: flex;
  align-items: flex-start;  /* Belangrijk: altijd bovenaan! */
  gap: 64px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.section-grid.over-grid.reverse {
  flex-direction: row-reverse;
}

/* Afbeelding standaard links uitgelijnd, bij reverse rechts */
.over-image {
  flex: 1 1 380px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.section-grid.over-grid.reverse .over-image {
  justify-content: flex-end;
}

/* Tekst altijd netjes links */
.over-text {
  flex: 1 1 380px;
  font-size: 1.09rem;
  line-height: 1.7;
  text-align: left;
}
.over-text p {
  margin-bottom: 1.2em;
}
.over-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  box-shadow: 0 6px 32px rgba(0,0,0,0.11);
  display: block;
  object-fit: cover;
  border-radius: 0;
}

/* Kernwaarden grid */
.values-grid {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start; /* Altijd bovenin */
  margin-bottom: 64px;
}
.value-card {
  flex: 1 1 260px;
  text-align: center;
}
.value-card img {
  height: 48px;
  margin-bottom: 16px;
}
.value-card h3 {
  font-size: 1.15rem;
  color: #162052;
  margin-bottom: 8px;
}
.value-card p {
  font-size: .95rem;
  color: #444;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .section-grid.over-grid,
  .section-grid.over-grid.reverse {
    gap: 32px;
  }
  .over-image img {
    max-width: 360px;
  }
}

@media (max-width: 900px) {
  .hero-over {
    justify-content: center;
    text-align: center;
  }
  .hero-over .hero-content {
    padding: 40px 16px;
  }
  .hero-over h1 {
    font-size: 1.8rem;
  }

  /* compacter */
  .section-over {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-grid.over-grid,
  .section-grid.over-grid.reverse {
    flex-direction: column !important;
    gap: 20px;              /* was 32px */
    margin-bottom: 0;    /* was 40px */
    align-items: flex-start !important;
  }

  .over-image {
    width: 100% !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .over-image img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto;
    display: block;
  }
  .over-text {
    flex: 1 1 10px;
    width: 100%;
    height: 100%;
    text-align: left !important;
  }

  .values-grid {
    flex-direction: column;
    gap: 20px;              /* was 32px */
    margin-bottom: 28px;    /* toegevoegd voor consistentie */
  }
}

/* Zet spacing en max-widths goed op mobiel */
@media (max-width: 600px) {
  .hero-over {
    min-height: 320px;
    padding: 0 5px;
  }

  /* compacter */
  .section-over {
    padding-top: 0;
    padding-bottom: 18px;
  }

  .section-over .section-header {
    margin-bottom: 14px;    /* was 18px */
  }

  .section-grid.over-grid,
  .section-grid.over-grid.reverse {
    gap: 14px;              /* was 18px */
    margin-bottom: 20px;    /* was 28px */
  }

  .over-image {
    width: 100% !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .over-image img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto;
    display: block;
  }

  .values-grid {
    gap: 16px;              /* compacter */
    margin-bottom: 20px;    /* compacter */
  }
}


/* Uniforme padding knoppen overal */
.btn, .btn-primary, .btn-secondary {
  padding: 14px 36px !important;
  font-size: 1.12rem;
  border-radius: 12px;
}

/* ===== HERO SALE ===== */
.hero-sale {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url('/img/80dcd79ca5b449ac8047a78d559cd4137341f6c1.jpg') center/cover no-repeat;
  box-shadow: 0 8px 36px rgba(50,50,50,0.07);
  padding: 0 20px;
}
.hero-sale .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,35,40,0.56);
}
.hero-sale .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  padding: 100px 60px;
  color: #fff;
}
.hero-sale h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

/* ===== EQUIPMENT GRID ===== */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
  margin: 0 auto;
  max-width: 1300px;
  align-items: flex-start;
}

.equipment-card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  cursor: pointer;
}

.equipment-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.equipment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background .3s;
  z-index: 1;
}

.equipment-card:hover::before {
  background: rgba(0,0,0,0.1);
}

.equipment-title {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  font-size: 1.1rem;
  z-index: 3;
}

/* Beschrijving-overlay */
.equipment-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.equipment-card:hover .equipment-overlay {
  opacity: 1;
}

/* Altijd zichtbaar op mobiel */
@media (max-width: 900px) {
  .equipment-overlay {
    opacity: 1 !important;
    background: rgba(0,0,0,0.45);
    font-size: 0.9rem;
    padding: 12px;
  }
}

/* Speciale kaart */
.equipment-card.more {
  background: #1a2b57 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipment-card.more .equipment-title {
  font-size: 1.5rem;
  font-weight: 500;
}

/* Achtergrond per equipment-kaart */
.equipment-microfoons   { background-image: url('/img/verkoop.jpg'); }
.equipment-visueel      { background-image: url('/img/83596ac947f0bd36763c4258fe17bd96bae8152c.jpg'); }
.equipment-dj           { background-image: url('/img/7970c2e901f880ed64cbc5fb49e044cd312c2fb5.jpg'); }
.equipment-speakers     { background-image: url('/img/bf8909cb3babce6066726fcbeb2339349f15c6e8.jpg'); }
.equipment-regelaars    { background-image: url('/img/1623a78b21b057b62fb4811dc68f519655a48833.jpg'); }
.equipment-kabels       { background-image: url('/img/fd1b93f3f479f9f599ed7b8255a93686dc24b2b2.jpg'); }
.equipment-mixers       { background-image: url('/img/0c12ae3376c5ab381c06836582a08e04cde9f6a3.jpg'); }
.equipment-analoge      { background-image: url('/img/e78dccfd8f70ad85ec6cbe412942a070f8f52a99.jpg'); }

/* ===== SECONDARY SECTION ===== */
.section-secondary {
  background: #f8f8fa;
  padding: 80px 20px;
  margin-top: 0;
  align-items: flex-start;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 900px) {
  .hero-sale .hero-content {
    padding: 60px 20px;
    text-align: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .equipment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .equipment-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .equipment-card {
    height: 180px;
  }
}


/* ===== HERO PROJECTEN ===== */
.hero-projecten {
  background: url('/img/f8969931a7e19e4e8db358dc9136353f213f7cd7.jpg') center/cover no-repeat;
}
.hero-projecten .hero-content {
  max-width: 1300px;
  color: #fff;
}
.hero-projecten p {
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
  align-items: flex-start; /* Altijd bovenin */
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Altijd bovenin */
}
.portfolio-card:hover {
  transform: scale(1.02);
}
.portfolio-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter .3s;
}
.portfolio-card:hover img {
  filter: brightness(0.9);
}
.portfolio-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e0582a;
  color: #fff;
  font-size: .8rem;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}
.portfolio-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}
.portfolio-info h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
}
.portfolio-arrow {
  position: absolute;
  bottom: 130px;
  right: 30px;
  font-size: 3rem;
  color: #ffffff;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT PAGINA ===== */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/* 2. Section styling */
.section-contact {
  background: #f8f8fa;
}

/* 3. Responsive grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start; /* Altijd bovenin */
}

/* 4. Info-blok */
.contact-info {
  font-size: 1rem;
  line-height: 1.6;
}
.contact-info p {
  margin-bottom: 1.2em;
}
.contact-info .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1rem;
  width: 100%;
}

/* 5. Formulier */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: .95rem;
  color: #162052;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  cursor: pointer;
  margin-top: 0;
}

/* 6. (Optioneel) Full-width buttons op kleine schermen */
@media (max-width: 500px) {
  .contact-info .btn,
  .contact-form .btn {
    width: 100%;
  }
}

/* ===== ALGEMENE SECTIE-IMAGE INSTELLINGEN ===== */
.section .section-image {
  flex: 1 1 480px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.section .section-image img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  box-shadow: 0 6px 32px rgba(0,0,0,0.11);
}

/* ===== PROJECTEN DETAIL ===== */
.project-detail {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}

.project-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Gecentreerde Masonry-container */
.project-gallery {
  max-width: 1300px;
  margin: 0 auto 44px;
  position: relative;
  padding: 0 10px;
}

/* Masonry items */
.project-gallery a {
  width: 260px;
  display: block;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow .2s;
  position: relative; /* nodig voor overlay */
}

.project-gallery a:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.11);
}

.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform .25s ease;
}

.project-gallery a:hover img {
  transform: scale(1.04);
}

/* Overlay bij hover */
.project-gallery a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Zoom-icoon in plaats van vergrootglas */
.project-gallery a::after {
  content: '\f00e'; /* Font Awesome zoom-in icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* Hover-effect */
.project-gallery a:hover::before,
.project-gallery a:hover::after {
  opacity: 1;
}

/* Responsief: 2 kolommen rond tablet, 1 kolom op mobiel */
@media (max-width: 900px) {
  .project-gallery a { width: 47%; }
}
@media (max-width: 600px) {
  .project-gallery a { width: 100%; }
}

/* Hero achtergrond + overlay */
.project-hero {
  position: relative;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.project-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0.25));
}

/* Hero tekst netjes uitgelijnd en leesbaar */
.project-hero .hero-content {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px 24px;
  color: #fff;
}
.project-hero .hero-content h1 {
  margin-bottom: 12px;
}
.project-hero .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 900px;
  color: #fff;
}



/* ===== MOBIEL: VOLLEDIGE BREEDTE VOOR ALLE SECTIES ===== */
@media (max-width: 600px) {
  .section,
  .section-over,
  .section-secondary {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .diensten-cards,
  .project-grid,
  .section-wij .section-grid,
  .equipment-grid,
  .portfolio-grid,
  .contact-grid {
    max-width: 100% !important;
    margin: 0 !important;
    gap: 16px !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
  }

  .btn, .btn-primary, .btn-secondary {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem;
}

/* ===== INSTAGRAM ===== */
.instagram-section {
  padding: 0;
  margin: 0;
  text-align: center;
}
.instagram-feed {
  margin: 0 auto 35px auto;
  max-width: 1300px;
}

/* Verberg Elfsight branding en de "remove branding" knop */
a[href*="elfsight.com/instagram-feed-instashow"] {
  display: none !important;
}
a[href*="elfsight.com"][target="_blank"][rel~="noreferrer"] {
  display: none !important;
}
[title="Remove Elfsight logo"] {
  display: none !important;
}
body a[href*="elfsight.com/instagram-feed-instashow"],
body a[href*="elfsight.com"][target="_blank"][rel~="noreferrer"] {
  display: none !important;
}
body [title="Remove Elfsight logo"] {
  display: none !important;
}
body .eapps-link, 
body .elfsight-app [href*="elfsight.com"] {
  display: none !important;
}

/* ==== UNIFORM SECTION SPACING OVERRIDE ==== */
.section,
.section-over,
.section-wij,
.section-diensten,
.section-partners,
.section-contact,
.section-secondary {
  margin: 20px 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}
.section-equipment {
  margin: 0 !important;
  margin-bottom: 25px !important;
  padding: 0 !important;
}
.section + .section {
  margin-top: 20px !important;
}

/* ===== SECTION HEADER OVERRIDES ===== */
.section-header:not(.section-header--projects) {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
  margin-bottom: 28px !important;
}
.section-header:not(.section-header--projects) .section-title {
  font-size: 2rem !important;
  font-weight: 500 !important;
  color: #162052 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}
.section-dots {
  display: flex !important;
  gap: 40px !important;
  margin: 10px 0 10px 0!important;
  padding: 0 !important;
}
.section-dots .dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  margin: 0 !important;
  flex-shrink: 0;
}
.dot-blue      { background: #1a2b57 !important; }
.dot-lightblue { background: #47b0e0 !important; }
.dot-green     { background: #7ac142 !important; }
.dot-orange    { background: #e0582a !important; }
.dot-yellow    { background: #f7cb1d !important; }
.dot-pink      { background: #ea1c5c !important; }
.dot-red       { background: #d82c20 !important; }

/* ==== PROJECTEN HEADER RESET ==== */
.section-header--projects {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: unset !important;
}
.section-header--projects .section-dots {
  gap: 40px !important;
}
@media (max-width: 700px) {
  .section-header--projects {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .section-header--projects > .projects-header-left {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .section-header--projects .section-title {
    width: 100%;
  }
  .section-header--projects .section-dots {
    margin: 15px 0 !important;
    width: 100%;
    display: flex !important;
  }
  .section-header--projects .btn-portfolio {
    width: 100% !important;
    align-self: center !important;
    margin: 16px auto 0 auto !important;
    order: 3;
    display: block !important;
  }
}

/* === MOBIEL: dots over de volledige breedte, zonder gap === */
@media (max-width: 600px) {
  .section-dots {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
  }
}
