body {
  background-image: url("../assets/background\ NL.JPEG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional – subtle parallax feel */
}




.about-hero {
  height: 80vh;
  display: flex;
  align-items: center;
  padding: 0px 8vw;
  background: transparent;
}


.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
}
.about-philosophy {
  display: flex;             /* side-by-side container */
  align-items: center;       /* vertical center */
  justify-content: space-between;
  padding: 50px 8vw;
  gap: 40px;
  flex-wrap: wrap;           /* allow stacking on small screens */
}

.about-text {
  display: flex;
  flex-direction: column;    /* stack h2 on top of p */
  flex: 1 1 500px;           /* grow/shrink, min width */
  gap: 24px;                 /* space between h2 and p */
  margin-right: 120px;
}

.about-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  margin: 0;
}

.about-text p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
  border-bottom: 4px solid rgba(255, 255, 255, 0.8);
  padding: 20px 0px 20px
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .about-philosophy {
    flex-direction: column;
    gap: 24px;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
}

/*
.about-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 0 8vw 120px;
}
*/

/*Location*/

.about-location {
  display: flex;
  gap: 80px;
  padding: 50px 8vw;
  align-items: center;
}

/* LEFT SIDE — MAPS */
.location-maps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-card {
  width: 100%;
  height: 280px;
  background: rgba(255, 255, 255, 0.08); /* placeholder */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.map-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) brightness(0.8);
}


/* RIGHT SIDE — TEXT */
.location-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}


.location-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.location-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: none;
  opacity: 0.9;
}


.about-founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 12px 8vw;
  align-items: center;
}
.about-founder h3 {
    font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 24px;
}

.about-founder p {
    font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;

}

.about-founder img {
  width: 100%;
  border-radius: 16px;
}

.about-cta {
  padding: 120px 8vw;
  text-align: center;
}

.about-image {
  flex: 1;                     /* takes right half */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;         /* optional styling */
  object-fit: cover;
}

.about-cta h2 {
     font-size: clamp(0.5rem, 2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 24px;
  max-width: 200px;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

.button-wrapper {
  display: flex;
  justify-content: center;  /* centers the button */
  max-width: 200px;        /* optional: limits how long the button can get */
  margin: 0 left;           /* centers wrapper in its parent */
}

.cta-button {
  width: 100%;              /* button fills wrapper */
  text-align: center;       /* center text inside button */
  padding: 14px 0;          /* adjust padding for smaller width */
}




.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 1.1s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@media (max-width: 900px) {
  .about-location {
    flex-direction: column;
    gap: 40px;
  }

  .location-text p {
    max-width: 100%;
  }
}


/* FOOTER */
.footer {
  padding: 60px 0 40px;
  width: 100%;
  position: relative;
  background: rgba(255,255,255, 0.08) /* 👈 blends with page */
}

.footer-content {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  color: #ffffff; /* matches brand but softer */
}

/* LEFT */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-location {
  font-weight: 500;
}

.footer-email {
  opacity: 0.8;
}

/* SOCIAL ICONS BELOW EMAIL */
.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}

.footer-socials a {
  color: #144961;
  font-size: 20px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 1;
}



/* RIGHT */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #ffffff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.6;
}


/* Shrink header text on small screens */
@media (max-width: 480px) {
  .services-intro h1 {
    font-size: 2rem; /* smaller but readable */
    line-height: 1.2; /* keep it tight */
  }
  .services-intro p {
    font-size: 0.9rem; /* optional: shrink paragraph too */
  }
}


@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
  }

  .logo {
    margin-right: auto;
  }

  .logo img {
    height: 42px;
  }

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

  .nav-links a {
    margin-left: 0;
    font-size: 13px;
  }
}

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

@media (max-width: 768px) {
  .about-philosophy {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    align-items: center;
  }

  .about-text p {
    text-align: center;
  }

  .about-image {
    margin-top: 40px;
  }
}

@media (max-width: 900px) {
  .about-location {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .location-text {
    text-align: center;
  }
}


@media (max-width: 768px) {
  .about-founder {
    grid-template-columns: 1fr; /* stack */
    gap: 32px;
    text-align: center;
  }

  .about-founder img {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-founder p {
    margin: 0 auto;
  }
}


