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: 55vh;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  background: transparent;
}


.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.about-philosophy {
  display: flex;             /* side-by-side container */
  align-items: center;       /* vertical center */
  justify-content: space-between;
  padding: 120px 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;
}

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

.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 {
  background: #7298aa;
  padding: 40px;
}

.footer-content {
  max-width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items: center;
  gap: 20px;
  color: #fff;
}

.footer-socials a {
  margin-right: 12px;
  color: #ccc;
}

.footer-meta {
  display: flex;
  flex-direction: column; /* 👈 stacks vertically */
  text-align: right;
  gap: 6px; /* space between location & copyright */
}

.footer-location {
  font-size: 15px;
  opacity: 0.9;
}

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