.hero {
  height: 100vh;
  background-image: url("../images/home.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
    line-height: 1;
    text-shadow: 0 5px 20px rgba(0,0,0,.35);
}

.hero-content .logo .bold {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 6px;
}

.hero-content .logo .light {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 200;
    color: #fff;
    letter-spacing: 8px;
    margin-top: -8px;
}

.hero-content p {
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 35px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
}

.btn-book {
  background: transparent;
  color: var(--white);
  padding: 16px 42px;
  border: 2px solid var(--white);
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.35s ease;
}

.btn-book:hover {
  background: var(--silver);
  border-color: var(--silver);
  color: var(--black);
  transform: translateY(-3px);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.scroll-down:hover {
  color: var(--white);
}

.scroll-down i {
  color: var(--silver);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(8px);
  }

  60% {
    transform: translateY(4px);
  }
}
