/* ========================================
   HERO SECTION
======================================== */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: url('../images/tnthome.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
}

.eyebrow {
  color: #ffd1a0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.82rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  margin: 14px 0 18px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: 160px;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 3;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--green);
}

@media (max-width: 850px) {
  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}