/* Hero Section */
.hero {
  padding: 9rem 5% 3rem;
  /* Top padding increased due to fixed header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 1504px;
  margin: 0 auto;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__greeting {
  font-family: var(--font-family-heading);
  background-color: var(--color-yellow-600);
  color: var(--color-neutral-1400);
  padding: 0rem 0.75rem;
  font-size: 2rem;
  font-weight: var(--font-weight-regular);
  margin-bottom: 1rem;
  display: inline-block;
}

.hero__title {
  font-size: 3.75rem;
  line-height: 1.1;
  color: var(--color-neutral-100);
  font-weight: var(--font-weight-medium);
  letter-spacing: -0.03em;
}

.hero__title strong {
  color: var(--color-neutral-100);
  font-weight: var(--font-weight-medium);
}

.text-gray {
  color: var(--color-neutral-500);
}

/* ID Card Component */
.hero__image-wrapper {
  flex: 0 0 auto;
  width: 450px;
  display: flex;
  justify-content: center;
}

.id-card {
  background-color: var(--color-yellowbg-200);
  border: 3px solid var(--color-neutral-200);
  border-radius: 1.5rem;
  width: 100%;
  box-shadow: var(--box-shadow-large);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-body);
  transition: all 0.3s ease;
}

.id-card:hover {
  box-shadow: 12px 12px 0px 0px var(--color-neutral-200);
  transition: all 0.2s ease;
  transform: translate(-4px, -4px);
}

.id-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.id-card__dots {
  display: flex;
  gap: 0.5rem;
}



.id-card__registry {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.id-card__registry-title {
  font-size: 0.65rem;
  font-weight: var(--font-weight-black);
  color: var(--color-neutral-500);
  letter-spacing: 0.05em;
}

.id-card__registry-code {
  font-size: 0.75rem;
  font-weight: var(--font-weight-black);
  color: var(--color-neutral-200);
}

.id-card__divider {
  border: none;
  border-top: 3px solid var(--color-neutral-200);
  margin: 0;
}

.id-card__body {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.id-card__photo {
  width: 100%;
  border-radius: 0.75rem;
  border: 3px solid var(--color-neutral-200);
  object-fit: cover;
  aspect-ratio: 1/1;
  box-shadow: var(--box-shadow-xsmall);
  filter: grayscale(100%) contrast(125%);
  transition: all 0.5s ease;
}

.id-card:hover .id-card__photo {
  filter: grayscale(0%) contrast(100%);
}

.id-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
}

.id-card__status,
.id-card__year {
  font-size: 0.8rem;
  color: var(--color-neutral-500);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}

.id-card__status strong,
.id-card__year strong {
  color: var(--color-neutral-100);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    gap: 2rem;
    padding: 8rem 5% 3rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__image-wrapper {
    width: 380px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 6rem 5% 2rem;
  }

  .hero__content {
    align-items: center;
  }

  .hero__greeting {
    font-size: 1.5rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__image-wrapper {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5.5rem 5% 1.5rem;
  }

  .hero__greeting {
    font-size: 1.25rem;
    padding: 0 0.5rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__image-wrapper {
    max-width: 280px;
  }
}