/* =========================
   RESET & TYPOGRAPHY
   ========================= */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { height: 100%; }
body, h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
}

/* =========================
   LAYOUT CONTAINER
   ========================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Kisebb hasáb a szöveges oldalakon (főlap alsó blokkjára is) */
.content-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding-left: clamp(10px, 2.2vw, 18px);
  padding-right: clamp(10px, 2.2vw, 18px);
}

/* =========================
   HEADER / NAV
   ========================= */
.lp-header { position: relative; z-index: 50; background:#fff; border-bottom:1px solid #eee; color:#111; }

/* Felső sáv – brand középen */
.lp-top {
  display:flex; align-items:center; justify-content:center;
  padding: 18px 0 16px;
}
.lp-brand {
  font-family:"Cinzel",serif; font-weight:600; letter-spacing:.12em;
  text-transform:uppercase; text-align:center;
  font-size: clamp(22px,4.2vw,34px);
}

/* Menü sor – középre igazítva */
.lp-nav {
  border-top:1px solid #f4f4f4;
  display:flex; justify-content:center; gap:28px; padding:12px 0 14px;
}
.lp-nav a {
  font-weight:500; color:#2a2a2a; padding:6px 2px;
  border-bottom:2px solid transparent; transition: color .2s, border-color .2s;
}
.lp-nav a:hover { color:#000; border-bottom-color:#000; }

/* Hamburger csak ≤420px */
.lp-menu-toggle { display:none; }
@media (max-width: 420px) {
  .lp-top { padding: 12px 0; }
  .lp-brand { font-size: clamp(18px, 6.2vw, 26px); letter-spacing:.5px; line-height:1.1; white-space:normal; }
  .lp-menu-toggle { display:inline-flex; border:0; background:transparent; padding:6px; }
  .lp-nav { display:none; }
  .lp-nav.is-open {
    display:flex; flex-direction:column; gap:8px; background:#fff;
    position:absolute; top:100%; left:0; right:0; padding:10px 14px 14px; border-bottom:1px solid #eee;
  }
}

/* Inline kereső a nav jobb szélén */
.search-inline{ position: relative; margin-left: auto; }
.search-toggle{
  background: transparent; border: 1px solid #ddd; width: 36px; height: 36px; border-radius: 99px;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
}
.search-form{ width: 0; overflow: hidden; transition: width .25s ease; display:inline-block; vertical-align:middle; }
.search-inline.is-open .search-form{ width: min(62vw, 340px); }
.search-inline-input{ width:100%; border:1px solid #ddd; padding:8px 10px; border-radius:8px; font:inherit; }

/* Mobil: a kereső a menü alá törik */
@media (max-width: 768px){
  .search-inline{ width:100%; display:flex; justify-content:flex-end; margin:8px 16px 0; }
  .search-form{ width:0; }
  .search-inline.is-open .search-form{ width:100%; }
}

/* =========================
   HERO – FULL-BLEED
   ========================= */
.hero { width:100%; height:70vh; overflow:hidden; margin:0; }
.hero-img { width:100%; height:100%; object-fit:cover; display:block; }

/* =========================
   MAIN AREA
   ========================= */
.site-main { padding:22px 0; }

/* =========================
   BLOG – KÁRTYÁS RÁCS
   ========================= */
.container.blog-cards { max-width: 1200px; padding-inline: 24px; }
.blog-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:28px; margin-top:18px;
}
/* =========================================================
   GALÉRIA FŐOLDAL – CÍM, LEÍRÁS, MOZAIKOS KÁRTYÁK
   ========================================================= */

.gallery-index {
  padding: 24px 0 48px;
}

/* A galéria főoldal hasábja igazodjon a blogkártyákhoz */
.gallery-index .content-wrap {
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}

/* Fejléc – a Blog oldal stílusához igazítva */
.gallery-index-header {
  max-width: none;
  margin: 0 0 18px;
  text-align: left;
}

.gallery-index-title {
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 28px;
  text-transform: none;
  margin: 0 0 8px;
}

.gallery-index-lead {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  max-width: 540px;
}

/* Mozaikos galéria-kártyák */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.gallery-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #f3f4f6;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.gallery-card-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Ha nincs kép, halvány háttér */
.gallery-card-thumb:not([style]) {
  background: linear-gradient(135deg, #e5e7eb, #f9fafb);
}

.gallery-card-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background: radial-gradient(circle at center, rgba(17,24,39,0.10), rgba(17,24,39,0.65));
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card-title span {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Hover: enyhe sötétedés, cím megjelenik */
.gallery-card:hover .gallery-card-thumb {
  transform: scale(1.04);
  filter: brightness(0.65);
}

.gallery-card:hover .gallery-card-title {
  opacity: 1;
}

/* Reszponzív: kisebb kijelzőn kevesebb oszlop */
@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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


/* =========================================================
   GALÉRIA RÉSZLETES OLDAL – HERO, SZÖVEG, MASONRY RÁCS
   ========================================================= */

.gallery-page {
  padding: 24px 0 56px;
}

.gallery-article {
  max-width: 960px;
  margin: 0 auto 40px;
}

.gallery-hero {
  margin: 0 0 28px;
}

.gallery-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.gallery-title {
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* a .post-content osztály a blogtipót örökli – itt csak margó */
.gallery-intro {
  margin: 4px 0 24px;
}

.gallery-intro p {
  margin-bottom: 12px;
}

/* Masonry/vízesés elrendezés az inspiráció szerint */

.gallery-images-grid {
  column-count: 3;        /* nagy kijelzőn 3 hasáb */
  column-gap: 18px;
  margin-top: 16px;
}

.gallery-image {
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Enyhe nagyítás hoverre */
.gallery-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.97);
}

/* Reszponzív hasábszám */
@media (max-width: 1024px) {
  .gallery-images-grid {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .gallery-images-grid {
    column-count: 1;
  }
}

/* ===== GALÉRIA RÉSZLETES NÉZET – HERO + SZÖVEG ===== */

.gallery-page {
  padding: 24px 0 56px;
}

.gallery-article {
  max-width: 960px;
  margin: 0 auto 40px;
}

.gallery-hero {
  margin: 0 0 28px;
}

.gallery-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.gallery-title {
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-intro {
  margin: 4px 0 24px;
}

.gallery-intro p {
  margin-bottom: 12px;
}

/* ===== GALÉRIA KÉPEK – MASONRY / VÍZESÉS RÁCS ===== */

/* A teljes képrész: oszlopos (Pinterest-szerű) elrendezés */
.gallery-images-grid {
  column-count: 3;           /* nagy kijelzőn 3 hasáb */
  column-gap: 18px;
  margin-top: 16px;
}

/* Egy “csempe” – a <figure> maga a kártya */
.gallery-image {
  break-inside: avoid;       /* ne törje szét a képet oszlopváltáskor */
  margin: 0 0 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

/* A kép – teljes szélesség, változó magasság (mint az inspirációban) */
.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Enyhe hover-nagyítás, finom tónusváltással */
.gallery-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.97);
}

/* Reszponzív oszlopszám */
@media (max-width: 1024px) {
  .gallery-images-grid {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .gallery-images-grid {
    column-count: 1;
  }
}


.card {
  background:#fff; border:1px solid #e5e7eb; border-radius:16px;
  overflow:hidden; display:flex; flex-direction:column;
}
.card-img img { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.card-body { padding:16px 18px 18px; }
.card-title { margin:0 0 6px; font-size:20px; line-height:1.25; }
.card-title a:hover { text-decoration:underline; }
.card-date { color:#6b7280; font-size:13px; margin-bottom:8px; }
.card-excerpt { margin:0 0 10px; color:#374151; }
.card-more a:hover { text-decoration:underline; }

.pager { display:flex; gap:10px; margin:24px 0; }
.pager a { padding:8px 12px; border:1px solid #e5e7eb; border-radius:10px; }

@media (max-width:1100px){ .blog-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .blog-grid{ grid-template-columns:1fr; } }

/* =========================
   POST (EGY BEJEGYZÉS)
   ========================= */
.post-view { padding:18px 0 40px; }
.post-cover { margin:0 0 16px; border-radius:14px; overflow:hidden; background:#fafafa; }
.post-cover img { width:100%; height:auto; object-fit:cover; display:block; }
.post-head h1 { font-family:"Cinzel",serif; font-weight:600; letter-spacing:.02em; margin-bottom:6px; }
.post-content { margin-top:16px; color:#222; }
.post-content p { margin:0 0 1em; }
.post-content img { max-width:100%; height:auto; border-radius:8px; }

/* =========================
   KAPCSOLAT
   ========================= */
.contact-cards {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap:16px; margin:8px 0 24px;
}
.contact-cards .card {
  display:block; background:#fff; border:1px solid #eee; border-radius:14px; padding:16px; color:#222;
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-cards .card:hover { transform: translateY(-2px); box-shadow:0 8px 22px rgba(0,0,0,.08); }
.contact-form form { display:flex; flex-direction:column; gap:12px; }
.contact-form .row { display:flex; gap:12px; flex-wrap:wrap; }
.contact-form label { flex:1; display:flex; flex-direction:column; gap:6px; }
.contact-form input, .contact-form textarea {
  padding:10px 12px; border:1px solid #ccc; border-radius:10px; font:inherit;
}
.contact-form button {
  align-self:flex-start; padding:10px 16px; border-radius:10px; border:0; cursor:pointer; background:#222; color:#fff;
}
.alert { padding:10px 12px; border-radius:10px; margin-bottom:12px; }
.alert.success { background:#e8f8ee; color:#116a2e; }
.alert.error   { background:#fdeaea; color:#8a1f1f; }

/* =========================
   FOOTER
   ========================= */
footer { text-align:center; padding:20px 0; }
footer p, footer a { display:inline-block; margin:0 10px; }
/* === HEADER FIXEK: brand valóban középen, kereső jobbra, nincs duplikáció === */
.lp-top{ position:relative; display:flex; align-items:center; justify-content:center; padding:18px 0 16px; }
.lp-brand{ margin:0 auto; text-align:center; }
.lp-menu-toggle{ position:absolute; left:12px; top:50%; transform:translateY(-50%); display:none; background:transparent; border:0; padding:6px; }
.search-inline{ position:absolute; right:12px; top:50%; transform:translateY(-50%); margin:0; }  /* jobb felső sarok */

.search-form{ width:0; overflow:hidden; display:inline-block; vertical-align:middle; transition:width .25s ease; }
.search-inline.is-open .search-form{ width:min(62vw,340px); }
.search-inline-input{ width:100%; border:1px solid #ddd; padding:8px 10px; border-radius:8px; font:inherit; }
.search-toggle{ background:#fff; border:1px solid #ddd; width:36px; height:36px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; cursor:pointer; }

/* Menü sor középen – csak egy példány legyen a markupban */
.lp-nav{ border-top:1px solid #f4f4f4; display:flex; justify-content:center; gap:28px; padding:12px 0 14px; }

/* Mobil: hamburger + kereső sor-törés */
@media (max-width: 420px){
  .lp-menu-toggle{ display:inline-flex; }
  .lp-nav{ display:none; }
  .lp-nav.is-open{
    display:flex; flex-direction:column; gap:8px; background:#fff;
    position:absolute; top:100%; left:0; right:0; padding:10px 14px 14px; border-bottom:1px solid #eee;
  }
}
@media (max-width: 768px){
  .search-inline{ position:static; transform:none; margin-left:auto; }
  .lp-top{ padding:12px 0; }
}
/* ====== RÓLAM OLDAL (slug: rolam) – képelrendezés ====== */
.about-view { padding: 24px 0 48px; }
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;   /* bal fotó fix hasáb */
  gap: 24px;
  align-items: start;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;                  /* álló portré arány */
  object-fit: cover;
  border-radius: 14px;
}
.about-title {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: .02em;
}
.about-body .post-content { margin-top: 8px; }
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ====== WYSIWYG-ben igazított képek támogatása ====== */
/* TinyMCE gyakori osztályai: alignleft/alignright/aligncenter (és kötőjeles változatuk) */
.post-content img.alignleft,
.post-content img.align-left { float: left; margin: 0 16px 12px 0; max-width: 46%; height: auto; }
.post-content img.alignright,
.post-content img.align-right { float: right; margin: 0 0 12px 16px; max-width: 46%; height: auto; }
.post-content img.aligncenter,
.post-content img.align-center { display: block; margin: 10px auto; height: auto; }

@media (max-width: 720px) {
  .post-content img.alignleft,
  .post-content img.align-left,
  .post-content img.alignright,
  .post-content img.align-right { float: none; margin: 10px 0; max-width: 100%; }
}
/* ===== RÓLAM – Jobbra portré, szövegkörbefolyás ===== */
.about-flow{ position: relative; }
.about-flow::after{ content:""; display:block; clear:both; } /* float törlése */

.portrait{
  max-width: 380px;               /* képszélesség a mintához hasonlóan */
  border-radius: 14px;
  overflow: hidden;
}
.portrait img{
  display:block; width:100%;
  aspect-ratio: 3/4;              /* álló portré */
  object-fit: cover;
  border-radius: 14px;
}
.portrait--right{
  float: right;
  margin: 0 0 14px 24px;          /* balra térköz a szöveghez */
}

/* Cím tipó (mintaképes, elegáns) */
.about-title{
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Mobil / keskeny nézet: a kép menjen sorba, ne lebegjen */
@media (max-width: 980px){
  .portrait--right{ float:none; margin: 0 0 16px 0; max-width: 100%; }
}

/* ===== RÓLAM – Két hasábos tartalék layout (ha nem float) ===== */
.about-grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: start;
}
.about-photo img{
  width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:14px;
}
.about-body .post-content{ margin-top:8px; }
@media (max-width:980px){ .about-grid{ grid-template-columns:1fr; } }

/* ===== WYSIWYG képigazítások (ha a szövegben is igazítasz képeket) ===== */
.post-content img.alignleft,.post-content img.align-left { float:left;  margin:0 16px 12px 0; max-width:46%; height:auto; }
.post-content img.alignright,.post-content img.align-right{ float:right; margin:0 0 12px 16px; max-width:46%; height:auto; }
.post-content img.aligncenter,.post-content img.align-center{ display:block; margin:10px auto; height:auto; }
@media (max-width:720px){
  .post-content img.alignleft,.post-content img.align-left,
  .post-content img.alignright,.post-content img.align-right { float:none; margin:10px 0; max-width:100%; }
}
/* ===== RÓLAM – Jobbra portré, szövegkörbefolyás ===== */
.about-view{ padding:24px 0 48px; }
.about-flow{ position:relative; }
.about-flow::after{ content:""; display:block; clear:both; } /* float törlés */

.portrait{ max-width:380px; border-radius:14px; overflow:hidden; }
.portrait img{ display:block; width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:14px; }
.portrait--right{ float:right; margin:0 0 14px 24px; } /* bal térköz a szöveghez */

.about-title{
  margin:0 0 10px;
  font-family:"Cinzel",serif;
  font-weight:600; letter-spacing:.02em;
}

@media (max-width:980px){
  .portrait--right{ float:none; margin:0 0 16px 0; max-width:100%; }
}

/* Tartalék: két hasábos elrendezés (ha nem float-os nézet aktív) */
.about-grid{ display:grid; grid-template-columns:360px 1fr; gap:24px; align-items:start; }
.about-photo img{ width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:14px; }
.about-body .post-content{ margin-top:8px; }
@media (max-width:980px){ .about-grid{ grid-template-columns:1fr; } }

/* WYSIWYG képigazítások – ha a tartalomban is igazítasz képet */
.post-content img.alignleft,.post-content img.align-left{ float:left; margin:0 16px 12px 0; max-width:46%; height:auto; }
.post-content img.alignright,.post-content img.align-right{ float:right; margin:0 0 12px 16px; max-width:46%; height:auto; }
.post-content img.aligncenter,.post-content img.align-center{ display:block; margin:10px auto; height:auto; }
@media (max-width:720px){
  .post-content img.alignleft,.post-content img.align-left,
  .post-content img.alignright,.post-content img.align-right{ float:none; margin:10px 0; max-width:100%; }
}
/* ===== Post flow (hero + lebegő kép + képpár) ===== */
.post-view{ max-width:980px; margin:0 auto; padding:24px 0 48px; }
.post-hero img{ width:100%; height:auto; border-radius:14px; display:block; }
.post-head h1{ margin:12px 0 6px; font-family:"Cinzel",serif; font-weight:600; letter-spacing:.02em; }
.post-meta{ color:#6b7280; font-size:13px; margin-bottom:10px; }

.post-flow{ position:relative; }
.post-flow::after{ content:""; display:block; clear:both; } /* float törlés */
.post-flow p{ margin:0 0 1em; }

.flow-img{ margin:10px 0; }
.flow-img img{ display:block; width:100%; height:auto; border-radius:14px; }

/* teljes szélességű kép */
.flow-img.full img{ width:100%; }

/* jobbra lebegő kép (Rólam beállításhoz is) */
.flow-img.float-right{ float:right; width:min(380px, 40%); margin:0 0 14px 24px; }
@media (max-width:980px){
  .flow-img.float-right{ float:none; width:100%; margin:0 0 16px 0; }
}

/* képpár egymás mellett */
.flow-row.two{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:10px 0; }
.flow-row.two .flow-img{ margin:0; }
@media (max-width:720px){
  .flow-row.two{ grid-template-columns:1fr; }
}

/* fallback tartalom blokk */
.post-content-fallback img{ max-width:100%; height:auto; border-radius:10px; }
/* ===== RÓLAM – floatos nézetek ===== */
.about-view{ padding:24px 0 48px; }
.about-flow{ position:relative; }
.about-flow::after{ content:""; display:block; clear:both; } /* float törlés */

.portrait{ max-width:380px; border-radius:14px; overflow:hidden; }
.portrait img{ display:block; width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:14px; }
.portrait--right{ float:right; margin:0 0 14px 24px; } /* bal térköz a szövegre */
.portrait--left { float:left;  margin:0 24px 14px 0; }  /* jobb térköz a szövegre */

.about-title{ margin:0 0 10px; font-family:"Cinzel",serif; font-weight:600; letter-spacing:.02em; }

@media (max-width:980px){
  .portrait--right, .portrait--left { float:none; margin:0 0 16px 0; max-width:100%; }
}

/* ===== RÓLAM – két hasáb ===== */
.about-grid{ display:grid; grid-template-columns:360px 1fr; gap:24px; align-items:start; }
.about-photo img{ width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:14px; }
.about-body .post-content{ margin-top:8px; }
@media (max-width:980px){ .about-grid{ grid-template-columns:1fr; } }

/* ===== Normál poszt borítókép ===== */
.post-view{ padding:18px 0 40px; }
.post-cover img{ width:100%; height:auto; object-fit:cover; border-radius:14px; display:block; }
/* ===== Bejegyzés oldal – hero + régi „flow” ===== */
.post-view{ max-width:980px; margin:0 auto; padding:24px 0 48px; }
.post-cover img{ width:100%; height:auto; display:block; border-radius:14px; object-fit:cover; }
.post-head h1{ margin:12px 0 6px; font-family:"Cinzel",serif; font-weight:600; letter-spacing:.02em; }
.post-meta{ color:#6b7280; font-size:13px; margin-bottom:10px; }

.post-flow p{ margin:0 0 1em; }
.flow-img{ margin:12px 0; }
.flow-img img{ width:100%; height:auto; border-radius:14px; display:block; }

.flow-row.two{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin:12px 0; }
.flow-row.two .flow-img{ margin:0; }

@media (max-width:720px){
  .flow-row.two{ grid-template-columns:1fr; }
}
/* ===== Header – stabil elrendezés, külön keresősor ===== */
.lp-header { background:#fff; border-bottom:1px solid #eee; color:#111; }
.lp-top{ position:relative; display:flex; align-items:center; justify-content:center; padding:18px 0 16px; }
.lp-brand{ margin:0 auto; text-align:center; font-family:"Cinzel",serif; font-weight:600; letter-spacing:.12em; text-transform:uppercase; font-size:clamp(22px,4.2vw,34px); }
.lp-menu-toggle{ position:absolute; left:12px; top:50%; transform:translateY(-50%); display:none; background:transparent; border:0; padding:6px; }
.search-toggle{ position:absolute; right:12px; top:50%; transform:translateY(-50%); background:#fff; border:1px solid #ddd; width:36px; height:36px; border-radius:999px; display:flex; align-items:center; justify-content:center; cursor:pointer; }
  /* Mobil: foglalj helyet a bal/jobb ikonoknak, hogy ne fusson rá a logó szövege */
  .lp-brand{
    width:100%;
    max-width: calc(100% - 128px);
    padding: 0 64px;
    box-sizing: border-box;
  }

/* Menü sor középen */
.lp-nav{ border-top:1px solid #f4f4f4; display:flex; justify-content:center; gap:28px; padding:12px 0 14px; }
.lp-nav a{ font-weight:500; color:#2a2a2a; padding:6px 2px; border-bottom:2px solid transparent; transition:color .2s, border-color .2s; }
.lp-nav a:hover{ color:#000; border-bottom-color:#000; }

/* Mobil menü */
@media (max-width:420px){
  .lp-menu-toggle{ display:inline-flex; }
  
  /* MOBIL HEADER FIX: ikonok ne lógjanak rá a brand feliratra */
  .lp-top{ padding:12px 0; }
  .lp-brand{
    padding: 0 64px;
    max-width: calc(100% - 128px);
    font-size: clamp(18px, 6.2vw, 26px);
    letter-spacing: .5px;
    line-height: 1.1;
    white-space: normal;
    box-sizing: border-box;
  }
.lp-nav{ display:none; }
  .lp-nav.is-open{
    display:flex; flex-direction:column; gap:8px; background:#fff;
    position:absolute; top:100%; left:0; right:0; padding:10px 14px 14px; border-bottom:1px solid #eee; z-index:10;
  }
}

/* KERESŐ SOR – külön sáv a menü alatt */
.lp-searchbar{ display:none; border-top:1px solid #eee; background:#fff; }
.lp-searchbar.is-open{ display:block; }
.lp-searchbar .container{ padding:12px 20px; }
.lp-search-form{ display:flex; gap:8px; justify-content:center; }
.lp-search-input{ width:100%; max-width:640px; padding:10px 12px; border:1px solid #ddd; border-radius:10px; font:inherit; }
.lp-search-submit{ padding:10px 14px; border-radius:10px; border:1px solid #ddd; background:#f7f7f7; cursor:pointer; }
@media (max-width:600px){ .lp-search-form{ justify-content:stretch; } .lp-search-input{ max-width:none; } }

/* Kapcsold ki a korábbi, TOP-sorban nyíló keresőmező stílusát, ha még megvan */
.search-inline, .search-inline .search-form{ display:none !important; }
/* ===== Kapcsolat – kis ikonos kártyák ===== */
.contact-page h1 { margin: 18px 0 16px; }

.contact-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin: 8px 0 28px;
}
@media (max-width: 1100px){
  .contact-cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px){
  .contact-cards{ grid-template-columns: 1fr; }
}

.contact-card{
  display:flex; align-items:center; gap:12px;
  padding:16px 18px;
  border:1px solid #ededed; border-radius:14px; background:#fff;
  text-decoration:none; color:inherit;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.contact-card:hover{
  border-color:#e5e5e5;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

.contact-icon{
  width:36px; height:36px; border-radius:10px;
  display:grid; place-items:center;
  background:#f7f7f7; color:#222;
  flex: 0 0 auto;
}
.contact-icon svg{ display:block; }

.contact-meta .label{
  display:block; text-transform:uppercase;
  letter-spacing:.14em; font-size:12px; color:#6b7280; margin-bottom:2px;
}
.contact-meta .value{
  display:block; font-weight:500; line-height:1.3;
  word-break: break-word; /* hosszú URL ne lógjon ki */
}

/* ===== Kapcsolati űrlap – könnyű rács ===== */
.contact-form h2{ margin: 8px 0 12px; }
.form-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:16px;
}
.form-row{ display:flex; flex-direction:column; gap:6px; }
.form-row.full{ grid-column: 1 / -1; }
.form-grid input, .form-grid textarea{
  border:1px solid #ddd; border-radius:10px; padding:10px 12px; font:inherit;
}
.form-actions{ grid-column: 1 / -1; text-align:right; }
.btn{ padding:10px 14px; border:1px solid #ddd; border-radius:10px; background:#f7f7f7; cursor:pointer; }
@media (max-width: 680px){
  .form-grid{ grid-template-columns: 1fr; }
}
/* Kapcsolat kártyák – szebb tördelés, ellipszis, egysoros értékek */
.contact-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin: 8px 0 28px;
}
@media (max-width: 1100px){ .contact-cards{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px){  .contact-cards{ grid-template-columns: 1fr; } }

.contact-card{
  display:flex; align-items:center; gap:12px;
  padding:16px 18px; border:1px solid #ededed; border-radius:14px; background:#fff;
  text-decoration:none; color:inherit; transition: box-shadow .15s, transform .15s, border-color .15s;
  min-height:68px;
}
.contact-card:hover{ border-color:#e5e5e5; box-shadow:0 2px 14px rgba(0,0,0,.06); transform:translateY(-1px); }
.contact-icon{ width:36px; height:36px; border-radius:10px; display:grid; place-items:center; background:#f7f7f7; color:#222; flex:0 0 auto; }
.contact-meta{ min-width:0; } /* nagyon fontos az ellipszishez */
.contact-meta .label{ display:block; text-transform:uppercase; letter-spacing:.14em; font-size:12px; color:#6b7280; margin-bottom:2px; }
.contact-meta .value{
  display:block; font-weight:500; line-height:1.3;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%;
}
.contact-meta{ min-width:0; }
.contact-meta .value{
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; max-width:100%;
}


/* --- SEO breadcrumbs --- */
.breadcrumbs{ font-size:14px; color:#6b7280; margin:10px 0 14px; }
.breadcrumbs a{ color:inherit; text-decoration:none; border-bottom:1px dotted transparent; }
.breadcrumbs a:hover{ border-bottom-color: currentColor; }
.breadcrumbs span{ margin:0 6px; }
/* ===== Galériák oldal – cím és bevezető, Bloghoz igazítva ===== */

.gallery-index .content-wrap {
  /* ugyanakkora hasáb, mint a blogkártyák */
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
}

.gallery-index-header {
  max-width: none;
  margin: 0 0 18px;
  text-align: left;
}

/* Oldalcím: ugyanolyan sans serif, méret és vastagság, mint a "Blog" h1 */
.gallery-index-title {
  font-family: inherit;   /* ne Cinzel, hanem a body betűtípusa */
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 8px;
}

/* Rövid leírás a cím alatt – balra zárt, szűkebb sorban */
.gallery-index-lead {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  max-width: 540px;
}
/* Galéria részletes oldal – képrács sorrend javítása */
.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.gallery-image {
  break-inside: auto;      /* már nem szükséges, de nem árt */
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}

.gallery-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
  filter: brightness(0.97);
}
.hp{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
  overflow:hidden;
}
