/*
 * overrides.css – Design korrekciók
 * Kerekítés csökkentése + section-label újratervezés
 */

/* ── Desktop alap betűméret ──────────────────────────────── */
@media (min-width: 1024px) {
  html { font-size: 18px; }
}

/* ── CSS változók felülírása ──────────────────────────────── */
:root {
  --r-lg:  6px;
  --r-md:  5px;
  --r-sm:  4px;
  --r-xs:  3px;
}

/* ── Kártyák, dobozok – kevésbé kerek ────────────────────── */
.card,
.contact-info-card,
.review-card,
.usp-item,
.info-list,
.price-wrap,
.price-table,
.price-table thead tr:first-child th:first-child,
.price-table thead tr:first-child th:last-child,
.alert,
.trust-strip,
.hero__img-badge,
.hero-slide__stats,
.stat-box,
.floating-phone {
  border-radius: 6px;
}

.form-control,
.form-control:focus,
select.form-control,
textarea.form-control {
  border-radius: 5px;
}

.btn,
.btn-primary,
.btn-ghost,
.btn-lg,
.btn-full {
  border-radius: 6px;
}

.review-avatar,
.reviews-summary__score {
  border-radius: 8px;
}

/* pill-szerű elemek – megtartjuk kicsit kereknek, de nem 100px */
.section-badge,
.breadcrumb,
.hero__img-badge {
  border-radius: 6px;
}

/* ── Section label → title közti rés nullázása ────────────── */
.section-label + h2,
.section-label + .section-title {
  margin-top: .5rem;
}

/* ── Section label – pill helyett egyszerű felirat ───────── */
.section-label {
  display: inline-block;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--green-600) !important;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: .9rem;
}


/* Sötét hátterű szekciókon */
.section--dark .section-label,
.cta-banner .section-label,
.hero-slide .section-label {
  color: var(--green-400) !important;
}

/* ── Sötét szekció – minden szöveges elem fehér ──────────── */
.section--dark p,
.section--dark li,
.section--dark .content-body,
.section--dark .content-body p,
.section--dark .content-body ul,
.section--dark .content-body li {
  color: rgba(255, 255, 255, .75) !important;
}

.section--dark strong,
.section--dark b,
.section--dark .content-body strong,
.section--dark .content-body b {
  color: #fff !important;
}

.section--dark a,
.section--dark .content-body a {
  color: var(--green-400) !important;
}

/* ── Desktop dropdown – csak asztali gépeken, hover-re nyílik */
@media (min-width: 768px) {
  .nav-links .has-dropdown { position: relative; }

  .nav-links .nav-dropdown {
    display: block !important;
    top: 100%;
    padding-top: .75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    pointer-events: none;
  }

  .nav-links .has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ── Aloldalak page-hero – kép + gradiens külön rétegen (mint index hero) */
.page-hero {
  background-color: var(--dark);
  background-image: url('../img/transzfer-sopronban.jpg');
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
}
/* ::after = gradient overlay, pontosan mint .hero-slide__gradient az indexen */
.page-hero::after {
  background: linear-gradient(
    to right,
    rgba(13,27,42,.97) 0%,
    rgba(13,27,42,.88) 28%,
    rgba(13,27,42,.55) 52%,
    rgba(13,27,42,.12) 72%,
    transparent        100%
  );
}

/* ── Contact form – nincs doboz/keret/háttér ─────────────── */
.contact-form {
  border: none !important;
  background: transparent !important;
  padding-left: 0;
  padding-right: 0;
}

/* ── Contact wrap – email nem lóg ki (szélesebb sidebar) ──── */
@media (min-width: 768px) {
  .contact-wrap { grid-template-columns: minmax(0,1fr) 360px; }
}

/* ── Szekció padding – globális csökkentés ───────────────── */
.section       { padding: 3.5rem 0; }
.section--sm   { padding: 2rem 0; }
.section-head  { margin-bottom: 2rem; }

@media (max-width: 767px) {
  .section      { padding: 2.5rem 0; }
  .section--sm  { padding: 1.5rem 0; }
  .section-head { margin-bottom: 1.5rem; }
}

/* ── Szekció padding csökkentése hero/trust-strip után ───── */
.page-hero + .section,
.page-hero + .trust-strip + .section,
.page-hero + .section.section--bg,
.page-hero + .trust-strip + .section.section--bg {
  padding-top: 3rem;
}

/* ── Stats-band – kisebb méret ───────────────────────────── */
.stats-band {
  padding: 1.75rem 0;
}
.stat-box__num {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.stat-box__label {
  font-size: .875rem;
  margin-top: .3rem;
}
.stat-box__label::before {
  content: '✓\00a0';
  color: var(--green-500);
  opacity: .55;
  font-size: .8em;
}

/* ── Trust-strip – stats-band stílus (sötét, lime border) minden képernyőn */
.trust-strip {
  background: var(--dark-2);
  border-top-color: rgba(150,214,8,.15);
  border-bottom-color: rgba(150,214,8,.15);
}
.trust-item {
  color: var(--green-400);
  font-weight: 600;
}
.trust-item::before {
  content: '✓';
  margin-right: .45em;
  opacity: .5;
}

/* mobilon oszlopban, balra zárt */
@media (max-width: 767px) {
  .trust-strip .container {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
  .trust-item { white-space: normal; }
}

/* ── FAQ kérdés gomb – alapértelmezett szín, ne legyen kék ── */
.faq-question {
  color: var(--text);
}

/* ── Footer brand – mobilon teljes szélesség ─────────────── */
@media (max-width: 767px) {
  .footer-brand p { max-width: 100%; }
}

/* ── Dark gradiens szekció – hero színvilág, újrafelhasználható */
.section--dark-grad {
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 0% 50%,  rgba(150,214,8,.13) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 100% 20%, rgba(150,214,8,.06) 0%, transparent 60%);
}

/* ── Info-row icon – dark szekcióban csak pipa, nincs doboz ─ */
.section--dark .info-row__icon {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--green-400) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
