/*
  PragaClub Simple (Dreamweaver-friendly) — Elegant colors
  - No frameworks, no build tools, minimal JS
  - Keep it fast: system font, simple layout, light effects only
*/

:root{
  --bg: #ffffff;
  --alt: #f6faff;

  --text: #475569;
  --heading: #0f172a;
  --muted: #6B7280;

  --line: #facc15;
  --hover: #000000;

  --brand: #111827;
  --brand2: #000000;

  --radius: 18px;
  --shadow: 0 10px 24px rgba(17,24,39,.08);
  --wrap: 1100px;
}

h2 { color: #2B2E34; }
h3 { color: #3A3A3A; }


*{ box-sizing: border-box; }
html,body{ height: 100%; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1,h2,h3{ color: var(--heading); }

img{ max-width: 100%; display: block; }

.wrap{
  width: min(var(--wrap), calc(100% - 2rem));
  margin: 0 auto;
}

a{ color: inherit; }
.link{
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link:hover{ color: var(--hover); text-decoration-thickness: 2px; }

/* Accessibility */
.sr{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip{
  position:absolute; left:-999px; top:0;
  background: var(--heading); color:#fff;
  padding:.75rem 1rem; border-radius: 14px;
}
.skip:focus{ left: 1rem; top: 1rem; z-index: 9999; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: .75rem;
  text-decoration:none;
  min-width: 220px;
}
/* FONTOS: szöveges (260x60) SVG logóhoz */
.brand__logo{
  height: 44px;
  width: auto;
  max-width: 260px;
  border-radius: 0;
}
.brand__text strong{ font-weight: 900; color: var(--heading); }
.brand__text{
  display:flex; flex-direction:column;
  gap: .12rem;
  font-size: 1.05rem;
}
.brand__text small{
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}

/* Nav (top) */
.nav{
  display:flex;
  align-items:center;
  gap: .15rem;
}

/* Fő linkek: szürke, hover: fekete */
.nav a{
  padding: .55rem .8rem;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 700;
  color: var(--text);
  transition: color .12s ease, background .12s ease;
}
.nav a:hover{
  color: var(--hover);
  background: #F3F4F6; /* finom hover háttér */
}

/* CTA */
.nav__cta{
  background: var(--brand);
  color: #fff !important;
}
.nav__cta:hover{
  background: var(--brand2);
  color:#fff !important;
}

/* Mobile nav button */
.navbtn{
  display:none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: .55rem .7rem;
}
.navbtn__lines{
  display:block;
  width: 22px; height: 2px;
  background: var(--heading);
  position: relative;
}
.navbtn__lines::before,
.navbtn__lines::after{
  content:"";
  position:absolute; left:0;
  width: 22px; height: 2px;
  background: var(--heading);
}
.navbtn__lines::before{ top: -7px; }
.navbtn__lines::after{ top: 7px; }

/* Hero */
.hero{
  background: linear-gradient(180deg, #f8fafc, var(--alt));
  padding: 3.2rem 0 2.2rem;
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 1.25rem;
  align-items:start;
}
.kicker{
  margin: 0 0 .5rem;
  color: var(--muted);
  font-weight: 700;
}
.hero h1{
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 3.2vw, 3.0rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-lead{
  padding: 2.4rem 0 2.6rem;
  background: #ffffff;
  border-top: 1px solid #e5e7eb;   /* elegáns szürke vonal */
}


.hero__actions{
  display:flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.checks{ margin: .8rem 0 0; padding-left: 1.1rem; color: var(--heading); opacity:.85; }

.hero__card{
  border: 1px solid var(--line);
  border-top: 1px solid var(--accent-blue);   /* logó piros */
  border-radius: var(--radius);
  background: #fff;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero__card h2{
  margin: 0 0 .75rem;
  font-size: 1.1rem;
  color: var(--heading);                 /* cím is piros */
}

.mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-bottom: .75rem;
}

}
.mini__item{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: .75rem;
}
.mini__num{ font-weight: 900; font-size: 1.25rem; color: var(--heading); }
.mini__label{ color: var(--muted); font-size: .88rem; }

/* Sections */
.section{ padding: 3rem 0; }
.section--alt{
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{ margin-bottom: 1.15rem; }
.section__head h2{ margin: 0 0 .35rem; font-size: 1.65rem; }
.muted{ color: var(--muted); }

/* Grid + cards */
.grid{ display:grid; gap: 1rem; }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--4{ grid-template-columns: repeat(4, 1fr); }

.card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 18px rgba(17,24,39,.05);
}
.card h3{ margin-top: 0; }

.tile{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 8px 18px rgba(17,24,39,.05);
}
.tile__media{
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #E5E7EB, #F3F4F6);
}
.tile__body{ padding: 1rem; }
.tile__body h3{ margin: 0 0 .25rem; font-size: 1.05rem; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: .75rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration:none;
}
.btn:hover{ background: var(--brand2); }
.btn--ghost{
  background: transparent;
  color: var(--heading);
  border-color: var(--line);
}
.btn--ghost:hover{ background: #F3F4F6; color: var(--hover); }

/* Form */
.form label{
  display:grid; gap: .35rem; margin-bottom: .85rem;
  font-weight: 700; color: var(--heading); opacity:.88;
}
input, textarea{
  width:100%;
  padding: .75rem .85rem;
  border: 1px solid #D1D5DB;
  border-radius: 16px;
  font: inherit;
  background:#fff;
  color: var(--heading);
}
input:focus, textarea:focus{
  outline: 3px solid rgba(17,24,39,.12);
  border-color: #9CA3AF;
}
.form__note{ margin-top: .8rem; }

.list{ margin: 0; padding-left: 1.1rem; }
.divider{ height: 1px; background: var(--line); margin: 1rem 0; }
.social{ display:flex; gap: .6rem; flex-wrap: wrap; }
.pill{
  display:inline-flex;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration:none;
  font-weight: 800;
  color: var(--text);
}
.pill:hover{ background: #F3F4F6; color: var(--hover); }

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  background: #fff;
}
.footer__inner{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__title{ margin: 0; font-weight: 900; color: var(--heading); }
.footer__meta{ margin: .15rem 0 0; }
.footer__right{ text-align: right; }
.footer__right p{ margin: 0 0 .25rem; }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .navbtn{ display:inline-flex; }
  .nav{
    position: absolute;
    right: 1rem;
    top: 74px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 40px rgba(17,24,39,.16);
    padding: .6rem;
    display:none;
    flex-direction: column;
    min-width: 240px;
    align-items: stretch;
  }
  .nav a{ padding: .75rem .9rem; }
  .nav.is-open{ display:flex; }
  .grid--2{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .footer__right{ text-align: left; }
}

/* Nav list structure (dropdown) */
.nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav__item{ position: relative; display:flex; align-items:center; }
.nav__link{ display:inline-flex; align-items:center; }

.nav__item--has > .nav__toggle{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__item--has > .nav__toggle::before{
  content:"";
  position:absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid #6B7280;
  border-bottom: 2px solid #6B7280;
  transform: translate(-50%,-60%) rotate(45deg);
  opacity: .9;
}

/* Dropdown */
/* Dropdown */
.nav__sub{
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(17,24,39,.14);
  padding: .45rem;
  display: none;
  z-index: 999;
}

/* Hover-bridge – hogy ne szakadjon meg az egér */
.nav__sub::before{
  content:"";
  position:absolute;
  left:0;
  top:-10px;
  width:100%;
  height:10px;
}
/* Dropdown menüpontok – szellősebb elrendezés */
.nav__sub a{
  display: block;
  padding: .75rem 1rem;   /* nagyobb kattintható felület */
  line-height: 1.4;       /* ne csússzanak össze a sorok */
}

.nav__sub li + li{
  margin-top: .2rem;     /* finom térköz a menüpontok között */
}

/* Desktop: hover open */
@media (min-width: 761px){
  .nav__item--has:hover > .nav__sub{ display:block; }
  .nav__item--has:hover > .nav__toggle::before{ transform: translate(-50%,-35%) rotate(225deg); }
  .nav__toggle{ display:none; } /* keep menu clean on desktop */
}

/* Mobile CTA button (bottom sticky) */
.mobile-cta{
  display:none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  z-index: 60;
  padding: .9rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(17,24,39,.22);
}

/* Anchor offsets (for sticky header) */
.anchors span{ display:block; position: relative; top: -90px; height: 0; visibility: hidden; }

@media (max-width: 760px){
  .nav__list{ flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__item{ flex-direction: column; align-items: stretch; }
  .nav__item > a{ width: 100%; }
  .nav__toggle{ position: absolute; right: .55rem; top: .35rem; display:inline-flex; }
  .nav__item--has{ padding-right: 2.2rem; }
  .nav__sub{
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 .35rem;
    margin-top: .25rem;
  }
  .nav__sub a{ padding-left: 1.1rem; font-weight: 700; }
  .nav__item.sub-open > .nav__sub{ display:block; }
  .nav__item.sub-open > .nav__toggle::before{ transform: translate(-50%,-35%) rotate(225deg); }
  .mobile-cta{ display: inline-flex; }
  body{ padding-bottom: 72px; } /* space for sticky CTA */
}
.nav__cta {
  background: transparent;
  color: #4B5563 !important;
  border: 1px solid #111111;
}

.nav__cta:hover {
  background: #111111;
  color: #111111 !important;
}
.top-accent{
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-blue),
    var(--accent-yellow),
    var(--accent-pink)
  );
}

.hero__copy h1{
  margin-top: 1.4rem;     /* tér a kicker alatt */
  margin-bottom: 1.6rem;  /* tér a lead előtt */
}

@media (max-width: 760px){
  .hero__copy h1{
    margin-top: 1.1rem;
    margin-bottom: 1.3rem;
  }
}
/* ===== Mobile hamburger visibility fix ===== */
.navbtn{
  border-color: #e5e7eb;     /* maradhat finom */
  background: #ffffff;
}

.navbtn__lines,
.navbtn__lines::before,
.navbtn__lines::after{
  background: #111111 !important;  /* sötét, jól látható */
}
.hero__intro{
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid #e5e7eb;
}

.hero__intro p{
  max-width: 860px;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1rem;
  color: #777777;
}
@media (max-width: 760px){
  .hero__intro{
    margin-top: 1.6rem;
    padding-top: 1.4rem;
  }
}
.hero > .lead{
  text-align: center;
  margin: 2rem auto 1.8rem;
  max-width: 900px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #777777;
}
/* ===== Hero motto card ===== */
.hero-motto{
  padding: 2.4rem 0 2.8rem;
  background: linear-gradient(180deg,  var(--alt), #f8fafc);
}

.hero__card--wide{
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-top: 1px solid var(--accent-pink);   /* logó piros hangsúly */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 2.4rem;
}

.hero-motto__text{
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #4A4A4A;
  margin: 0;
  font-weight: 600;
}
@media (max-width: 760px){
  .hero__card--wide{
    padding: 1.4rem 1.2rem;
  }

  .hero-motto__text{
    font-size: 1.05rem;
  }
}
/* Látnivalók – grid ne essen szét */
#latnivalok .grid{
  grid-template-columns: repeat(3, 1fr);
}

/* Tablet */
@media (max-width: 980px){
  #latnivalok .grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil */
@media (max-width: 560px){
  #latnivalok .grid{
    grid-template-columns: 1fr;
  }
}
/* Teljes szélességű banner kép */
.full-banner{
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin: 2rem 0;
}

.full-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center; /* EZ A LÉNYEG */
  display: block;
}


/* Mobilon alacsonyabb legyen */
@media (max-width: 760px){
  .full-banner{
    max-height: 260px;
    margin: 1.5rem 0;
  }
}
/* Prága Club – brand banner */
.brand-banner{
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--bg);
}

.brand-banner img{
  max-width: 980px;
  width: 100%;
  height: auto;
  display: block;
}
.youtube-card img{
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.brand-banner {
  width: 100%;
  height: 320px;              /* banner magasság – igény szerint */
  overflow: hidden;
}

.brand-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* kitölti a teret */
  object-position: center;    /* a kép közepe marad látható */
  display: block;
}
@media (max-width: 768px) {
  .brand-banner {
    height: 220px;
  }
}

/* ===== INDEX FAQ BLOKK ===== */

#faq-index {
  padding: 4rem 1rem;
  background: #ffffff;
}

#faq-index .wrap {
  max-width: 900px;
  margin: 0 auto;
}

#faq-index h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

#faq-index .muted {
  text-align: center;
  color: #666;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  background: #fafafa;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq__item:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.faq__question {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #111;
}

.faq__answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.faq__answer strong {
  font-weight: 700;
}

/* ===== MOBIL ===== */
@media (max-width: 640px) {
  #faq-index {
    padding: 3rem 1rem;
  }

  #faq-index h2 {
    font-size: 1.7rem;
  }

  .faq__item {
    padding: 1.25rem;
  }
}
.hero__seo{
  max-width: 62ch;
  margin-top: 1rem;
  line-height: 1.6;
  font-size: 1rem;
  opacity: .95;
}

.hero__cta{
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.btn{
  display: inline-block;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn--primary{
  background: #111;
  color: #fff;
}

.btn--ghost{
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.hero__cardnote{
  margin-top: 1rem;
  color: #444;
  line-height: 1.5;
  font-size: .95rem;
}
/* Kiegészítő programok */
.extras-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}
@media (max-width: 980px){
  .extras-grid{ grid-template-columns:1fr; }
}

.extras-card{
  display:flex;
  gap:14px;
  padding:16px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.extras-icon{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.04);
  color:#222;
  flex:0 0 44px;
}

.extras-body h3{ margin:0 0 8px; }
.extras-body p{ margin:0 0 10px; }

.price-list{
  list-style:none;
  padding:0;
  margin:10px 0 0;
}
.price-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-top:1px dashed rgba(0,0,0,.12);
}
.price-list li span{ color:rgba(0,0,0,.75); }
.price-list li strong{ white-space:nowrap; }

.note{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.04);
}
/* Gyakorlati infók kártyák */
.info-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
  margin-top:16px;
}
@media (max-width: 980px){
  .info-grid{ grid-template-columns:1fr; }
}

.info-card{
  display:flex;
  gap:14px;
  padding:16px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.info-card--accent{
  border-color: rgba(0,0,0,.12);
}

.info-ico{
  width:44px;
  height:44px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.04);
  color:#222;
  flex:0 0 44px;
}

.info-body h3{ margin:0 0 8px; }
.info-body p{ margin:0 0 10px; }

.mini-box{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(0,0,0,.04);
}

.time-list{
  margin:8px 0 0;
  padding-left:18px;
}
.time-list li{ margin:6px 0; }
.time-list span{ font-weight:600; margin-right:8px; }

.bullets{
  margin:8px 0 0;
  padding-left:18px;
}
.bullets li{ margin:6px 0; }

/* === GRID SAFETY FIX === */
.grid{
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
/* === INDEX / PROGRAMOK – egységes kártyaképek (Top 10 mintára) === */
.tile__media {
  height: 220px;
  overflow: hidden;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Utazásszervezés – lépések jobb olvashatóság */
.section__head + .card .list li {
  margin-bottom: 1.2rem;   /* nagyobb tér a lépések között */
  line-height: 1.7;        /* levegősebb szöveg */
}

.section__head + .card .list li strong {
  display: inline-block;
  margin-bottom: .35rem;   /* tér a cím és a szöveg között */
}

/* === Card képek – egységes méret (Prága Top 10 stílus) ===
   Csak azokra a kártyákra hat, ahol a kép közvetlenül a .card alatt van.
   (pl. Top 10 látnivaló kártyák) */
.card > img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-bottom: .75rem;
}
.hero__cardimg{
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin: 10px 0 .6rem;  /* ↑ feljebb tolva */
  display: block;
}
/* Guide card image */
.guide__img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  margin-bottom: 14px;
}
.hero__cardimg--contain {
  object-fit: contain !important;
  height: auto !important;
}
.hero__image img {
  width: 100%;
  height: auto;          /* ez a kulcs */
  display: block;
  object-fit: cover;     /* ha mégis kapna magasságot */
  border-radius: 12px;
}
.section__image{
  margin: 24px 0 40px;
  display: flex;
  justify-content: center; /* biztos közép */
}

.section__imageLink{
  display: block;
  width: 100%;
  max-width: 760px;        /* itt szabályozod a “nem túl nagy”-ot */
}

.section__imageImg{
  display: block;
  width: 100%;             /* kitölti a max-width-et, nem nyomódik össze aránytalanul */
  height: auto;
  border-radius: 12px;
}