/* =========================================================
   LYNCH — style.css
   Self-contained: does not share styles with the main site.
   ========================================================= */

@font-face {
  font-family: "Advercase";
  src: url("fonts/AdvercaseFont-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Monument Normal";
  src: url("fonts/PPMonumentNormal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cream: #F4EADA;
  --ink: #2A2C2F;
  --orange: #FF5623;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  font-family: "PP Monument Normal", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.stage {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* -- decorative blobs, behind everything -- */
.blob-strip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  width: clamp(700px, 78vw, 1140px);
}
.blob-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.eye-icon {
  position: absolute;
  top: clamp(70px, 12vh, 130px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(34px, 3.6vw, 48px);
  z-index: 3;
  pointer-events: none;
}

/* -- the photo itself is now the card; text/buttons sit on top of it -- */
.photo-frame {
  position: relative;
  z-index: 2;
  width: clamp(280px, 43vw, 650px);
  aspect-ratio: 828 / 624;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* soft scrims so light-colored photos still keep text legible */
.photo-frame::before,
.photo-frame::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}
.photo-frame::before {
  top: 0;
  height: 42%;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
}
.photo-frame::after {
  bottom: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0));
}

.headline {
  position: absolute;
  top: 15%;
  left: clamp(16px, 4vw, 48px);
  right: clamp(16px, 4vw, 48px);
  z-index: 2;
  font-family: "Advercase", serif;
  color: var(--cream);
  font-size: clamp(1rem, 1.9vw, 1.4rem);
  line-height: 1.28;
  text-align: center;
  white-space: pre-line;
  margin: 0;
}
.headline--large {
  top: 7%;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.15;
}

.options {
  position: absolute;
  bottom: clamp(16px, 3.6vh, 36px);
  left: clamp(16px, 4vw, 48px);
  right: clamp(16px, 4vw, 48px);
  z-index: 2;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  font-family: "PP Monument Normal", sans-serif;
  font-size: .95rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color .25s ease;
}
.btn:hover,
.btn:focus-visible {
  background: var(--orange);
}

.signature {
  position: absolute;
  bottom: clamp(10px, 2vh, 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin: 0;
  font-size: .68rem;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}

/* -- small screens: keep everything on one screen, just tighten up -- */
@media (max-width: 640px), (max-height: 700px) {
  .headline {
    font-size: clamp(.62rem, 2.8vw, .8rem);
    top: 13%;
    left: 10px;
    right: 10px;
    line-height: 1.2;
  }
  .headline--large {
    top: 6%;
    font-size: clamp(.85rem, 4.2vw, 1.15rem);
    line-height: 1.15;
  }
  .options { gap: 14px; bottom: 12px; }
  .btn { padding: 8px 14px; font-size: .75rem; }
  .eye-icon { width: 24px; top: clamp(150px, 27vh, 240px); }
  .signature { font-size: .6rem; bottom: 6px; }
}
