/* ── Fonts ── */
@font-face {
  font-family: 'PPFrama';
  src: url('../fonts/Frama/PP Frama - Regular v1.1/PPFrama-Regular.woff2') format('woff2'),
       url('../fonts/Frama/PP Frama - Regular v1.1/PPFrama-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'PPFrama';
  src: url('../fonts/Frama/PP Frama - Medium v1.1/PPFrama-Medium.woff2') format('woff2'),
       url('../fonts/Frama/PP Frama - Medium v1.1/PPFrama-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Miller Display';
  src: url('../fonts/Miller/Miller-Display.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Miller Display';
  src: url('../fonts/Miller/Miller-DisplayItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'PPFrama', 'Helvetica Neue', Arial, sans-serif;
  background-color: #7a8a80;
}

/* ── Page wrapper ── */
.page {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('../img/Bordenstapel_The_Table_Amsterdam_2_143a.jpg');
  background-color: rgba(0, 0, 0, 0.5);
  background-size: 100%;
  background-position: center;
  background-blend-mode: color;
  color: white;
  padding: 5%;
  gap: 50px;
}

/* Dark desaturated overlay to match design tone */
/* .page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(90, 100, 94, 0.45);
  z-index: 1;
} */

.logos_texts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15%;
  flex: 1;
  width: 100%;
  max-width: 1800px;
}
.logos_texts > * {
  width: 33.33%;
  object-fit: contain;
  text-align: end;
  font-family: 'Miller Dispaly';
  font-size: 30px;
  font-weight: 100;
  object-fit: contain;
  overflow: auto;
}

.logos_texts > img {
  /* flex-shrink: 1; */
  object-position: left;
}

.logos_texts > video {/* flex-shrink: 1; */}

.coming-soon {
  font-family: 'PPFrama';
  font-weight: 100;
  font-size: 24px;
  text-align: center;
}

/* ── Instagram button ── */
.instagram-btn {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-family: 'PPFrama', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 11px 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background-color: #F7F5F0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

/* ── Mobile ── */
@media (max-width: 768px) {

  .page {
    padding: 50px;
    background-size: cover;
    background-position-x: 100%;
  }

  .logos_texts {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }

  .logos_texts > * {
    width: 100%;
  }

  .logos_texts > img {
    object-position: center;
  }

  .logos_texts > video {
    height: 250px;
  }

  .coming-soon {
    /* font-size: 20px; */
  }

  .content {
    gap: 22px;
  }

  .instagram-btn {
    /* font-size: 14px; */
    padding: 10px 32px;
  }
}
