html, body {
  max-width: 100%;
  overflow-x: hidden;
}

:root {
  --dark: #101820;
  --blue: #0d6efd;
  --ice: #eef7ff;
  --text: #2b2f33;
  --muted: #6c757d;
  --green: #71bc1c;
}

/* BASE */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

.section-padding {
  padding: 90px 0;
}

/* NAVBAR */

.navbar-logo {
  height: 70px;
  width: auto;
  display: block;
}

/* HERO */

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(16,24,32,0.72), rgba(16,24,32,0.72)), url('../../assets/img/hero.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 650px;
}

.hero-buttons {
  max-width: 100%;
}

.hero-buttons .btn {
  white-space: normal;
}

.hero .btn {
  border-radius: 12px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 600;
}

/* FEATURE CARDS */

.feature-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  height: 100%;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--ice);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* SERVICE CARDS */

.service-card {
  border-radius: 24px;
  overflow: hidden;
  transition: .3s;
}

.service-card:hover {
  box-shadow: 0 18px 40px rgba(0,0,0,.08) !important;
}

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

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

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

.service-card .btn {
  border-radius: 12px;
  font-weight: 600;
}

/* BRANDS */

.brands-section {
  background: #fff;
  padding: 80px 0;
}

.brand-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px;
  height: 140px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.brand-card img {
  max-width: 100%;
  max-height: 55px;
  min-width: 0;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .8;
  transition: .3s;
}

.brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* PROJECTS */

.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 360px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

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

.project-card:hover img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(rgba(16,24,32,0), rgba(16,24,32,.82));
}

.project-overlay h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.project-overlay p {
  margin-bottom: 0;
  color: rgba(255,255,255,.85);
}

/* CTA */

.cta-section {
  background: linear-gradient(135deg, #101820, #16324a);
  padding: 80px 0;
}

.cta-section .btn {
  border-radius: 12px;
  font-weight: 600;
}

/* ========================================
   EXTRA CSS VOOR AIRCO-PLAATSEN.HTML
======================================== */

.footer-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 180px;
  }
}

/* Zorg dat afbeeldingen altijd mooi schalen */

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

/* Extra spacing voor secties met grote afbeeldingen */

.section-padding img {
  border-radius: 24px;
}

/* Mooie badge styling */

.badge {
  font-weight: 600;
  letter-spacing: .02em;
}

/* Verbeter leesbaarheid van lange paragrafen */

.section-padding p {
  line-height: 1.7;
}

/* FOOTER */

.footer-section {
  background: #101820;
  color: rgba(255,255,255,.75);
  padding: 70px 0 30px;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  display: block;
}

.footer-section h3, .footer-section h4 {
  color: #fff;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: .25s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-section hr {
  border-color: rgba(255,255,255,.15);
  margin: 40px 0 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
  }
}

@media (max-width: 991px) {
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 55px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .hero .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .feature-card {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .brands-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .brand-card {
    height: 120px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .brand-card img {
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .service-img-wrap {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .project-card {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 55px 0 25px;
  }
}

@media (max-width: 768px) {
  .footer-logo {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* Cookiebanner */

.cookie-banner {
  position: fixed;
  z-index: 9999;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  width: min(620px, calc(100% - 2rem));
  padding: 1.5rem;
  color: #ffffff;
  background: #101820;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner h2 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  flex: 1 1 200px;
}

.footer-cookie-link {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  /*text-decoration: underline;*/
  cursor: pointer;
}

@media (max-width: 576px) {
  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100% - 1.5rem);
    padding: 1.25rem;
  }
}

