/* ── HERO SZEKCIÓ ─────────────────────────────── */

.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px 24px;
}

.hero__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__flag-bar {
  display: flex;
  height: 4px;
  width: 44px;
  border-radius: 2px;
  overflow: hidden;
}

.hero__flag-bar span:nth-child(1) { flex: 1; background: #C8102E; }
.hero__flag-bar span:nth-child(2) { flex: 1; background: #fff; }
.hero__flag-bar span:nth-child(3) { flex: 1; background: #0B1F3A; border: 1px solid rgba(255,255,255,0.25); }

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(40px, 9vw, 66px);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.hero__title em {
  color: var(--red);
  font-style: normal;
}

.hero__sub {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ── TELEFONSZÁM GOMB ──────────────────────────── */
.hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,16,46,0.25);
}

.hero__tel:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.45);
}

.hero__tel:active {
  transform: scale(0.97) translateY(0);
  box-shadow: 0 2px 10px rgba(200,16,46,0.3);
}

.hero__tel-icon {
  font-size: 20px;
  line-height: 1;
}

.hero__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}
