/* GLOBAL */
body {
    margin: 0;
    font-family: "Helvetica Neue", Verdana, sans-serif;
    color: #000;
}
:root {
  --header-h: 140px; /* desktop header height */
}

@media (max-width: 800px) {
  :root {
    --header-h: 92px; /* mobile header height */
  }
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVIGATION */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: transparent;
  z-index: 9999;
  transition: background 0.3s ease;
}
@media (min-width: 801px) {
  .nav {
    padding: 20px 40px;
  }
}

/* Desktop hover */
@media (min-width: 801px) {
  .header:hover { background: #fff; }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  color: #000;
}

.logo { display: flex; align-items: center; justify-content: center; }
.logo img { height: 100px; width: auto; }

/* Mobile menu hidden by default (desktop) */
.mobile-menu { display: none; transform: translateX(100%); }
.mobile-menu.open { transform: translateX(0); }

/* Hamburger hidden by default (desktop) */
.hamburger { display: none; }

/* MOBILE NAV + HAMBURGER */
@media (max-width: 800px) {
  .header { background: transparent !important; box-shadow: none; }

  .nav { padding: 12px 20px; }

  /* Hide desktop links on mobile */
  .nav-left, .nav-right { display: none !important; }

  /* Logo size on mobile */
  .logo img { height: 50px; }

  /* Hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 28px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 10000;
  }

  .hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #000; /* default on all pages */
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
  }

  /* Homepage only: white hamburger */
  body.home .hamburger span { background: #fff; }

  /* Turn into X */
  .hamburger.open span:nth-child(1) { transform: rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(20px); }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

  /* Homepage: black X when open */
  body.home .hamburger.open span { background: #000; }

  /* Fullscreen mobile menu (no top gap) */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9998;
  }

  .mobile-menu a {
    font-size: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 20px 0;
    color: #000;
  }

  .logo { position: relative; z-index: 10000; }
}
/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
}

.image-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* HEADLINE */
.headline {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 0 20px;
}
.headline h1 {
    font-size: 30px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.headline-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* INFO BLOCKS */
.info-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 10px 20px 0;
}

.block {
    flex: 1;
    min-width: 260px;
    background: #fff;
    padding: 28px 28px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.06);          /* softer border */
    box-shadow: 0 14px 30px rgba(0,0,0,0.04);    /* subtle depth */
}

.block h2 {
    font-size: 18px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: center;   /* ⭐ center only the headline */
}
.block p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}
/* CONTACT SECTION WITHOUT FORM */
.contact-section {
    padding: 80px 0 100px;
}

.contact-box {
    width: 90%;
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
}

.contact-box h2 {
    font-size: 24px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-sub {
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-email {
    display: inline-block;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    margin-top: 10px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.contact-email:hover {
    border-color: #000;
}
/* FOOTER */
.footer {
    background-image: url('/images/nav-bg.jpg'); /* same image as nav bar */
    background-size: cover;                     /* make it fill the footer */
    background-position: center;                /* center the image */
    background-repeat: no-repeat;
    display: flex;
    justify-content: space-between;
    padding: 40px;
}

.footer-left a {
    display: block;
    margin-bottom: 10px;
}

.footer-right a {
    color: #000;
    font-weight: bold;
}
/* PROJECT PAGE GALLERY LAYOUT */
.project-gallery {
    margin-top: 60px;
}


/* Creates a clean 2-column grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 20px;                              /* Space between images */
    max-width: 900px;                        /* Overall width of gallery */
    margin: 0 auto;                          /* Center the gallery */
}

/* Image styling */
.gallery-grid img {
    width: 100%;        /* fills the column */
    height: auto;       /* keeps aspect ratio */
    object-fit: cover;
}

/* Center the last image if there is an odd number */
.gallery-grid img:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;   /* makes it span both columns */
    justify-self: center;  /* centers it */
    max-width: 450px;      /* keeps it from becoming huge */
}
.project-page {
    padding: 0 20px;
}
.project-header {
    max-width: 800px;        /* keeps text from being too wide */
    margin: 0 auto 40px;     /* centers the whole block horizontally */
    text-align: center;      /* centers the text inside */
    padding: 0 20px;         /* optional for breathing room */
}
.values-section {
    background: #fafafa;           /* soft band behind everything */
    padding: 80px 0 90px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .info-blocks {
        flex-direction: column;
        gap: 18px;
    }
}
.project-likeit .gallery-grid img {
  max-width: 1000px;
}
/* ABOUT PAGE */
.about-page {
  padding: 40px 5vw 80px;
}

.about-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* left side: phone-style video */
.about-video-wrapper {
  flex: 0 0 360px;            /* width of the phone block on desktop */
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;       /* vertical phone ratio */
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* right side: text */
.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .about-layout {
    flex-direction: column;
    gap: 30px;
  }

  .about-page {
    padding: 30px 20px 60px;
  }

  .about-video-wrapper {
    flex: none;
  }

  .about-text {
    text-align: left;
  }
}
/* WORK OVERVIEW PAGE */
.work-page {
  padding: 40px 5vw 80px;
}

.work-header {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.work-header h1 {
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.work-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* WORK OVERVIEW PAGE — aligned grid */
.work-masonry {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 1000px) {
  .work-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .work-masonry {
    grid-template-columns: 1fr;
  }
}
.work-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

/* fixed frame size */
.work-card img,
.work-card video {
  width: 100%;
  aspect-ratio: 4 / 5;   /* exakt wie deine Bilder */
  object-fit: cover;
  display: block;
}
.work-card video {
  opacity: 1;
}

.work-card:hover video {
  opacity: 1;
}

.work-card:hover img {
  opacity: 1;
}

/* Hover feel */
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.09);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* Responsive: fewer columns on smaller screens */
@media (max-width: 1000px) {
  .work-masonry {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .work-masonry {
    column-count: 1;
  }

  .work-page {
    padding: 30px 20px 60px;
    margin-top: 130px;
  }
}

.work-overlay {
  position: absolute;
  inset: 0;                 /* füllt das Bild komplett */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: none;         /* kein weißer Hintergrund */
  pointer-events: none;     /* optional */
}

.work-overlay h2 {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #ffffff;
}

.work-overlay p {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
}

/* prevent fixed header from covering anchor targets */
#work, #apply, #contact {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

html {
  scroll-behavior: smooth;
}
.back-link {
  display: inline-block;
  margin: 40px auto 80px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.back-link:hover {
  border-color: #000;
}
/* APPLY / BECOME A MODEL PAGE */
.apply-page {
  margin-top: 150px;              /* below fixed nav */
  padding: 40px 5vw 80px;
}

.apply-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* LEFT IMAGE */
.apply-image {
  flex: 0 0 420px;
}

.apply-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

/* RIGHT TEXT */
.apply-text {
  flex: 1;
}

.apply-text h1 {
  font-size: 28px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.apply-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.apply-text ul {
  margin: 14px 0 18px 20px;
  padding: 0;
}

.apply-text li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.apply-email a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.apply-email a:hover {
  border-color: #000;
}

.apply-note {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .apply-layout {
    flex-direction: column;
    gap: 30px;
  }

  .apply-page {
    margin-top: 130px;
    padding: 30px 20px 60px;
  }
}
.project-likeit .gallery-grid {
  grid-template-columns: 1fr;   /* ❗ nur eine Spalte */
  max-width: 900px;             /* große Magazinbreite */
  gap: 80px;                    /* viel Luft zwischen Bildern */
}

.project-likeit .gallery-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
/* WATERDROP – clean grid, alle gleich groß */
.project-waterdrop .gallery-grid{
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
}

/* gleiche "frame"-Höhe für alle */
.project-waterdrop .gallery-grid img{
  width: 100%;
  aspect-ratio: 4 / 5;   /* stell das ein: 3/4, 1/1, 16/9 … */
  height: auto;
  object-fit: cover;     /* sorgt für gleichmäßige Kacheln */
  display: block;
}
/* =========================
   VIDEO PROJECT PAGE
   ========================= */


.project-video .project-video-section{
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.project-video .video-wrapper{
  width: 100%;
  max-width: 900px;       /* kleiner machen: 800px */
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.project-video .video-wrapper video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.project-video-section{
  display: flex !important;
  justify-content: center !important;
  padding: 0 20px !important;
}

.project-video-section .video-wrapper{
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
  aspect-ratio: 16 / 9 !important;
  background: #000 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.project-video-section .video-wrapper video{
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

.project-page,
.work-page,
.about-page,
.apply-page {
  margin-top: calc(var(--header-h) + 20px);
}

/* Make images never overflow */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   MOBILE NAV
   ========================= */

/* Even smaller phones */
@media (max-width: 420px) {
  .nav-left a,
  .nav-right a {
    margin: 0 8px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}
@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  /* Remove the "odd last image spans both" trick on mobile */
  .gallery-grid img:nth-last-child(1):nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    justify-self: stretch;
  }
}
html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
/* PROJECT GALLERY — uniform image sizes */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;   /* 👈 choose the look */
  object-fit: cover;     /* crops image to fit */
  display: block;
}
/* LIKE IT project — landscape / A4-ish */
.project-likeit .gallery-grid {
  grid-template-columns: 1fr;     /* single column (one image per row) */
  max-width: 1100px;             /* “magazine width”, adjust if you want */
  margin: 0 auto;
  gap: 40px;
}

.project-likeit .gallery-grid img {
  width: 100%;
  aspect-ratio: 297 / 210;       /* A4 landscape ratio */
  object-fit: cover;             /* crops to fit nicely */
  border-radius: 12px;           /* optional; remove if you want sharp */
}

@media (min-width: 801px) {
  .nav {
    padding: 20px 40px !important;
  }

  .nav-left,
  .nav-right {
    display: flex !important;
    align-items: center;
  }

  .nav-left a,
  .nav-right a {
    margin: 0 16px !important;
    font-size: 22px !important;
    font-weight: 340 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
  }

  .logo img {
    height: 100px !important;
  }
}
