/* ============================================================
   regimotorfelvasarlas.hu — Stylesheet
   ============================================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Spectral', Georgia, serif;
  color: #211913;
  background: #F2E6CE;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
[id] { scroll-margin-top: 88px; }
::selection { background: #B0421E; color: #F7EFDC; }

/* === LAYOUT === */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(10px, 1.8vw, 22px);
}
.container--narrow { max-width: 820px; }

/* === LOGO COLORS === */
.logo-dark { color: #211913; }
.logo-red  { color: #B0421E; }

/* ==========================================================
   NAV
   ========================================================== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242,230,206,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(33,25,19,0.16);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav-logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #7A6651;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-link {
  text-decoration: none;
  color: #4A3D30;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover { color: #211913; border-bottom-color: #CF9A33; }
.nav-cta {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B0421E;
  color: #F7EFDC;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  padding: 10px 18px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: #8F3417; }

/* Mobile controls (hidden on desktop) */
.nav-mobile-controls {
  display: none;
  align-items: center;
  gap: 10px;
}
.nav-mobile-call {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: #B0421E;
  color: #F7EFDC;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  padding: 9px 13px;
  border-radius: 2px;
}
.nav-hamburger {
  appearance: none;
  border: 1px solid rgba(33,25,19,0.25);
  background: transparent;
  width: 42px;
  height: 40px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #211913;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  border-top: 1px solid rgba(33,25,19,0.16);
  background: #F2E6CE;
  padding: 8px clamp(10px, 1.8vw, 22px) 16px;
}
.nav-drawer.is-open { display: block; }
.nav-drawer-link {
  display: block;
  text-decoration: none;
  color: #211913;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.03em;
  padding: 13px 0;
  border-bottom: 1px solid rgba(33,25,19,0.1);
}

/* ==========================================================
   MARQUEE
   ========================================================== */
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-wrap {
  background: #B0421E;
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F7EFDC;
  padding: 7px 40px 0 40px;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  background: radial-gradient(120% 90% at 50% -10%, #F7EFDC 0%, #F2E6CE 46%, #E9DAB9 100%);
  padding: clamp(56px, 9vw, 110px) 12px clamp(44px, 7vw, 84px);
  overflow: hidden;
}
.hero-inner {
  max-width: none;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 8px;
  overflow: hidden;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #8F6E3E;
  margin: 0;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 7.5vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  text-transform: uppercase;
}
.hero-desc {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: #4A3D30;
  max-width: 860px;
  margin: 26px auto 0;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}
.btn-primary {
  text-decoration: none;
  background: #B0421E;
  color: #F7EFDC;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  padding: 16px 30px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-primary:hover { background: #8F3417; }
.btn-outline {
  text-decoration: none;
  background: transparent;
  color: #211913;
  border: 1.5px solid #211913;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.03em;
  padding: 16px 30px;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: #211913; color: #F2E6CE; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: center;
  margin-top: 38px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5743;
}
.badge-sep { color: #CF9A33; }

/* ==========================================================
   SECTIONS
   ========================================================== */
.section { padding: clamp(56px, 8vw, 96px) clamp(10px, 1.8vw, 22px); }
.section--cream       { background: #F2E6CE; }
.section--cream-light { background: #FBF4E3; border-top: 1px solid rgba(33,25,19,0.1); }
.section--dark        { background: #211913; color: #F2E6CE; }

.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.section-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #B0421E;
}
.section-num--gold { color: #CF9A33; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0;
  color: #211913;
}
.section-title--light { color: #F2E6CE; }
.section-lead       { font-size: 1.1rem; color: #4A3D30; margin: 14px 0 0; }
.section-lead--muted { color: #C7B79A; }

/* ==========================================================
   MIT VESZEK — Cards
   ========================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.card {
  background: #F2E6CE;
  border: 1px solid rgba(33,25,19,0.12);
  border-radius: 4px;
  padding: 24px 22px;
}
.card-header { display: flex; align-items: baseline; gap: 12px; }
.card-num {
  flex: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #CF9A33;
  letter-spacing: 0.04em;
}
.card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  color: #211913;
}
.card-desc { font-size: 1rem; color: #4A3D30; margin: 12px 0 0; }

/* Conditions bar */
.conditions-bar {
  margin-top: 34px;
  background: #211913;
  color: #F2E6CE;
  border-radius: 4px;
  padding: 24px 26px;
}
.conditions-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #CF9A33;
  margin-bottom: 14px;
}
.conditions-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid rgba(242,230,206,0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Brands */
.brands-section { margin-top: 34px; }
.brands-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8F6E3E;
  margin-bottom: 14px;
}
.brands-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.brand-chip {
  background: #F2E6CE;
  border: 1px solid rgba(33,25,19,0.16);
  border-radius: 2px;
  padding: 8px 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  color: #3A2E22;
}
.brands-simson { font-size: 0.95rem; color: #7A6651; margin-top: 16px; font-style: italic; }

/* ==========================================================
   HOGYAN — Steps
   ========================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.step-card {
  background: #FBF4E3;
  border: 1px solid rgba(33,25,19,0.12);
  border-radius: 4px;
  padding: 26px 24px;
}
.step-header { display: flex; align-items: center; gap: 14px; }
.step-num {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #B0421E;
  color: #F7EFDC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.step-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 0;
  color: #211913;
}
.step-desc { font-size: 1rem; color: #4A3D30; margin: 16px 0 0; }

/* ==========================================================
   MIÉRT — Why cards
   ========================================================== */
.whys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.why-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242,230,206,0.18);
  border-radius: 4px;
  padding: 30px 24px 26px;
  background: rgba(242,230,206,0.03);
  min-height: 178px;
}
.why-icon {
  position: absolute;
  right: -10px;
  bottom: -22px;
  font-size: 124px;
  line-height: 1;
  opacity: 0.2;
  filter: grayscale(0.15);
  pointer-events: none;
  user-select: none;
}
.why-content { position: relative; }
.why-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #E9D8B4;
}
.why-desc { font-size: 0.98rem; color: #C7B79A; margin: 0; max-width: 90%; }

/* ==========================================================
   GYIK — FAQ
   ========================================================== */
.faq-list { margin-top: 32px; border-top: 1px solid rgba(33,25,19,0.16); }
.faq-item { border-bottom: 1px solid rgba(33,25,19,0.16); }
.faq-btn {
  appearance: none;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.faq-question {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  color: #211913;
}
.faq-sign {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #B0421E;
  flex: none;
  line-height: 1;
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.faq-answer.is-open { max-height: 300px; opacity: 1; }
.faq-answer p { font-size: 1.05rem; color: #4A3D30; margin: 0; padding: 0 0 22px; }

/* ==========================================================
   KAPCSOLAT
   ========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 40px;
  align-items: start;
}
.contact-box {
  background: #211913;
  color: #F2E6CE;
  border-radius: 4px;
  padding: 32px 30px;
}
.contact-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.contact-divider {
  border: none;
  height: 1px;
  background: rgba(242,230,206,0.18);
  margin: 22px 0;
}
.contact-rows { display: flex; flex-direction: column; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-icon {
  font-size: 19px;
  flex: none;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.contact-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #CF9A33;
}
.contact-value {
  color: #F2E6CE;
  text-decoration: none;
  font-size: 1.12rem;
  transition: color 0.15s;
  display: block;
}
.contact-value:hover { color: #E0742F; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.action-btn {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  padding: 15px;
  border-radius: 2px;
  transition: background 0.15s;
}
.action-btn--blue     { background: #1A56DB; }
.action-btn--blue:hover { background: #1445b5; }
.action-btn--viber    { background: #7360F2; }
.action-btn--viber:hover { background: #5b4bd4; }
.action-btn--whatsapp { background: #25D366; }
.action-btn--whatsapp:hover { background: #1aad52; }

/* Form box */
.form-box {
  background: #FBF4E3;
  border: 1px solid rgba(33,25,19,0.12);
  border-radius: 4px;
  padding: 32px 30px;
}
.form-success { text-align: center; padding: 30px 10px; }
.form-success-icon { font-size: 38px; }
.form-success h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 14px 0 8px;
  color: #211913;
}
.form-success p { color: #4A3D30; margin: 0 auto; max-width: 320px; }
.form-success a { color: #B0421E; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}
.form-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B5743;
}
.form-input {
  font-family: 'Spectral', serif;
  font-size: 16px;
  padding: 11px 13px;
  border: 1px solid rgba(33,25,19,0.25);
  border-radius: 2px;
  background: #F7EFDC;
  color: #211913;
  width: 100%;
}
.form-input:focus { outline: 2px solid #B0421E; outline-offset: 1px; }
.form-textarea { resize: vertical; }
.form-tip { font-size: 13px; color: #7A6651; font-style: italic; margin: 0; }
.form-tip a { color: #B0421E; }
.btn-submit {
  appearance: none;
  border: none;
  cursor: pointer;
  background: #B0421E;
  color: #F7EFDC;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  padding: 15px;
  border-radius: 2px;
  margin-top: 4px;
  transition: background 0.15s;
}
.btn-submit:hover { background: #8F3417; }
.field-error { display: block; color: #c62828 !important; font-size: 0.82rem; margin-top: 2px; font-weight: 500; }
input.field-invalid, textarea.field-invalid { border-color: #c62828 !important; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: #15100C; color: #C7B79A; padding: 46px clamp(10px, 1.8vw, 22px) 30px; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  color: #F2E6CE;
}
.footer-desc { font-size: 0.95rem; margin: 12px 0 0; }
.footer-contact { display: flex; gap: 14px; flex-direction: column; }
.footer-link {
  color: #F2E6CE;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
}
a.footer-link:hover { color: #E0742F; }
.footer-meta { color: #C7B79A; font-size: 0.95rem; }
.footer-copy {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(242,230,206,0.12);
  font-size: 0.85rem;
  color: #8C7B62;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 860px) {
  .nav-links          { display: none; }
  .nav-mobile-controls { display: flex; }
}
