@charset "utf-8";
/* CSS Document */

:root {
  --yellow: #e5c51c;
  --dark: #233033;
  --light: #f7f7f5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #222;
  padding-top: 86px;
}

.navbar-brand {
  line-height: 1.05;
  font-size: 1.5rem;
}

.brand-small,
.eyebrow {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: .85rem;
  letter-spacing: .04em;
}

.navbar-logo {
    height: 48px;
    width: auto;
}

.footer-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    .navbar-logo {
        height: 40px;
    }

    .footer-logo {
        max-width: 240px;
        margin-top: 20px;
    }

}

.hero-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-img,
.showcase-img {
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.intro-text {
  max-width: 780px;
}

.btn-primary,
.btn-yellow {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #111;
  font-weight: 700;
}

.btn-primary:hover,
.btn-yellow:hover {
  background: #d4b714;
  border-color: #d4b714;
  color: #111;
}

.quote-section {
  background: var(--dark);
  color: #fff;
  padding: 55px 0;
  text-align: center;
}

.quote-section blockquote {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
}

.diensten-strip {
  background: var(--dark);
  padding: 35px 0;
}

.dienst-card {
  background: #fff;
  border-top: 6px solid var(--yellow);
  padding: 25px;
  height: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0,0,0,.18);
}

.dienst-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.portfolio-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
  position: relative;
  transition: .2s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.portfolio-body {
  padding: 25px;
}

.portfolio-body span {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .8rem;
}

.portfolio-body h3 {
  font-weight: 800;
  margin-top: .3rem;
}

.over-section {
  border-top: 1px solid #eee;
}

.relaties-section {
  background: #fff;
}

.footer {
  background: var(--black);
  color: #111;
  padding: 60px 0 60px 0;
}

.footer h2 {
  font-weight: 800;
}

.footer a {
  color: #111;
}

.map-wrapper {
  min-height: 260px;
  background: rgba(255,255,255,.4);
  border-radius: 20px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
}

.portfolio-image-link {
  display: block;
  overflow: hidden;
}

.portfolio-body.compact {
  padding: 20px 24px;
}

.portfolio-body.compact h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.portfolio-modal-dialog {
  max-width: 1100px;
}

.portfolio-modal-dialog .modal-content,
.portfolio-modal-dialog .modal-body {
  max-height: calc(100vh - 40px);
}

.portfolio-modal-dialog .modal-body {
  display: flex;
  flex-direction: column;
}

.portfolio-modal-image-wrap {
  flex: 1 1 auto;
  min-height: 0;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-modal-img {
  max-width: 100%;
  max-height: 62vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.portfolio-modal-text {
  flex: 0 0 auto;
  max-height: 28vh;
  overflow-y: auto;
}

.relaties-lijst {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
}

.relatie-naam {
  color: #233033;
  font-weight: 500;
}

.relatie-link {
  text-decoration: none;
}

.relatie-link:hover .relatie-naam {
  color: #e5c51c;
}

.relatie-bolletje {
  width: 7px;
  height: 7px;
  background: #e5c51c;
  border-radius: 50%;
  display: inline-block;
  margin: 0 14px;
  flex-shrink: 0;
}


@media (max-width: 767px) {

  .relaties-section .container {
    text-align: left !important;
  }

  .relaties-section h2 {
    text-align: center;
  }

  .relaties-lijst {
    display: block;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .relatie-item {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 10px;
  }

  .relatie-item::after {
    display: none !important;
  }

  .relatie-bolletje {
    display: inline-block;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #e5c51c;
    border-radius: 50%;
    margin: 8px 12px 0 0;
  }

  .relatie-link,
  .relatie-naam {
    display: inline;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 76px;
  }

  .hero-section,
  .section {
    padding: 55px 0;
  }

  .hero-section {
    text-align: center;
  }

  .portfolio-modal-img {
    max-height: 55vh;
  }
}

@media (max-width: 767px) {

  .relaties-lijst {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .relatie-item {
    display: flex !important;
    width: 100% !important;
  }
}