/*
 Theme Name: Astra Child – Beauty
 Template: astra
 Version: 1.0.3
 Author: You
*/

/* ================== VÁLTOZÓK ================== */
:root{
  --brand:#DBBB6A;
  --brand-hover:#CDAA56;
  --brand-soft:rgba(219,187,106,.12);
  --text:#1f2937;
  --muted:#4b5563;
  --container:1200px;
}

/* ================== UTIL / ALAP ================== */
.container{ max-width:var(--container); margin-inline:auto; padding-inline:1rem }
.center{ text-align:center }
.mb-2{ margin-bottom:.5rem } .mb-4{ margin-bottom:1rem } .mb-12{ margin-bottom:3rem }
.card{ background:#fff; border-radius:.8rem; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.06) }
.card-body{ padding:1.5rem }
.aspect-video{ aspect-ratio:16/9; background:#eee }
.aspect-square{ aspect-ratio:1/1; background:#eee }
.bg-white{ background:#fff }
.bg-brand-soft{ background:var(--brand-soft) }
.muted{ color:#4b5563 }         /* ← FIX: nem halvány */
.lead{ color:#374151 }

/* ================== HERO ================== */
.hero{
  position: relative;
  padding: 6rem 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  min-height: 20vh;
}
.hero::before{ content:""; position:absolute; inset:0; background: rgba(255,255,255,.20); }
.hero .inner{ position: relative; max-width: 64rem; margin: 0 auto; text-align: center; }
.hero h1{ font-weight:300; font-size:clamp(2rem,5vw,3.5rem); color:#1f2937; margin:0 0 .7rem }
.hero .hl{ color:var(--brand); font-weight:600 }
.hero .lead{ color:#374151; font-size:clamp(1rem,1.4vw,1.125rem); max-width:42rem; margin:0 auto 1.5rem }
.cta-row{ display:flex; gap:.75rem; justify-content:center; margin-top:.5rem }

/* ================== GOMBOK ================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.9rem 1.4rem; border-radius:.6rem; font-weight:600; text-decoration:none;
  transition:.2s; line-height:1
}
.btn-primary{ background:var(--brand); color:#fff }
.btn-primary:hover{ background:var(--brand-hover) }
.btn-outline{ border:2px solid var(--brand); color:var(--brand); background:transparent }
.btn-outline:hover{ background:var(--brand-soft) }

/* ================== BRANDS (3 oszlop, arany háttér) ================== */
.brands-section{
  background: var(--brand-soft) !important;
  padding: 3.5rem 0 2.5rem;
}
.brands-title{
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  margin-bottom: .25rem;
}
.brand-grid{
  display:grid !important;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items:center;
  justify-items:center;
  margin: 2rem auto 0;
  width: 100%;
  max-width: var(--container);
}
@media (min-width:768px){
  .brand-grid{ grid-template-columns: repeat(3, minmax(0,1fr)) !important; }
}
.brand-card{
  width: 100%;
  max-width: 360px !important;
  height: 140px !important;
  padding: 16px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  display:flex !important;
  align-items:center;
  justify-content:center;
}
.brand-card img{
  max-width: 80% !important;
  max-height: 80% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  display: block;
  filter: grayscale(10%);
}

/* ================== GOOGLE REVIEWS ================== */
.reviews-section{
  background: #fff !important;
  padding: 3.5rem 0;
}
.reviews-section .container{ max-width:1000px; }
.reviews-section .ti-widget{ margin-top:1rem; }

/* ================== EREDMÉNYEINK (kompakt kártyák) ================== */
.ba{
  display:grid;
  gap: 24px;
  grid-template-columns: 1fr;
  justify-items: center;
}
@media (min-width: 992px){
  .ba{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}
.ba .card{
  width: 100%;
  max-width: 420px;
  padding: 12px;
  border-radius: 14px;
  box-shadow: 0 6px 26px rgba(0,0,0,.08);
}
.ba .aspect-square{
  height: 170px;
  background: #e5e7eb;
  border-radius: .6rem;
}
.ba h3{
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  margin: .6rem 0 .35rem;
}
.ba p.muted{ font-size: .95rem; }

/* ================== STICKY HEADER (Astra free) ================== */
:root{ --header-h: 84px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background:#fff;
  border-bottom: 1px solid rgba(0,0,0,.12);
  transition: box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  border-bottom-color: transparent;
}
@supports not (position: sticky){
  .site-header{ position: fixed; left:0; right:0; top:0; }
  body{ padding-top: var(--header-h); }
}
.admin-bar .site-header{ top: 32px; }
@media (max-width: 782px){
  .admin-bar .site-header{ top: 46px; }
}
header.site-header, #masthead{ overflow: visible !important; }

/* ================== FOOTER ================== */
.site-footer{
  position: relative;
  width: 100%;
  background: #0f1621;
  color: #e6edf5;
  padding-top: 0;  /* rés OFF */
  margin-top: 0;   /* rés OFF */
}
.site-footer a{ color:#DBBB6A; text-decoration:none; }
.site-footer a:hover{ color:#CDAA56; }

.site-footer .container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  align-items:flex-start;
}
@media (max-width:1024px){
  .footer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:640px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-col h4{
  font-weight:600;
  margin:0 0 10px;
  color:#fff;
}
.footer-logo{ height:48px; width:auto; margin-bottom:12px; }
.footer-text{ opacity:.85; line-height:1.6; max-width: 320px; }

.footer-links{ list-style:none; margin:0; padding:0; }
.footer-links li{ margin:.45rem 0; }
.footer-links a{ color:#e6edf5; opacity:.9; }
.footer-links a:hover{ color:#DBBB6A; opacity:1; }

.socials{ display:flex; gap:10px; margin-top:8px; }
.socials a{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
  color:#e6edf5;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:28px;
  padding:14px 0;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.footer-bottom-links a{ margin-left:18px; }
@media (max-width:640px){
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .footer-bottom-links a{ margin-left:0; margin-right:18px; }
}

/* Astra “small footer” ha aktív, rejtsük el (saját sablon mellett) */
.site-footer .ast-small-footer{ display:none !important; }

/* Trustindex reszponzív fix */
.reviews-section .ti-widget,
.reviews-section .ti-widget iframe,
.reviews-section .ti-widget > div { max-width: 100% !important; width: 100% !important; overflow-x: hidden; }
.reviews-section { padding-left: 1rem; padding-right: 1rem; }
.reviews-section .container, .reviews-section .ti-wrap { overflow: hidden; }
.reviews-section .ti-wrap .ti-widget,
.reviews-section .ti-wrap .ti-widget > div,
.reviews-section .ti-wrap .ti-widget > div > div { width: 100% !important; max-width: 100% !important; }
.reviews-section .ti-wrap .ti-widget-container,
.reviews-section .ti-wrap .ti-widget-container * { box-sizing: border-box; max-width: 100% !important; }
@media (max-width: 640px) {
  .reviews-section .ti-wrap .ti-widget [style*="transform"] { transform: none !important; }
  .reviews-section .ti-wrap .ti-widget [style*="margin-left"],
  .reviews-section .ti-wrap .ti-widget [style*="left"] { margin-left: 0 !important; left: 0 !important; }
  .reviews-section .ti-wrap .ti-widget [style*="width"] { width: 100% !important; max-width: 100% !important; }
}

/* iOS/Safari fix – az Előtte/Utána sor legyen biztosan 2 oszlop */
.ba .card .grid{ display: flex !important; gap: 1rem; }
.ba .card .grid > div{ flex: 1 1 0; min-width: 0; }
.ba .aspect-square{ position: relative; }
.ba .aspect-square::before{ content: ""; display: block; padding-top: 100%; }

/* ===== Lefor Kamilla aloldal – skóp: .kamilla-page ===== */
.kamilla-page { --accent:#7c3aed; --accent-soft:#f5f3ff; }
.kamilla-page .btn{display:inline-flex;align-items:center;justify-content:center;padding:.9rem 1.4rem;border-radius:.6rem;font-weight:600;text-decoration:none;transition:.2s;line-height:1}
.kamilla-page .btn-primary{background:var(--accent);color:#fff}
.kamilla-page .btn-primary:hover{background:#6d28d9}
.kamilla-page .btn-outline{border:2px solid var(--accent);color:var(--accent);background:transparent}
.kamilla-page .btn-outline:hover{background:var(--accent-soft)}
.kamilla-page .kp-h2{font-weight:300;font-size:clamp(1.8rem,3vw,2.3rem);color:#1f2937;margin:0 0 1rem}
.kamilla-page .center{text-align:center}

/* HERO */
.kamilla-page .kp-hero{padding:4rem 1rem;background:linear-gradient(to bottom,#faf5ff,#fff)}
.kamilla-page .kp-hero-grid{display:grid;gap:2rem;align-items:center}
@media(min-width:992px){.kamilla-page .kp-hero-grid{grid-template-columns:1.1fr .9fr}}
.kamilla-page .kp-ttl{font-weight:300;font-size:clamp(2rem,4vw,3rem);color:#111827;margin:0 0 .4rem}
.kamilla-page .kp-role{color:var(--accent);font-size:1.15rem;margin:0 0 .6rem}
.kamilla-page .kp-lead{color:#4b5563;max-width:48ch;margin-bottom:1rem}
.kamilla-page .kp-cta{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:.5rem}
.kamilla-page .kp-portrait{border-radius:1.2rem;overflow:hidden;background:linear-gradient(135deg,#e9d5ff,#c4b5fd)}
.kamilla-page .kp-portrait-img{aspect-ratio:1/1;background-size:cover;background-position:center}

/* STATOK */
.kamilla-page .kp-stats{padding:2rem 1rem;background:#fff}
.kamilla-page .kp-stats-grid{display:grid;gap:1.25rem;text-align:center}
@media(min-width:768px){.kamilla-page .kp-stats-grid{grid-template-columns:repeat(4,1fr)}}
.kamilla-page .kp-num{font-size:1.8rem;font-weight:700;color:var(--accent)}
.kamilla-page .kp-lbl{color:#6b7280}

/* RÓLAM */
.kamilla-page .kp-about{padding:3rem 1rem}
.kamilla-page .kp-copy{color:#374151;max-width:60rem}
.kamilla-page .kp-copy p{margin:0 0 1rem}

/* SZAKTERÜLETEK */
.kamilla-page .kp-specs{padding:3rem 1rem;background:#fff}
.kamilla-page .kp-cards{display:grid;gap:1.25rem}
@media(min-width:992px){.kamilla-page .kp-cards{grid-template-columns:repeat(3,1fr)}}
.kamilla-page .kp-cards .card{background:#fff;border:1px solid #ececec;border-radius:12px;box-shadow:0 2px 10px rgba(0,0,0,.06);padding:1.25rem;text-align:center}
.kamilla-page .kp-ico{width:64px;height:64px;margin:.25rem auto 1rem;border-radius:9999px;background:var(--accent-soft);display:flex;align-items:center;justify-content:center;font-size:1.4rem}
.kamilla-page .kp-cards h3{margin:.25rem 0 .4rem}
.kamilla-page .kp-cards p{color:#6b7280}

/* KÉPESÍTÉSEK */
.kamilla-page .kp-certs{padding:3rem 1rem;background:var(--accent-soft)}
.kamilla-page .kp-cert-grid{display:grid;gap:1rem;max-width:56rem;margin:0 auto}
@media(min-width:768px){.kamilla-page .kp-cert-grid{grid-template-columns:repeat(2,1fr)}}
.kamilla-page .kp-cert{display:flex;gap:.9rem;align-items:center;background:#fff;border:1px solid #ececec;border-radius:10px;padding:.9rem}
.kamilla-page .kp-badge{background:var(--accent);color:#fff;border-radius:9999px;padding:.25rem .6rem;font-weight:600}
.kamilla-page .kp-cert-ttl{font-weight:600;color:#111827}
.kamilla-page .kp-cert-sub{color:#6b7280;font-size:.95rem}

/* VÉLEMÉNYEK */
.kamilla-page .kp-testis{padding:3rem 1rem;background:#fff}
.kamilla-page .kp-testi-grid{display:grid;gap:1.25rem;max-width:56rem;margin:0 auto}
@media(min-width:768px){.kamilla-page .kp-testi-grid{grid-template-columns:repeat(2,1fr)}}
.kamilla-page .kp-testi{background:var(--accent-soft);border-radius:12px;padding:1.1rem}
.kamilla-page .kp-stars{color:#f59e0b;margin-bottom:.5rem}
.kamilla-page .kp-who{color:#6b7280;font-size:.95rem}

/* CTA záró */
.kamilla-page .kp-cta-final{padding:3rem 1rem;background:var(--accent-soft)}
.kamilla-page .kp-cta-sub{color:#4b5563;margin:.25rem 0 1rem}

/* ==========================================================
   Lefor Kamilla aloldal – oldal-szintű (Astra) override-ok
   ========================================================== */
.page-template-page-lefor-kamilla{ 
  --accent: #7c3aed;
  --accent-soft: rgba(124,58,237,.08);
}
.page-template-page-lefor-kamilla .container{ max-width: 1200px; margin-inline: auto; padding-inline: 1rem; }
.page-template-page-lefor-kamilla .section{ padding: 3rem 0; }
.page-template-page-lefor-kamilla .bg-white{ background:#fff; }
.page-template-page-lefor-kamilla .accent-soft{ background: var(--accent-soft); }
.page-template-page-lefor-kamilla .center{ text-align:center; }
.page-template-page-lefor-kamilla .py-hero{ padding: 3.5rem 0 2.25rem; }
.page-template-page-lefor-kamilla .grid-two{ display:grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 900px){ .page-template-page-lefor-kamilla .grid-two{ grid-template-columns: 1.1fr .9fr; } }
.page-template-page-lefor-kamilla .title-hero{ font-weight:300; font-size: clamp(2rem, 5vw, 3rem); margin: 0 0 .5rem; }
.page-template-page-lefor-kamilla .accent{ color: var(--accent); }
.page-template-page-lefor-kamilla .lead{ color:#4b5563; }
.page-template-page-lefor-kamilla .cta-row{ display:flex; gap:.75rem; flex-wrap:wrap; }
.page-template-page-lefor-kamilla .photo-square{ aspect-ratio: 1 / 1; border-radius: 1.1rem; overflow:hidden; background: var(--accent-soft); }
.page-template-page-lefor-kamilla .photo{ width:100%; height:100%; background-size:cover; background-position:center; }
.page-template-page-lefor-kamilla .stats-grid{ display:grid; gap:1.25rem; grid-template-columns: repeat(2, 1fr); text-align:center; max-width: 900px; margin: 0 auto; }
@media (min-width: 900px){ .page-template-page-lefor-kamilla .stats-grid{ grid-template-columns: repeat(4, 1fr); } }
.page-template-page-lefor-kamilla .stat .num{ font-size:1.75rem; font-weight:700; color: var(--accent); }
.page-template-page-lefor-kamilla .stat .txt{ color:#4b5563; }
.page-template-page-lefor-kamilla .section-title{ font-weight:300; font-size: clamp(1.6rem, 3.2vw, 2rem); margin:0 0 1.2rem; }
.page-template-page-lefor-kamilla .prose p{ color:#374151; line-height:1.7; font-size:1.05rem; margin:0 0 1rem; }
.page-template-page-lefor-kamilla .cards-3,
.page-template-page-lefor-kamilla .cards-2{ display:grid; gap:1.25rem; grid-template-columns: 1fr; }
@media (min-width: 900px){ .page-template-page-lefor-kamilla .cards-3{ grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px){ .page-template-page-lefor-kamilla .cards-2{ grid-template-columns: repeat(2, 1fr); } }
.page-template-page-lefor-kamilla .card{ background:#fff; border:1px solid #ececec; border-radius:.9rem; padding:1.25rem; box-shadow: 0 2px 10px rgba(0,0,0,.05); }
.page-template-page-lefor-kamilla .icon-circle{ width:64px; height:64px; border-radius:9999px; background: var(--accent-soft); display:flex; align-items:center; justify-content:center; margin:0 auto 12px; font-size:1.25rem; }
.page-template-page-lefor-kamilla .muted{ color:#6b7280; }
.page-template-page-lefor-kamilla .small{ font-size:.92rem; }
.page-template-page-lefor-kamilla .cert-grid{ display:grid; gap:1rem; grid-template-columns:1fr; max-width:800px; margin:0 auto; }
@media (min-width:900px){ .page-template-page-lefor-kamilla .cert-grid{ grid-template-columns:1fr 1fr; } }
.page-template-page-lefor-kamilla .cert{ display:flex; gap:.75rem; align-items:center; background:#fff; border:1px solid #eee; border-radius:.7rem; padding:.9rem; }
.page-template-page-lefor-kamilla .badge{ background: var(--accent); color:#fff; border-radius:.5rem; padding:.25rem .5rem; font-weight:600; }
.page-template-page-lefor-kamilla .cert-title{ font-weight:600; }
.page-template-page-lefor-kamilla .stars{ color:#fbbf24; letter-spacing:.15em; margin-bottom:.5rem; }

/* ===== Kamilla – egysoros hero középre igazítás ===== */
.kamilla-wrap .hero-copy{ text-align:center; max-width:820px; margin:0 auto; }
.kamilla-wrap .hero-copy .lead{ max-width:740px; margin:.75rem auto 0; line-height:1.8; }
.kamilla-wrap .hero-copy .cta-row{ justify-content:center; }

/* ====== BLUR TILTÁS – CSAK AZ EGYEDI OLDALAKON ====== */
.page-template-page-rolunk .site-content,
.page-template-page-rolunk #content,
.page-template-page-rolunk .hfeed,
.page-template-page-rolunk .ast-container,
.page-template-page-rolunk main.site-main,
.page-template-page-nemeth-anna .site-content,
.page-template-page-nemeth-anna #content,
.page-template-page-nemeth-anna .hfeed,
.page-template-page-nemeth-anna .ast-container,
.page-template-page-nemeth-anna main.site-main,
.page-template-page-lefor-kamilla .site-content,
.page-template-page-lefor-kamilla #content,
.page-template-page-lefor-kamilla .hfeed,
.page-template-page-lefor-kamilla .ast-container,
.page-template-page-lefor-kamilla main.site-main{
  filter:none !important;
  -webkit-filter:none !important;
  backdrop-filter:none !important;
  opacity:1 !important;
  pointer-events:auto !important;
}

.page-template-page-rolunk .hero::before,
.page-template-page-nemeth-anna .hero::before,
.page-template-page-lefor-kamilla .py-hero::before{
  filter:none !important;
  -webkit-filter:none !important;
  backdrop-filter:none !important;
}
.page-template-page-rolunk .hero{
  min-height: auto !important;
  padding: 4rem 1rem 2rem !important;
}
.page-template-page-rolunk .hero .inner{ margin-top: 0 !important; }
.page-template-page-rolunk .hero::before{
  background: linear-gradient(to bottom, rgba(219,187,106,.18), rgba(255,255,255,0)) !important;
  filter:none !important; -webkit-filter:none !important; backdrop-filter:none !important;
}

/* Biztonsági öv: az egyedi sablonokon a footer mindig legyen látható rétegben */
.page-template-page-rolunk .site-footer,
.page-template-page-nemeth-anna .site-footer,
.page-template-page-lefor-kamilla .site-footer{
  position: relative;
  z-index: 1;
}

.page-template-page-rolunk .ast-overlay,
.page-template-page-nemeth-anna .ast-overlay,
.page-template-page-lefor-kamilla .ast-overlay{
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.page-template-page-rolunk .hero,
.page-template-page-rolunk .hero *,
.page-template-page-rolunk #page,
.page-template-page-rolunk .site {
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.page-template-page-rolunk [style*="backdrop-filter"],
.page-template-page-rolunk [style*="-webkit-backdrop-filter"],
.page-template-page-rolunk [style*="filter: blur"] {
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.page-template-page-rolunk .hero::before{
  background: linear-gradient(to bottom, rgba(219,187,106,.14), rgba(255,255,255,0)) !important;
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  pointer-events: none !important;
}
/* ===== HERO FIX – ne nyúljon meg minden oldalon ===== */

/* Alapértelmezés: a hero ne legyen kényszerítve 80vh-re */
.hero{
  min-height: auto !important;
  padding: 2.5rem 1rem !important;
}

/* Főoldal: maradhat nagy, de ésszel */
body.page-template-page-fooldal .hero{
    /* ha szeretnéd: 50–70vh */
  padding: 4.5rem 1rem !important;
}

/* Mobilon kisebb hero */
@media (max-width: 768px){
  body.page-template-page-fooldal .hero{
    min-height: 46vh !important;
    padding: 3rem 1rem !important;
  }
}

/* Az overlay csak a főoldali hero-n legyen */
.hero::before{ background: none !important; }
body.page-template-page-fooldal .hero::before{
  background: rgba(255,255,255,.20) !important;
}
/* ===== MENÜ JAVÍTÁS – ASTRA ===== */

/* Desktop dropdown design */
@media (min-width: 922px) {
  .main-navigation ul ul {
    background: #ffffff;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 6px 0;
    width: auto;
    border-radius: 8px;
  }

  .main-navigation ul ul li a {
    padding: 8px 14px;
    color: #333;
    white-space: nowrap;
    display: block;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .main-navigation ul ul li a:hover {
    background: #f5f5f5;
    color: #000;
    border-radius: 6px;
  }
}

/* Mobilon csak a kinyitott submenu látszódjon */
@media (max-width: 921px) {
  .main-navigation ul ul {
    display: none; /* alapból rejtve */
  }
  .main-navigation ul .ast-submenu-expanded > ul {
    display: block; /* csak a nyitott */
  }
}
/* ===== DESKTOP FŐMENÜ / LENYÍLÓK – FIX ===== */
@media (min-width: 922px){

  /* A lenyíló ne legyen sor szélességű, hanem tartalom-hoz igazodjon */
  .main-header-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: inline-block;           /* <<< kulcs: ne húzza 100%-ra */
    width: auto;                     /* tartalom szélessége */
    min-width: 220px;                /* kellemes minimum */
    max-width: 360px;                /* ne legyen túl hosszú */
    padding: 6px 0;
    margin: 0;
    background: #fff;
    border: none !important;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0,0,0,.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
    z-index: 9999;
  }

  /* Megjelenítés hover-re */
  .main-header-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  /* 2. (és mélyebb) szint oldalsó lenyílással */
  .main-header-menu .sub-menu .sub-menu {
    top: 0 !important;
    left: 100% !important;           /* jobbra nyíljon */
    margin-left: 8px;
    transform: translateY(0);        /* ne csússzon lejjebb */
  }

  /* Menüelemek a dropdownban */
  .main-header-menu .sub-menu a {
    display: block;
    padding: 8px 14px;
    color: #333;
    white-space: nowrap;             /* egy sorban maradjon */
    transition: background .15s ease, color .15s ease;
  }

  .main-header-menu .sub-menu a:hover {
    background: #f5f5f5;
    color: #000;
    border-radius: 6px;
  }

  /* Felesleges szürke csík / “fejléc” elem eltüntetése, ha a téma odatesz valamit */
  .main-header-menu .sub-menu > li.menu-item-has-children > a:empty {
    display: none;
  }
}

/* ===== MOBIL – csak a nyitott almenü legyen látható ===== */
@media (max-width: 921px){
  .main-navigation ul ul { display: none; }
  .main-navigation ul .ast-submenu-expanded > ul { display: block; }
}

  
/* Footer biztosan látható rétegben marad (Rólunk) */
body.page-template-page-rolunk .site-footer{ position:relative; z-index:2; }
/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* Alkalmazás globálisan */
body {
  font-family: 'Poppins', sans-serif;
}

/* ===== FIGYELEM: ne használj globális blur-nullázókat body .site-content stb. ===== */