* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;

  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  color: #222;
}

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  will-change: transform, opacity;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-title,
.hero-subtitle,
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-title.animate,
.hero-subtitle.animate,
.hero-buttons.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: 6rem;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4.8rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s, border 0.3s;
  border: none;
  text-decoration: none;
}

.primary {
  background: white;
  color: black;
  font-size: 1.5rem;
}

.primary:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.mouse {
  width: 4rem;
  height: 6rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  display: flex;
  justify-content: center;
}
.wheel {
  width: 1rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  margin-top: 0.5rem;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  letter-spacing: -0.5px;
}

.heading-tertiary {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  font-weight: 300;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
}

.grid {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 8rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;

  align-items: center;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.hidden {
  display: none !important;
}
