/* 1) Font locale */
@font-face {
  font-family: 'Birds of Paradise';
  src: url('fonts/Birds of Paradise.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 2) Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #fff;
  overflow-x: hidden;
}

/* 3) Sidebar testuale */
.sidebar-text {
  position: relative;
  top: 50vh;
  left: 5%;
  width: 30%;
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #000;
  z-index: 1;
}

/* 4) Testo principale */
.text-wrapper {
  position: relative;
  width: 100%;
  height: calc(100vh - 5rem - 1.5cm);
  z-index: 1;
}

.line {
  position: absolute;
  font-family: 'Birds of Paradise', serif;
  font-size: 11vw;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
.line1 { top: 10vh; left: 25%; }
.line2 { top: 35vh; left: 55%; }
.line3 { top: 60vh; left: 40%; }

/* Video “peek” con margine 5cm, poi expand on scroll a 0 */
.video-container {
  width: calc(100% - 10cm);    /* 5cm sx + 5cm dx */
  margin: 0 5cm;
  height: 1.5cm;               /* altezza iniziale */
  overflow: hidden;
  transition:
    height 0.6s ease,
    margin 0.6s ease,
    width 0.6s ease;
  margin-bottom: 1px;          /* abilita scroll */
}

.video-container.expanded {
  width: 100%;                 /* nessun margine */
  margin: 0;
  height: calc(100vh - 5rem);  /* espande fino sotto l’header */
}


#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
