@font-face {
  font-family: 'HeadlineFont';
  src: url('fonts/headline.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BoldFont';
  src: url('fonts/bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ButtonFont';
  src: url('fonts/button.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 4vw 4vw 3vw;
  text-align: center;
}

.headline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'HeadlineFont', sans-serif;
  font-weight: 300;
  font-size: 8vw;
  line-height: 1.1;
  max-width: 95%;
  text-align: center;  
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.identity {
  color: #fff;
  text-align: center;
}

.name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.arrow-icon {
  width: clamp(20px, 2.2vw, 32px);
  height: clamp(20px, 2.2vw, 32px);
  color: #fff;
  transform: rotate(-45deg);
}

.name {
  font-family: 'BoldFont', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
}

.title {
  font-family: 'BoldFont', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.7vw, 1.4rem);
  margin-top: 0.4rem;
}

.book-now {
  font-family: 'ButtonFont', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgb(13, 189, 173);
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.book-now:hover {
  opacity: 0.85;
}

@media (max-width: 700px) {
  html, body {
    overflow: auto;
  }
  .hero {
    height: 100svh;
  }
  .headline {
    font-size: 10vw;
  }
}
