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

html,
body {
  width: 100%;
  min-height: 100%;
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
}

body {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 40px 20px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.8) 100%),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.28) 42%,
      rgba(0, 0, 0, 0.42) 72%,
      rgba(0, 0, 0, 0.82) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 900px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translateY(7vh);
}

.hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 10px 35px rgba(0,0,0,0.45);
}

.subtitle {
  font-size: clamp(0.76rem, 1.25vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 34px;
  text-shadow: 0 8px 28px rgba(0,0,0,0.5);
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 188px;
  height: 50px;
  padding: 0 30px;

  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;

  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.17em;

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);

  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.discover-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;
  border-radius: 50%;

  color: #fff;
  text-decoration: none;
  font-size: 1.85rem;

  margin-bottom: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-link:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

.hero-email {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.95;
  color:#fff;
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

.delay-5 {
  animation-delay: 0.75s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .hero-content {
    transform: translateY(6vh);
  }

  .hero h1 {
    letter-spacing: 0.14em;
  }

  .subtitle {
    letter-spacing: 0.25em;
    margin-bottom: 30px;
  }

  .discover-btn {
    min-width: 170px;
    height: 48px;
    font-size: 0.84rem;
  }

  .instagram-link {
    width: 56px;
    height: 56px;
    font-size: 1.7rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    padding: 30px 18px;
  }

  .hero-content {
    transform: translateY(5vh);
  }

  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    letter-spacing: 0.09em;
    margin-bottom: 11px;
  }

  .subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.17em;
    margin-bottom: 25px;
  }

  .discover-btn {
    min-width: 152px;
    height: 45px;
    padding: 0 24px;
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    margin-bottom: 21px;
  }

  .instagram-link {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
    margin-bottom: 19px;
  }

  .hero-email {
    font-size: 0.64rem;
    letter-spacing: 0.13em;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-content {
    transform: translateY(4vh);
  }

  .hero h1 {
    letter-spacing: 0.07em;
  }

  .subtitle {
    letter-spacing: 0.12em;
  }

  .hero-email {
    letter-spacing: 0.08em;
  }
}