
:root{
  --ink:#0f172a;
  --ink-2:#111827;
  --muted:#5b6777;
  --bg:#f6f7fb;
  --card:#ffffff;
  --line:rgba(15,23,42,0.12);
  --accent:#f59e0b; /* építőipari narancs */
  --accent-2:#fb7185; /* opcionális, csak hover finomítás */
  --shadow:0 14px 30px rgba(15,23,42,0.12);
  --shadow-2:0 22px 50px rgba(15,23,42,0.18);
  --radius:18px;
  --maxw:1150px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:#12161c;
}

a{color:inherit}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}
.section{
  padding:50px 0;
}

/* TOP NAVBAR */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(18,22,28,0.96);
  color:#fff7ee;
  font-size:14px;
  backdrop-filter:blur(8px);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 20px;
  gap:16px;
}
.topbar a{
  color:#ffe3c2;
  text-decoration:none;
  font-weight:600;
}
.sep{margin:0 6px;color:#6b7a8c}
.topbar-center{
  display:flex;
  gap:10px;
  font-size:13px;
  flex-wrap:wrap;
  justify-content:center;
}
.topbar-center a{
  color:#fff7ee;
  opacity:0.9;
}
.topbar-center a:hover{
  opacity:1;
  text-decoration:underline;
}

/* HERO – FŐOLDAL */
.hero{
  position:relative;
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.45), transparent 60%),
    linear-gradient(135deg, #1b2028, var(--ink-2));
  background-attachment:fixed;
  background-position:center center;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 15% 80%, rgba(255,255,255,0.05), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.3), transparent 45%);
  pointer-events:none;
}
.hero-inner{
  position:relative;
  z-index:2;
  text-align:center;
  padding:40px 20px 70px;
}
.logo{
  width:150px;
  margin-bottom:10px;
  filter:drop-shadow(0 10px 26px rgba(0,0,0,0.5));
}
.hero-kicker{
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:11px;
  color:#f0f3f6;
  margin-bottom:4px;
}
.hero h1{
  font-size:32px;
  margin:10px 0;
  text-shadow:0 6px 18px rgba(0,0,0,0.4);
}
.lead{
  max-width:650px;
  margin:0 auto 20px;
  font-size:16px;
}
.hero-ctas{
  display:flex;
  justify-content:center;
  gap:12px;
}

.hero-wave{
  position:absolute;
  bottom:-1px;
  left:0;
  width:100%;
  height:90px;
}
.hero-wave path{
  fill:var(--bg);
}

/* GOMBOK */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  font-size:15px;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn.primary{
  background:linear-gradient(135deg,var(--accent),#ffb020);
  color:#111827;
  box-shadow:var(--shadow);
}
.btn.primary:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-2);
}
.btn.ghost{
  background:transparent;
  color:var(--accent);
  border-color:rgba(245,158,11,0.8);
}
.btn.ghost:hover{
  background:rgba(245,158,11,0.12);
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(245,158,11,0.18);
}

/* ÁLTALÁNOS CÍMEK */
h1,h2,h3{font-weight:700}
h2{
  font-size:24px;
  margin:0 0 22px;
  text-align:center;
  color:var(--ink);
}

/* SZOLGÁLTATÁSOK */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
}
.service-card{
  background:var(--card);
  padding:18px 18px 20px;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(10,30,20,0.06);
  border:1px solid rgba(10,60,40,0.05);
  transition:transform .22s ease, box-shadow .22s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(10,30,20,0.12);
}
.svc-icon{
  font-size:26px;
  margin-bottom:8px;
}

/* PARALLAX SZEKCIÓ */
.parallax-section{
  position:relative;
  overflow:hidden;
}
.parallax-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.09), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.35), transparent 60%),
    linear-gradient(135deg,#1b2028,var(--accent));
  transform:translateZ(0);
}
.parallax-section .section{
  position:relative;
  z-index:2;
}
.parallax-section h2{
  color:#fff7ee;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.why-item{
  background:rgba(255,255,255,0.06);
  border-radius:12px;
  padding:12px 14px;
  color:#fff7ee;
  border:1px solid rgba(255,255,255,0.18);
}

/* FOLYAMAT LÉPÉSEK */
.process-steps{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.process-steps li{
  background:var(--card);
  border-radius:12px;
  padding:16px;
  box-shadow:0 8px 22px rgba(0,0,0,0.04);
  border:1px solid rgba(0,0,0,0.03);
}

/* REFERENCIÁK */
.references{
  background:var(--bg);
  border-top:1px solid rgba(0,0,0,0.03);
  border-bottom:1px solid rgba(0,0,0,0.03);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
}
.ref-item{
  margin:0;
}
.ref-item img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,0.18);
  transform:translateY(0);
  transition:transform .2s ease, box-shadow .2s ease;
}
.ref-item img:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 36px rgba(0,0,0,0.25);
}
.gallery-note{
  text-align:center;
  margin-top:10px;
  color:var(--muted);
}

/* BLOG BLOKK A FŐOLDALON – ERŐSEBB KONTRASZT */
.blog-preview{
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,0.6), transparent 60%),
    linear-gradient(135deg,#f5f7fa,#e9edf2);
  border-top:1px solid rgba(0,0,0,0.04);
}
.blog-preview h2{
  color:var(--ink);
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px;
}
.blog-card{
  background:var(--card);
  border-radius:14px;
  padding:16px 18px 18px;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.04);
}
.blog-card h3{
  margin:0 0 8px;
  font-size:18px;
  color:var(--ink);
}
.blog-card p{
  margin:0 0 10px;
  color:var(--muted);
  font-size:14px;
}
.blog-link{
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:var(--ink-2);
}
.blog-link:hover{
  text-decoration:underline;
}
.blog-more{
  margin-top:18px;
  text-align:center;
}

/* KAPCSOLAT SZEKCIÓ – ERŐSEBB DIZÁJN */
.contact{
  background:
    radial-gradient(circle at 0 0, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(135deg,#1b2028,var(--ink-2));
  color:#fff7ee;
}
.contact h2{
  color:#fff7ee;
}
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr 1.2fr;
  gap:20px;
  align-items:flex-start;
}
.contact-info p{margin:4px 0;}
.contact-info .small{color:#f0f3f6;font-size:14px;}

.contact-card-wrap{margin-top:18px;}
.contact-card{
  width:100%;
  max-width:520px;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.14);
  display:block;
}
.contact-form form{
  background:var(--card);
  color:#12161c;
  padding:18px 18px 20px;
  border-radius:14px;
  box-shadow:0 10px 28px rgba(0,0,0,0.35);
}
label{
  display:block;
  font-size:14px;
  margin-bottom:4px;
  color:var(--ink);
}
input,textarea{
  width:100%;
  border-radius:8px;
  border:1px solid #e9edf2;
  padding:8px 10px;
  margin-bottom:10px;
  font:inherit;
}

/* LÁBLÉC */
.site-footer{
  background:var(--ink);
  color:#fff7ee;
  padding:16px 0;
  margin-top:0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

/* ÚSZÓ TELEFON GOMB */
.floating-call{
  position:fixed;
  right:16px;
  bottom:18px;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--ink-2),var(--accent));
  color:#fff;
  text-decoration:none;
  font-size:24px;
  box-shadow:0 10px 26px rgba(0,0,0,0.45);
  z-index:60;
}

/* REVEAL ANIMÁCIÓK */
.reveal{
  opacity:0;
  transform:translate3d(0,22px,0);
  transition:opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
  will-change:opacity, transform;
}
.reveal[data-animate="left"]{ transform:translate3d(-26px,0,0); }
.reveal[data-animate="right"]{ transform:translate3d(26px,0,0); }
.reveal[data-animate="up"]{ transform:translate3d(0,22px,0); }
.reveal.in{
  opacity:1;
  transform:translate3d(0,0,0);
}
.reveal.delay-1{ transition-delay:.12s; }
.reveal.delay-2{ transition-delay:.24s; }
.delay-1{transition-delay:.12s;}
.delay-2{transition-delay:.24s;}

/* ───────────────────────────── */
/*         BLOG – ULTRA          */
/* ───────────────────────────── */

/* BLOG FŐOLDAL ( /blog/ ) */
.blog-hero{
  padding:60px 0 40px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.12), transparent 60%),
    linear-gradient(135deg,#1b2028,var(--ink-2));
  color:#fff7ee;
  text-align:center;
}
.blog-hero h1{
  margin:0 0 8px;
  font-size:28px;
}
.blog-hero p{
  margin:0;
  font-size:15px;
  opacity:0.9;
}
.blog-list{
  padding:40px 0 50px;
}
.blog-list-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.blog-list-card{
  background:var(--card);
  border-radius:16px;
  padding:18px 18px 20px;
  box-shadow:0 12px 32px rgba(0,0,0,0.07);
  border:1px solid rgba(0,0,0,0.03);
}
.blog-meta{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
}
.blog-list-card h2{
  font-size:18px;
  margin:0 0 8px;
  text-align:left;
}
.blog-list-card p{
  margin:0 0 10px;
  font-size:14px;
  color:var(--muted);
}
.blog-list-card a{
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:var(--ink-2);
}
.blog-list-card a:hover{text-decoration:underline;}

/* EGYEDI CIKK OLDALAK ( /blog/*.html ) */
.post-wrap{
  max-width:880px;
  margin:0 auto;
  padding:30px 20px 60px;
}
.post-back{
  margin-bottom:12px;
}
.post-back a{
  font-size:13px;
  text-decoration:none;
  color:var(--ink-2);
}
.post-back a:hover{text-decoration:underline;}

.post-hero{
  margin-bottom:24px;
  padding:22px 22px 24px;
  border-radius:18px;
  background:
    radial-gradient(circle at 5% 0%, rgba(255,255,255,0.2), transparent 55%),
    linear-gradient(135deg,#1b2028,var(--ink-2));
  color:#fff7ee;
  box-shadow:0 16px 40px rgba(0,0,0,0.35);
}
.post-hero h1{
  font-size:26px;
  margin:0 0 8px;
}
.post-meta{
  font-size:13px;
  opacity:0.9;
  margin-bottom:6px;
}
.post-hero-img{
  margin-top:10px;
  font-size:32px;
}

/* CIKK TÖRZS – KÁRTYA STÍLUS */
.post-content{
  background:var(--card);
  border-radius:18px;
  padding:22px 22px 26px;
  box-shadow:0 14px 36px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.03);
}
.post-content h2{
  font-size:20px;
  margin:22px 0 8px;
  color:var(--ink);
}
.post-content h3{
  font-size:17px;
  margin:16px 0 6px;
  color:var(--ink-2);
}
.post-content p{
  margin:8px 0;
  font-size:15px;
  line-height:1.65;
}
.post-content ul, .post-content ol{
  margin:6px 0 12px 20px;
  padding:0;
  font-size:15px;
}
.post-content li{margin:3px 0;}

/* TARTALOMJEGYZÉK BOX */
.post-toc{
  background:var(--bg);
  border-radius:12px;
  padding:10px 12px 12px;
  font-size:14px;
  margin:10px 0 16px;
}
.post-toc strong{
  display:block;
  margin-bottom:4px;
  color:var(--ink);
}

/* TIPP / FIGYELMEZTETÉS / INFO BOXOK */
.tip-box, .warn-box, .info-box{
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
  margin:10px 0 14px;
}
.tip-box{
  background:#fff7ee;
  border:1px solid #f0f3f6;
}
.warn-box{
  background:#fff3e0;
  border:1px solid #ffb066;
}
.info-box{
  background:#fff3e0;
  border:1px solid #ffe3c2;
}

/* CIKK VÉGI CTA */
.post-cta{
  margin-top:24px;
  padding:16px 18px;
  background:var(--bg);
  border-radius:14px;
  font-size:14px;
}
.post-cta strong{color:var(--ink);}

/* KAPCSOLÓDÓ CIKKEK A CIKK VÉGÉN */
.related-posts{
  margin-top:24px;
  border-top:1px solid rgba(0,0,0,0.05);
  padding-top:16px;
}
.related-posts h3{
  margin:0 0 8px;
  font-size:16px;
}
.related-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  font-size:14px;
}
.related-links a{
  text-decoration:none;
  color:var(--ink-2);
}
.related-links a:hover{text-decoration:underline;}

/* RESPONSIVE */
@media(max-width:900px){
  .topbar-inner{
    flex-direction:column;
    gap:4px;
    text-align:center;
  }
  .hero{
    background-attachment:scroll;
  }
  .hero h1{font-size:26px;}
  .contact-grid{
    grid-template-columns:1fr;
  }
  .footer-inner{
    flex-direction:column;
    gap:6px;
    text-align:center;
  }
}


/* ABOUT */
.about-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:24px;
  align-items:start;
}
.about-photo img{
  width:100%;
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}
.about-text p{margin-top:0}

/* Form helper */
.hp{position:absolute;left:-9999px;opacity:0;height:0;width:0}
.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:12px 0 18px;
  font-size:14px;
  color:#f1f5ff;
}
.consent input{margin-top:2px;flex:0 0 auto;}
.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.18);
}
.notice.ok{ }
.notice.err{ }

@media (max-width: 860px){
  .about-grid{grid-template-columns:1fr;}
}


/* Section head */
.section-head{margin-bottom:18px;}
.section-sub{font-size:18px;color: rgba(255,255,255,.92);margin:6px 0 0;}

/* Bemutatkozás alcím – legyen kontrasztos, ne szürkés */
.about .section-sub{font-size:18px;color: rgba(255,255,255,.92);margin:6px 0 0;}

/* About */
.about-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:28px;
  align-items:start;
}
@media (max-width: 900px){
  .about-grid{grid-template-columns:1fr;gap:18px;}
}
.about-photo{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#0b1220;
}
.about-photo img{display:block;width:100%;height:auto;transform:scale(1.02)}
.photo-badge{
  position:absolute;
  left:12px; bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(15,23,42,0.72);
  color:#fff;
  border:1px solid rgba(255,255,255,0.18);
  font-weight:700;
  font-size:12.5px;
  backdrop-filter: blur(6px);
}
.about-text .name{margin:0 0 10px;font-size:18px}
.about-text .name span{color:var(--muted);font-weight:600}
.about-cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 650px){
  .about-cards{grid-template-columns:1fr;}
}
.mini-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  box-shadow:0 10px 22px rgba(15,23,42,0.06);
  font-weight:600;
  color:var(--ink);
  font-size:14px;
}
	.quote-card{
	  margin-top:14px;
	  background:linear-gradient(180deg, rgba(245,158,11,0.12), rgba(245,158,11,0.06));
	  border:1px solid rgba(245,158,11,0.25);
	  border-radius:16px;
	  /* extra right + bottom padding so the closing quote never overlaps text on mobile */
	  padding:14px 54px 28px 48px;
	  position:relative;
	}
	.quote-card p{margin:0;color:var(--ink);font-weight:700;position:relative;z-index:1}
	.quote-mark{
  position:absolute;left:14px;top:10px;
  font-size:40px;line-height:1;color:rgba(245,158,11,0.85);
  font-weight:900;
	  z-index:0;
}

.quote-mark.right{
  left:auto;
  right:12px;
  top:auto;
  bottom:10px;
}

/* Mobile: keep the closing quote away from wrapped text */
@media (max-width: 520px){
  .quote-card{padding-right:48px;padding-bottom:32px;}
  .quote-mark{font-size:36px;}
  .quote-mark.right{right:10px;bottom:12px;}
}

/* Gallery captions + hover */
.ref-item{
  border-radius:16px;
  overflow:hidden;
  position:relative;
  background:#0b1220;
}
.ref-item img{display:block;width:100%;height:auto;transition:transform .35s ease, opacity .35s ease;opacity:0.98}
.ref-item figcaption{
  position:absolute;left:0;right:0;bottom:0;
  padding:10px 12px;
  font-weight:700;
  font-size:13px;
  color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.65));
}
.ref-item:hover img{transform:scale(1.04);opacity:1}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;
  display:none;
  background:rgba(2,6,23,0.86);
  z-index:9999;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex;}
.lightbox-inner{
  max-width:min(1100px, 100%);
  max-height:calc(100vh - 70px);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.lightbox img{
  max-width:100%;
  max-height:calc(100vh - 140px);
  border-radius:18px;
  box-shadow:var(--shadow-2);
}
.lightbox-caption{
  color:#e5e7eb;
  font-weight:700;
  text-align:center;
}
.lightbox-close{
  position:fixed;
  top:16px; right:16px;
  width:42px;height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(15,23,42,0.55);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}
.lightbox-close:hover{background:rgba(15,23,42,0.8)}

.ref-item{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0c1526;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 45px rgba(12,21,38,.35);
}
.ref-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}
.ref-item figcaption{ display:none; }


.ref-item figcaption{display:none !important;}

@media (max-width: 980px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-card-wrap{ justify-content: flex-start; }
}

.ref-item figcaption{display:none !important;}
