/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* NAV */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #e5e5e5;
  font-size: 14px;
  letter-spacing: 1px;
}

.logo {
  font-weight: 500;
  letter-spacing: 2px;
}
.services-intro {
  min-height: 60vh;
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* center horizontally */
  text-align: center;  /* center the text */
}

.services-intro h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;   /* normal weight, not bold */
  margin-bottom: 24px;
  color: #e5e5e5;
  padding-top: 140px;
}

.services-intro p {
  font-size: 1.2rem;
  max-width: 700px;
  line-height: 1.6;
  opacity: 0.9;
  font-weight: 400;   /* normal weight */
  color: #e5e5e5;
}
body {
  color: #fff;
}

/* STATIC BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../assets/sky\ background.jpg") center / cover no-repeat;
  z-index: -1;
  filter: brightness(1);
}

 /*Relative background instead 
body::before {
  content: "";
  position: absolute; 
  inset: 0;
  min-height: 100%;
  background: url("../assets/background NL.JPEG") center / cover no-repeat;
  z-index: -1;
  filter: brightness(0.6);
}

body {
  position: relative;
  min-height: 100vh;
  color: #fff;
}
*/


/* WORK PAGE */
.work-page {
  padding: 70px 8vw 120px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* WORK CARD */
.work-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* IMAGE RECTANGLE */
.work-image {
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.work-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.work-content p {
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.85;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 500;
  letter-spacing: 2px;
  color: #fff; /* make text white */
}

.logo img.logo-icon {
  height: 40px; /* adjust to taste */
  width: auto;
  margin-right: 10px; /* space between icon and text */
}

.logo {
  font-weight: 500;
  letter-spacing: 2px;
}

.logo img {
  height: 63px; /* adjust to taste */
  width: auto;
  display: block;
}

/* 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;
}

.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;
}

/* TEXT + RIGHT IMAGES ROW */
.work-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* LEFT TEXT */
.work-text {
  max-width: 640px;
}

/* RIGHT IMAGES */
.work-side-images {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 320px; /* optional constraint */
}

.work-side-images img {
  width: 100%;
  height: auto;        /* <-- key change */
  object-fit: contain; /* or remove entirely */
  display: block;
}
.work-content {
  display: flex;
  gap: 0px;
}

/* DEFAULT: stack text normally */
.work-content:not(:has(.work-side-images)) {
  flex-direction: column;
}


@media (max-width: 900px) {
  .work-content {
    flex-direction: column;
  }

  .work-side-images {
    flex-direction: row;
  }

  .work-side-images img {
    width: 180px;
    height: 120px;
  }
}

/* WORK CTA SECTION */
.work-cta {
  padding: 90px 8vw;
  text-align: center;
  border: 4px solid rgba(255, 255, 255, 0.3); /* slim white border */
  border-radius: 8px; /* optional: soft rounded corners */
  margin: -20px 60px 40px 60px; /* optional: spacing from content above/below */
}

.work-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 24px;
  color: #fff;
}

.work-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #fff;
  opacity: 0.85;
  line-height: 1.6;
}

/* CTA BUTTON */
.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;
}

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


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

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

