.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(56, 34, 15, 0.7), rgba(99, 72, 50, 0.7)), url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
}

.hero-content {
  text-align: center;
  color: var(--color-01);
  max-width: 900px;
  padding: 0 30px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-02);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--color-01);
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--color-02);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.9s forwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.2s forwards;
}

.btn {
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-03);
  color: var(--color-01);
  border-color: var(--color-03);
}

.btn-primary:hover {
  background-color: var(--color-04);
  border-color: var(--color-04);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-01);
  border-color: var(--color-01);
}

.btn-secondary:hover {
  background-color: var(--color-01);
  color: var(--color-05);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Tablet */
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-description {
    font-size: 18px;
  }

  .btn {
    padding: 15px 35px;
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }
}