/* hero.css */

.hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero__inner {
  padding: 70px 0;
}

.hero__title {
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.hero__text {
  margin-top: 22px;
  max-width: 820px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 0px;
  border: 1px solid var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.btn--dark {
  background: var(--accent);
  color: var(--accentText);
}

.btn--dark:hover {
  transform: translateY(-1px);
}

.btn--light {
  background: transparent;
  color: var(--text);
}

.btn--light:hover {
  background: var(--hover);
}

/* Resume button - hidden on desktop, visible on mobile */
.btn--resume {
  display: inline-flex;
}

/* Contact button - visible on desktop, hidden on mobile */
.btn--contact {
  display: inline-flex;
}

/* Mobile/Tablet behavior */
@media (max-width: 1000px) {
  .btn--contact {
    display: none; /* Hide Contact Me on mobile */
  }
}

/* Desktop behavior */
@media (min-width: 1001px) {
  .btn--resume {
    display: none; /* Hide Resume on desktop */
  }
}

/* ----------------------------------- */
/* ----------------------------------- */
/* HERO: animation (on load) */

.hero__inner {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease forwards;
}

.hero__title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease 0.2s forwards;
}

.hero__text {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease 0.4s forwards;
}

.hero__actions {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease 0.6s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
