/* =========================================================
   Z-Mobil
   ========================================================= */

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/plus-jakarta-sans-v12-latin_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/plus-jakarta-sans-v12-latin_latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  src: url('assets/fonts/plus-jakarta-sans-v12-latin_latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/plus-jakarta-sans-v12-latin_latin-ext-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  src: url('assets/fonts/plus-jakarta-sans-v12-latin_latin-ext-800.woff2') format('woff2');
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --color-primary: #0066cc;
  --color-primary-hover: #0077ed;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f7;
  --color-text: #1f1f1f;
  --color-muted: #727272;
  --border: #d2d2d7;
  --radius: 12px;
  
  --primary: #0066cc;
  --primary-hover: #005bb8;
  --bg: #ffffff;
  --text: #1f1f1f;
  --muted: #6e6e73;
  --dark: #121214;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  
  --hero-primary: #0a84ff;
  --hero-text-soft: #5d6168;
  --radius-pill: 9999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  background: var(--color-primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, 1140px);
  margin-inline: auto;
}

/* --------------------------------------
   FEJLÉC ÉS MENÜ 
--------------------------------------- */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  padding: .75rem 1rem 0; 
}

.nav-container {
  position: relative;
  width: min(100%, 1100px);
  margin-inline: auto;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: .5rem .55rem .5rem 1.25rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.nav-container::before {
  content: ""; 
  position: absolute; 
  inset: 0; 
  z-index: -1; 
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .62), rgba(255, 255, 255, .36));
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  backdrop-filter: blur(22px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85), inset 0 0 0 1px rgba(0, 0, 0, .04);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-container::before, .nav-menu { background: rgba(255, 255, 255, .96); }
}

.nav-logo img { 
  height: 34px; 
  width: auto; 
  border-radius: 0; 
}

.nav-menu { 
  display: flex; 
  align-items: center; 
  gap: .25rem; 
  list-style: none; 
}

.nav-menu a {
  display: inline-flex; 
  align-items: center; 
  gap: .5rem;
  padding: .5rem .85rem; 
  border-radius: 999px;
  color: var(--muted); 
  font-size: .95rem; 
  font-weight: 500; 
  text-decoration: none;
  transition: color .2s, background .2s;
}

.nav-menu a:hover { 
  color: var(--primary); 
  background: rgba(0, 102, 204, .08); 
}

.nav-ico, .nav-chev, .nav-text small { 
  display: none; 
}

.nav-social .nav-ico { 
  display: inline-flex; 
  color: inherit; 
}

.nav-social a { 
  padding: .5rem; 
}

.nav-social a:hover svg { 
  transform: scale(1.1); 
}

.nav-social svg { 
  transition: transform .2s; 
}

.nav-social .nav-text { 
  display: none; 
}

.nav-toggle {
  display: none; 
  position: relative;
  flex-direction: column; 
  justify-content: space-between;
  width: 24px; 
  height: 17px; 
  margin-right: .6rem;
  background: transparent; 
  border: none; 
  cursor: pointer; 
  padding: 0;
}

.nav-toggle::after { 
  content: ""; 
  position: absolute; 
  inset: -14px; 
}

.nav-toggle span { 
  display: block; 
  height: 2px; 
  width: 100%; 
  background: var(--muted); 
  border-radius: 2px; 
  transition: transform .3s, opacity .3s; 
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------
   HERO SZEKCIÓ 
--------------------------------------- */
.hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h));
  min-height: min(880px, calc(100svh - 12px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 112px) 24px 56px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 31%, rgba(10,132,255,0.075), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10,132,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(10,132,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.34), transparent 58%);
  pointer-events: none;
}

.hero-glow { 
  position: absolute; 
  border-radius: 50%; 
  filter: blur(2px); 
  pointer-events: none; 
  z-index: -1; 
}

.hero-glow-a { 
  width: 440px; 
  height: 440px; 
  top: -170px; 
  right: -130px; 
  background: rgba(10,132,255,0.07); 
}

.hero-glow-b { 
  width: 360px; 
  height: 360px; 
  left: -170px; 
  bottom: -190px; 
  background: rgba(116,173,255,0.055); 
}

.hero-content { 
  position: relative; 
  z-index: 1; 
  width: min(100%, 1120px); 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 13px;
  border: 1px solid rgba(10,132,255,.13);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.58);
  color: #6b7078;
  font-size: .72rem;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.badge-dot { 
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: var(--hero-primary); 
  box-shadow: 0 0 0 5px rgba(10,132,255,.08); 
}

.hero-title {
  margin: 0 0 26px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .24em;
  white-space: nowrap;
  line-height: .96;
  letter-spacing: -.055em;
}

.title-top { 
  font-size: clamp(64px, 7vw, 104px); 
  font-weight: 500; 
  color: #17191c; 
}

.title-bottom { 
  font-size: clamp(82px, 8.8vw, 132px); 
  font-weight: 800; 
  color: var(--hero-primary); 
  letter-spacing: -.035em; 
}

.hero-desc {
  width: min(100%, 720px);
  margin: 0 auto 32px;
  color: var(--hero-text-soft);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions { 
  display: flex; 
  justify-content: center; 
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 22px 0 20px;
  border: 1px solid rgba(10,132,255,.28);
  border-radius: var(--radius-pill);
  color: var(--hero-primary);
  background: rgba(255,255,255,.68);
  box-shadow: 0 10px 28px rgba(10,132,255,.09), inset 0 1px 0 rgba(255,255,255,.9);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-hero:hover { 
  transform: translateY(-2px); 
  background: rgba(255,255,255,.86); 
  box-shadow: 0 14px 34px rgba(10,132,255,.14); 
}

.btn-hero:active { 
  transform: translateY(0); 
}

.btn-arrow { 
  transition: transform .2s ease; 
}

.btn-hero:hover .btn-arrow { 
  transform: translateX(2px); 
}

.scroll-cue { 
  margin-top: 48px; 
}

.scroll-cue a { 
  display: inline-flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 6px; 
  color: #969ba3; 
  text-decoration: none; 
  font-size: .67rem; 
  font-weight: 700; 
  letter-spacing: .12em; 
  text-transform: uppercase; 
}

.scroll-cue svg { 
  animation: bounce 2.2s infinite ease-in-out; 
}

@keyframes bounce { 
  0%,100%{ transform:translateY(0); opacity:.8; } 
  50%{ transform:translateY(6px); opacity:1; } 
}

/* --------------------------------------
   GOMBOK ÉS SZEKCIÓK
--------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--color-primary) 28%, transparent);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--color-primary) 36%, transparent);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary) !important;
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff !important;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.split-row {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.bg-alt {
  background-color: var(--color-bg-alt);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.section-tag {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.6rem;
}

.split-text h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.split-lead {
  font-size: 1.05rem;
  color: #3a3a3c;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.94rem;
  color: #1d1d1f;
  line-height: 1.45;
}

.service-points svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.split-media img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.phone-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-media::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-primary) 18%, transparent) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.phone-media img {
  position: relative;
  z-index: 1;
  max-height: 360px;
  width: auto;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 25px rgba(0, 0, 0, 0.15));
}

@media (min-width: 769px) {
  .split-row.reverse .split-media {
    order: -1;
  }
}

/* --------------------------------------
   KAPCSOLAT ÉS LÁBLÉC
--------------------------------------- */
.contact-section {
  background-color: #121214;
  color: #f5f5f7;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-tag { color: #60a5fa !important; }

.contact-info h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 0.35rem;
}

.contact-sub {
  color: #a1a1a6;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.hours-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  max-width: 420px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: #d1d1d6; }
.hours-row .time { font-weight: 600; color: #60a5fa; }
.hours-row .closed { color: #f87171; }

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e5e5ea;
}

.contact-details li small {
  color: #8e8e93;
  margin-left: 0.25rem;
}

.contact-details svg {
  color: #60a5fa;
  flex-shrink: 0;
}

.contact-details a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details a:hover { color: #60a5fa; }

.btn-maps {
  gap: 0.5rem;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-maps:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.store-media img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45) !important;
}

.site-footer {
  background-color: #111112;
  border-top: 1px solid #2d2d2f;
  padding-block: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  color: #86868b;
}

.site-footer a { color: #a1a1a6; text-decoration: none; }
.site-footer a:hover { color: #fff; }

/* --------------------------------------
   MOBIL NÉZET
--------------------------------------- */
@media (max-width: 768px) {
  
  :root { --header-h: 66px; }
  .nav-toggle { display: flex; }
  .nav-container { transition: box-shadow .25s; }
  .nav-container::before {
    background: rgba(255, 255, 255, .55);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    backdrop-filter: blur(24px) saturate(200%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
    transition: border-radius .3s var(--ease), border-color .3s;
  }
  .nav-container.is-open { box-shadow: none; }
  .nav-container.is-open::before { 
    border-bottom-left-radius: 0; 
    border-bottom-right-radius: 0; 
    border-bottom-color: transparent; 
  }
  
  .nav-menu {
    position: absolute; 
    top: 100%; 
    left: 0; 
    right: 0;
    flex-direction: column; 
    align-items: stretch; 
    gap: .2rem;
    padding: .7rem .6rem .6rem; 
    border-radius: 0 0 20px 20px;
    background: rgba(255, 255, 255, .55);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    backdrop-filter: blur(24px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, .7); 
    border-top: 0;
    box-shadow: 0 24px 48px rgba(0, 0, 0, .14);
    opacity: 0; 
    visibility: hidden; 
    clip-path: inset(0 -40px 100% -40px);
    transition: opacity .2s, clip-path .3s var(--ease), visibility 0s .3s;
  }
  .nav-menu.open { 
    opacity: 1; 
    visibility: visible; 
    clip-path: inset(0 -40px -80px -40px); 
    transition-delay: 0s; 
  }
  .nav-menu::before { 
    content: ""; 
    position: absolute; 
    top: 0; 
    left: 1.1rem; 
    right: 1.1rem; 
    height: 1px; 
    background: rgba(0, 0, 0, .08); 
  }

  .nav-menu a { 
    display: flex; 
    width: 100%; 
    gap: .85rem; 
    padding: .7rem; 
    border-radius: 16px; 
    font-size: 1rem; 
    color: var(--text); 
  }
  .nav-menu a:hover, .nav-menu a:active { 
    background: rgba(0, 102, 204, .08); 
    color: var(--text); 
  }

  .nav-menu .nav-ico { 
    display: grid; 
    place-items: center; 
    flex: none; 
    width: 44px; 
    height: 44px; 
    border-radius: 13px; 
    background: rgba(0, 102, 204, .1); 
    color: var(--primary); 
  }
  .nav-menu .nav-text { 
    display: flex; 
    flex-direction: column; 
    flex: 1; 
    line-height: 1.25; 
  }
  .nav-menu .nav-text b { font-weight: 600; }
  .nav-menu .nav-text small { 
    display: block; 
    margin-top: 2px; 
    font-size: .82rem; 
    font-weight: 400; 
    color: var(--muted); 
  }
  .nav-menu .nav-chev { 
    display: block; 
    flex: none; 
    margin-left: auto; 
    color: #b0b0b8; 
  }

  .hero {
    min-height: calc(100svh - 10px); 
    padding: calc(var(--header-h) + 100px) 18px 28px;
  }
  .hero::before { 
    background-size: 38px 38px; 
    opacity: .65; 
  }
  .hero-content { 
    width: min(100%, 430px); 
    margin: 0 auto; 
  }
  .hero-badge { 
    margin-bottom: 22px; 
    font-size: .63rem; 
    letter-spacing: .12em; 
  }
  .hero-title { 
    flex-direction: column; 
    align-items: center; 
    gap: 0; 
    white-space: normal; 
    margin-bottom: 23px; 
  }
  .title-top { 
    font-size: clamp(48px, 15vw, 66px); 
    letter-spacing: -.065em; 
  }
  .title-bottom { 
    font-size: clamp(68px, 22vw, 94px); 
    letter-spacing: -.045em; 
    color: var(--hero-primary); 
  }
  .hero-desc { 
    max-width: 330px; 
    margin-bottom: 27px; 
    font-size: .95rem; 
    line-height: 1.62; 
  }
  .hero-actions {
    margin-top: 25px; 
    margin-bottom: 10px;
  }
  .btn-hero { 
    min-height: 52px; 
    padding-inline: 19px; 
  }
  .scroll-cue { 
    margin-top: auto; 
    padding-top: 44px; 
  }
  .scroll-cue a { font-size: .61rem; }

  .split-row { padding-block: 2.75rem; }
  .split-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .split-text { text-align: center; }
  .split-text .section-tag { display: inline-block; }
  .split-text h2 { font-size: clamp(2rem, 9vw, 2.75rem); letter-spacing: -0.03em; }
  .split-lead { text-align: center; max-width: 480px; margin-inline: auto; margin-bottom: 1.5rem; }
  .service-points { 
    display: inline-flex; 
    flex-direction: column; 
    margin-inline: auto; 
    text-align: left; 
    max-width: 360px; 
  }
  .btn-group { justify-content: center; }
  .split-media { order: 2; }
  .phone-media img { max-height: 250px; }
  .phone-media::before { width: 180px; height: 180px; }
  
  /* Kapcsolat szekció mobil középre igazítása */
  .contact-info { 
    text-align: center; 
  }
  .contact-tag { 
    display: flex;
    justify-content: center; 
  }
  .contact-actions { 
    display: flex; 
    justify-content: center; 
    width: 100%;
  }
  .hours-card {
    margin-inline: auto;
  }
  .contact-details { 
    width: fit-content;
    margin-inline: auto; 
    text-align: left;
  }
}