/* Through My Lens — book a shoot page. Same punk design language as the
   gallery and contact pages, but the backdrop motifs change: torn paper and
   white balls instead of grudge washes, red claw + red balls accents, and the
   red shards move to the left edge. */

@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/fonts/BebasNeue.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #c10000;
  --bebas: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
}

* { box-sizing: border-box; }

html { background: #050505; }

body {
  margin: 0;
  color: #fff;
  background: #050505;
  font-family: var(--bebas);
  overflow-x: hidden;
}

/* ---- Fixed backdrop, book-page motif mix ---- */

.fixed-art {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}

.fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fill-torepaper { opacity: 0.32; }
.fill-boules    { opacity: 0.75; }

.corner-grunge {
  position: absolute;
  left: -4%;
  top: -6%;
  width: 46%;
  opacity: 0.8;
}

.red-claw {
  position: absolute;
  left: 4%;
  bottom: -3%;
  width: 34%;
  opacity: 0.85;
  transform: rotate(3deg);
}

.red-balls {
  position: absolute;
  right: -6%;
  top: 22%;
  width: 30%;
  opacity: 0.8;
  transform: rotate(-10deg);
}

/* Shards live on the LEFT on this page (they sit right on the others) */
.red-shard { position: absolute; background: var(--red); opacity: 0.8; transform: rotate(24deg); }
.shard-one { width: 560px; height: 105px; left: -250px; bottom: 130px; }
.shard-two { width: 400px; height: 64px;  left: -190px; top: 160px; }

/* ---- Page ---- */

.book-page {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px 28px 30px;
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-mask { width: clamp(100px, 10vw, 160px); transform: rotate(-4deg); }
.home-mask img { display: block; width: 100%; filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.6)); }

/* Punk paper-cut GALLERY button (inline SVG in book.html) */
.gallery-link {
  width: clamp(200px, 20vw, 320px);
  transform: rotate(1.5deg);
}
.gallery-link svg { display: block; width: 100%; height: auto; overflow: visible; }
.gallery-link:focus { outline: none; }

/* ---- Title: red slab + green claw crashing under it ---- */

.title-block {
  position: relative;
  align-self: flex-start;
  margin-top: clamp(24px, 5vh, 60px);
}

.book-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(58px, 9vw, 140px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 18px 40px 8px;
  transform: rotate(-2deg);
  clip-path: polygon(1.2% 5%, 99% 0, 100% 93%, 0 100%);
  box-shadow: 8px 9px 0 rgba(0, 0, 0, 0.6);
}

.book-title::after { /* grunge wear, same as the contact title */
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/gallerypage/filling/remplissageGRUDGEwhite.png") center/160% auto;
  opacity: 0.5;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.green-claw {
  position: absolute;
  right: -70px;
  bottom: -26px;
  width: clamp(180px, 20vw, 320px);
  transform: rotate(-6deg);
  pointer-events: none;
}

.pitch {
  align-self: flex-start;
  margin: 26px 0 0 10px;
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #050505;
  background: #fff;
  padding: 8px 18px 6px;
  transform: rotate(-1deg);
  clip-path: polygon(1.5% 7%, 98% 0, 100% 88%, 0 100%);
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.55);
}

/* ---- Two columns: the form and the "work together" ad ---- */

.columns {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 5vw, 70px);
  margin-top: clamp(34px, 6vh, 70px);
}

/* The Formspree form on a white paper-cut panel */
.shoot-form {
  flex: 1 1 58%;
  min-width: 0;
  position: relative;
  background: #fff;
  color: #050505;
  padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 38px) clamp(22px, 3vw, 34px);
  transform: rotate(-1.2deg);
  clip-path: polygon(1.4% 1.8%, 98.8% 0, 100% 98%, 0.6% 100%);
  filter: drop-shadow(9px 10px 0 rgba(0, 0, 0, 0.6));
}

.field { display: block; margin-bottom: clamp(16px, 2.4vh, 26px); }

.field span {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  border: 4px solid #000;
  border-radius: 0;
  background: #fff;
  color: #050505;
  font-family: var(--bebas);
  font-size: clamp(18px, 1.6vw, 26px);
  letter-spacing: 1.2px;
  padding: 10px 14px 8px;
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.35);
  transform: rotate(-0.4deg);
  resize: vertical;
}

.field:nth-child(odd) input,
.field:nth-child(odd) textarea { transform: rotate(0.5deg); }

.field input::placeholder,
.field textarea::placeholder { color: #777; letter-spacing: 1.5px; }

.field input:focus,
.field textarea:focus { outline: 3px solid var(--red); outline-offset: 2px; }

/* Punk paper-cut SEND button — submit, so no chevron */
.send-btn {
  display: block;
  width: clamp(180px, 16vw, 250px);
  margin: 4px 0 0 auto;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform: rotate(1.4deg);
}
.send-btn svg { display: block; width: 100%; height: auto; overflow: visible; }
.send-btn:focus { outline: none; }

/* ---- "Work together" drawn ad column ---- */

.work-ad {
  flex: 1 1 36%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 3vh, 30px);
}

.wt-text {
  width: clamp(150px, 14vw, 220px);
  transform: rotate(-3deg);
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.6));
}

.wt-mask {
  width: clamp(220px, 22vw, 340px);
  align-self: flex-end;
  margin-top: -30px;
  transform: rotate(3deg);
  filter: drop-shadow(5px 6px 0 rgba(0, 0, 0, 0.6));
}

.reach-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vh, 20px);
}

.reach {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.reach-icon {
  width: clamp(46px, 4.4vw, 64px);
  filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.55));
}

.reach:nth-child(odd) .reach-icon  { transform: rotate(-4deg); }
.reach:nth-child(even) .reach-icon { transform: rotate(3deg); }

.reach-handle {
  font-size: clamp(20px, 1.8vw, 30px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #050505;
  background: #fff;
  padding: 6px 16px 4px;
  transform: rotate(-1deg);
  clip-path: polygon(2% 8%, 99% 0, 100% 90%, 0 100%);
  box-shadow: 4px 5px 0 rgba(0, 0, 0, 0.55);
}

.reach:nth-child(even) .reach-handle { transform: rotate(1.2deg); }

.wt-barcode {
  width: clamp(110px, 10vw, 160px);
  transform: rotate(-5deg);
  filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.55));
}

/* ---- Footer ---- */

footer {
  margin-top: auto;
  padding-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.speech { width: clamp(170px, 17vw, 260px); transform: rotate(-2deg); filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.55)); }
.framelife { width: clamp(110px, 11vw, 170px); transform: rotate(-4deg); filter: drop-shadow(4px 5px 0 rgba(0, 0, 0, 0.6)); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .columns { flex-direction: column; }
  .shoot-form, .work-ad { width: 100%; flex: none; }
  .wt-mask { align-self: flex-start; margin-top: 0; }
  .green-claw { right: -20px; width: 150px; }
  .gallery-link { width: 160px; }
}

/* ---- Mentions légales / RGPD link (below the footer) ---- */

.legal-row { text-align: center; padding-top: 22px; }
.legal-row a {
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.55;
  text-decoration: none;
}
