/* 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 {
  padding: 55px 0 30px;
  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;
}


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

/* Make the image pop on hover */
.work-image a img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.work-image a:hover img {
  transform: scale(1.05) translateY(-5px); /* slightly bigger & lifted */
  box-shadow: 0 20px 40px rgba(0,0,0,0.3); /* optional shadow for depth */
}


.work-text .cta-button {
  margin-top: 30px; /* adds space below paragraph */
}


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

@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: 900px) {
  .work-image {
    height: auto;       /* let content decide height */
    aspect-ratio: 16 / 9; /* keeps it cinematic but flexible */
  }

  .work-image img {
    height: 100%;
    object-fit: contain; /* no cropping */
  }
}
