/* ===========================
   Hero Section
   =========================== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #a38565 0%, #8b7355 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Image */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  filter: brightness(1);
}

/* Overlay */
.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(43 41 39 / 85%) 0%,
    rgb(0 0 0 / 75%) 100%
  );
  z-index: 1;
}

/* Hero Text Container */
.hero-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem;
  text-align: center;
  animation: fadeInUp 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text .container {
  /* max-width: 800px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: normal;
  gap: 0;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
}

/* Hero Title */
.hero-title {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s backwards;
  max-width: 700px;
  text-align: left;
}

/* Hero Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: white;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s backwards;
  /* margin: 0 auto; */
  margin-top: 2rem;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background-color: var(--primary-color);
}

.hero-btn svg {
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(5px);
}

/* Scroll Indicator */
.hero::after {
  content: "";
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  z-index: 4;
  animation: scrollDown 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 500px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    width: 100%;
  }

  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 30px;
    margin: 0 0.75rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .hero-image {
    left: -75%;
    width: auto;
    height: 100%;
  }

  .hero-btn {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  .hero::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 398px;
  }

  .hero-subtitle {
    font-size: 0.7rem;
  }

  .hero-subtitle::before,
  .hero-subtitle::after {
    width: 20px;
    margin: 0 0.5rem;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .hero-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    /* width: 100%; */
  }
}
