/* =========================
   HOTEL – LIGHT THEME (scoped)
   File: /hotel/hotel.css
   SCOPE: body.page-hotel
   ========================= */

/* ---------- Base reset / háttér ---------- */
:root{
  --hotel-bg:#f6f8fc;
  --hotel-card:#ffffff;
  --hotel-text:#0f172a;
  --hotel-muted:#475569;
  --hotel-line:rgba(15,23,42,.10);

  --hotel-blue:#2563eb;
  --hotel-blue-2:#1d4ed8;

  --hotel-shadow:0 14px 36px rgba(15,23,42,.06);
  --hotel-radius:16px;
  --hotel-radius2:12px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body.page-hotel{
  margin:0 !important;
  padding:0 !important;
  background: var(--hotel-bg) !important;
  color: var(--hotel-text);
}

/* HOTEL: szedd le a felső “spacer” sávokat, ha valami globál csinálja */
body.page-hotel .header-spacer,
body.page-hotel .top-spacer,
body.page-hotel .navbar-spacer{
  display:none !important;
  height:0 !important;
}

body.page-hotel main,
body.page-hotel .hotel-page{
  margin-top:0 !important;
  padding-top:0 !important;
}

/* ---------- MINI HEADER (header-mini.php) ---------- */
body.page-hotel .mini-header{
  margin-top:0 !important;
  background:#ffffff;
  border-bottom:1px solid rgba(15,23,42,.10);
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}

body.page-hotel .mini-header-inner{
  max-width:1100px;
  margin:0 auto;
  padding:8px 14px;
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  gap:14px;
  align-items:center;
}

body.page-hotel .mini-brand img{
  height:36px;
  display:block;
}

body.page-hotel .mini-title strong{
  display:block;
  font-size:15px;
  font-weight:800;
  color:var(--hotel-text);
}

body.page-hotel .mini-title span{
  font-size:12px;
  color:#64748b;
}

body.page-hotel .mini-contact{
  text-align:right;
  font-size:12px;
  color:#334155;
}
body.page-hotel .mini-contact span{
  display:block;
  white-space:nowrap;
}

body.page-hotel .mini-status{
  text-align:right;
  font-size:12px;
}
body.page-hotel .mini-status .status{
  display:inline-block;
  padding:4px 8px;
  border-radius:10px;
  font-weight:700;
  font-size:12px;
}
body.page-hotel .mini-status .status.open{
  background:rgba(34,197,94,.15);
  color:#166534;
}
body.page-hotel .mini-status .status.closed{
  background:rgba(239,68,68,.15);
  color:#991b1b;
}
body.page-hotel .mini-status small{
  display:block;
  margin-top:2px;
  color:#64748b;
}

@media (max-width:900px){
  body.page-hotel .mini-header-inner{
    grid-template-columns:auto 1fr;
    gap:10px;
  }
  body.page-hotel .mini-contact,
  body.page-hotel .mini-status{
    display:none;
  }
}

/* ---------- Oldal wrapper ---------- */
body.page-hotel .hotel-page{
  padding:22px 0 34px;
}

/* ---------- Alap kártyák / tipográfia ---------- */
body.page-hotel .hotel-card{
  background:var(--hotel-card);
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--hotel-radius);
  box-shadow:var(--hotel-shadow);
  padding:18px;
}

body.page-hotel .hotel-title{
  margin:0 0 6px;
  font-size:22px;
  line-height:1.25;
  color:var(--hotel-text);
}

body.page-hotel .hotel-muted{
  margin:0 0 14px;
  color:var(--hotel-muted);
  font-size:14px;
  line-height:1.55;
}

body.page-hotel .hotel-pricebox{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--hotel-radius2);
  padding:12px 14px;
  margin:10px 0 14px;
  color:var(--hotel-text);
}

body.page-hotel .hotel-error{
  margin:10px 0 14px;
  padding:10px 12px;
  border-radius:var(--hotel-radius2);
  border:1px solid rgba(220,38,38,.25);
  background:rgba(220,38,38,.08);
  color:#991b1b;
}

/* ---------- Form ---------- */
body.page-hotel .hotel-form label{
  display:block;
  margin:10px 0 6px;
  color:#334155;
  font-size:13px;
  font-weight:700;
}

body.page-hotel .hotel-form input,
body.page-hotel .hotel-form select{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(17,24,39,.14);
  background:#fff;
  color:var(--hotel-text);
  outline:none;
}

body.page-hotel .hotel-form input:focus,
body.page-hotel .hotel-form select:focus{
  border-color:rgba(37,99,235,.35);
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}

/* gomb */
body.page-hotel .hotel-btn{
  width:100%;
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(37,99,235,.22);
  background:rgba(37,99,235,.10);
  color:#1d4ed8;
  font-weight:800;
  cursor:pointer;
}
body.page-hotel .hotel-btn:hover{ background:rgba(37,99,235,.14); }

body.page-hotel .hotel-actions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
body.page-hotel .hotel-actions a{
  color:#1d4ed8;
  text-decoration:none;
  font-weight:700;
}
body.page-hotel .hotel-actions a:hover{ text-decoration:underline; }

/* ---------- HITEL oldal (hitel-*) ---------- */
body.page-hotel .hitel-wrap{
  max-width:980px;
  margin:0 auto;
  padding:0;
}

body.page-hotel .hitel-card{
  display:grid;
  gap:14px;
}

body.page-hotel .hitel-head,
body.page-hotel .hitel-section{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--hotel-radius);
  box-shadow:var(--hotel-shadow);
}

body.page-hotel .hitel-head{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
  padding:18px;
}

body.page-hotel .hitel-ic{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.18);
  color:#1d4ed8;
}

body.page-hotel .hitel-title{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.25;
  color:var(--hotel-text);
}

body.page-hotel .hitel-lead{
  margin:0 0 10px;
  color:var(--hotel-muted);
  font-size:13.5px;
  line-height:1.55;
}

body.page-hotel .hitel-warn{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(245,158,11,.22);
  background:rgba(245,158,11,.10);
  color:#92400e;
  font-size:13px;
  line-height:1.45;
}

body.page-hotel .hitel-section{ padding:16px 18px; }

body.page-hotel .hitel-label{
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#64748b;
  margin:0 0 10px;
}

body.page-hotel .hitel-val{
  color:var(--hotel-text);
  font-size:14px;
  line-height:1.65;
}

/* inline színek felülírása */
body.page-hotel .hitel-section .hitel-val[style]{ color:var(--hotel-text) !important; }

body.page-hotel .hitel-meta{
  margin-top:12px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#f8fafc;
  color:var(--hotel-text);
  font-size:13.5px;
  line-height:1.6;
}

body.page-hotel .hitel-cta{
  margin-top:14px;
  display:grid;
  gap:10px;
  justify-items:center;
}

body.page-hotel .hitel-time{
  width:100%;
  color:#64748b;
  font-size:12.5px;
}

body.page-hotel .hitel-btn{ width:min(520px, 100%); }

@media (max-width:640px){
  body.page-hotel .hitel-head{ grid-template-columns:34px 1fr; padding:14px; }
  body.page-hotel .hitel-section{ padding:14px; }
}

/* ---------- SUCCESS oldal kompat (wrap/card/pricebox/actions) ---------- */
body.page-hotel .wrap{
  max-width:980px;
  margin:0 auto;
  padding:22px 14px 34px;
}

body.page-hotel .card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--hotel-radius);
  box-shadow:var(--hotel-shadow);
  padding:18px;
}

body.page-hotel .card h1{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
  color:var(--hotel-text);
}

body.page-hotel .card h2{
  margin:16px 0 6px;
  font-size:16px;
  line-height:1.3;
  color:var(--hotel-text);
}

body.page-hotel .card p{
  margin:0 0 10px;
  color:#334155;
  line-height:1.6;
}

body.page-hotel .pricebox{
  background:#f8fafc;
  border:1px solid rgba(15,23,42,.10);
  border-radius:12px;
  padding:12px 14px;
  margin:10px 0 14px;
  color:var(--hotel-text);
}

body.page-hotel .actions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
body.page-hotel .actions a{
  color:#1d4ed8;
  text-decoration:none;
  font-weight:700;
}
body.page-hotel .actions a:hover{ text-decoration:underline; }

/* ---------- Linkek egységes ---------- */
body.page-hotel a{ color:#1d4ed8; }

/* =========================================================
   HOTEL – FOOTER (includes/footer.php)
   CÉL: GLS csomag footer kinézet (világos gradient + badge)
   Markup: .app-footer + BEM classok
   ========================================================= */

body.page-hotel .app-footer{
  margin-top:40px;
  padding-top:30px;
  background:linear-gradient(180deg, #f1f6ff, #eaf1ff);
  border-top:1px solid rgba(37,99,235,.18);
}

body.page-hotel .app-footer__inner{
  max-width:1160px;
  margin:0 auto;
  padding:0 16px 20px;
}

body.page-hotel .app-footer__grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
  align-items:start;
}

@media (max-width:980px){
  body.page-hotel .app-footer__grid{ grid-template-columns:1fr; }
}

body.page-hotel .app-footer__title{
  font-weight:900;
  font-size:14px;
  color:#0f172a;          /* <-- címek láthatók */
  margin:0 0 8px;
}

body.page-hotel .app-footer__text,
body.page-hotel .app-footer__muted{
  color:#475569;
  font-size:13px;
  line-height:1.5;
}

body.page-hotel .app-footer__link{
  color:#475569;
  text-decoration:none;
}
body.page-hotel .app-footer__link:hover{ text-decoration:underline; }

body.page-hotel .app-footer__list{
  list-style:none;
  padding:0;
  margin:0;
}
body.page-hotel .app-footer__list li{ margin-bottom:6px; }

body.page-hotel .app-footer__bottom{
  margin-top:18px;
  padding-top:12px;
  border-top:1px solid rgba(37,99,235,.12);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;

  font-size:12px;
  color:#475569;
}

@media (max-width:980px){
  body.page-hotel .app-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

body.page-hotel .app-footer__badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

body.page-hotel .app-footer__badge{
  background:#ffffff;
  border:1px solid rgba(37,99,235,.25);
  border-radius:14px;
  padding:8px 10px;
  font-weight:900;
  font-size:12px;
  color:#1e3a8a;
  box-shadow:0 6px 18px rgba(37,99,235,.18);
}
/* ===== HOTEL FOOTER ALIGN FIX (legvégére) ===== */

/* biztos balra igazítás minden oszlopban */
body.page-hotel .app-footer__grid,
body.page-hotel .app-footer__col{
  justify-items: start !important;
  align-items: start !important;
  text-align: left !important;
}

/* címek: egységes sor-magasság + kis minimum magasság */
body.page-hotel .app-footer__title{
  display:block !important;
  line-height: 1.15 !important;
  min-height: 18px !important;   /* vizuális egységesítés */
  margin: 0 0 10px !important;
}

/* bottom sor: ne legyen “jobbra tolás” */
body.page-hotel .app-footer__bottom{
  justify-content: space-between !important;
}

/* badge-ek: tiltsuk a korábbi margin-left:auto / float öröklést */
body.page-hotel .app-footer__badges{
  margin-left: 0 !important;
  float: none !important;
  justify-content: flex-start !important;
}

/* ha bárhol lenne float a footerben */
body.page-hotel .app-footer__inner *{
  float: none !important;
}
/* =========================================================
   HOTEL – közös includes/footer.php FIX (site-footer)
   - ne tapadjon jobbra
   - címek azonos “magasságérzet”
   - badge-ek ne tolják el jobbra
   ========================================================= */

body.page-hotel footer.site-footer{
  /* ha kell: ugyanaz a világos footer háttér mint GLS */
  background: linear-gradient(180deg, #f1f6ff, #eaf1ff) !important;
  border-top: 1px solid rgba(37,99,235,.18) !important;
}

/* belső keret balra rendezve */
body.page-hotel footer.site-footer .footer-inner{
  max-width: 1160px !important;
  margin: 0 auto !important;
  padding: 30px 16px 20px !important;
}

/* GRID: fix balra igazítás */
body.page-hotel footer.site-footer .footer-grid{
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  gap: 24px !important;
  align-items: start !important;
  justify-items: start !important;
}

/* minden oszlop tartalma balra */
body.page-hotel footer.site-footer .footer-col{
  text-align: left !important;
  justify-self: start !important;
}

/* CÍMEK: látható + egységes sor-magasság */
body.page-hotel footer.site-footer .footer-title{
  display: block !important;
  color: #0f172a !important;
  font-weight: 900 !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  min-height: 18px !important;
  margin: 0 0 10px !important;
}

/* badge sor NE menjen jobbra (ha valahol volt margin-left:auto) */
body.page-hotel footer.site-footer .footer-badges{
  margin-left: 0 !important;
  justify-content: flex-start !important;
  float: none !important;
}

/* bottom sor: maradjon bal-jobb, de ne csússzon jobbra */
body.page-hotel footer.site-footer .footer-bottom{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  text-align: left !important;
}

/* mobil */
@media (max-width: 980px){
  body.page-hotel footer.site-footer .footer-grid{
    grid-template-columns: 1fr !important;
  }
  body.page-hotel footer.site-footer .footer-bottom{
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
/* ===== HOTEL HERO / BADGES / STEPS (index.php kezdőrész) ===== */

.page-hotel .hotel-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:22px;
  box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.page-hotel .hotel-hero{
  margin-bottom:18px;
}

.page-hotel .hotel-title{
  font-size:28px;
  line-height:1.15;
  margin:0 0 8px 0;
  letter-spacing:-.2px;
}

.page-hotel .hotel-muted{
  margin:0 0 14px 0;
  color:rgba(0,0,0,.72);
  font-size:15px;
  line-height:1.45;
}

.page-hotel .hotel-badges{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
  margin:12px 0 14px 0;
}

.page-hotel .hotel-badge{
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  padding:10px 12px;
  background:rgba(0,0,0,.02);
}

.page-hotel .hotel-badge-label{
  font-size:12px;
  color:rgba(0,0,0,.58);
  margin-bottom:2px;
}

.page-hotel .hotel-badge-value{
  font-size:14px;
  font-weight:700;
  color:rgba(0,0,0,.88);
}

.page-hotel .hotel-pricebox{
  border:1px solid rgba(0,0,0,.10);
  border-radius:12px;
  padding:10px 12px;
  margin:10px 0 0 0;
  background:#fff;
}

.page-hotel .hotel-steps{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin-top:12px;
}

.page-hotel .hotel-step{
  border-left:4px solid rgba(0,0,0,.18);
  padding:8px 10px;
  background:rgba(0,0,0,.02);
  border-radius:10px;
  font-size:14px;
}

.page-hotel .hotel-step b{
  margin-right:6px;
}

/* responsive */
@media (max-width: 860px){
  .page-hotel .hotel-badges{
    grid-template-columns:1fr;
  }
  .page-hotel .hotel-title{
    font-size:24px;
  }
}
/* ===== HOTEL HERO – HALVÁNY KÉK ===== */

.page-hotel .hotel-hero{
  margin:-22px -22px 18px -22px;   /* kifut a kártya széléig */
  padding:22px;
  background:
    linear-gradient(
      180deg,
      #eef5ff 0%,
      #f6f9ff 100%
    );
  border-bottom:1px solid rgba(0,0,0,.06);
  border-radius:14px 14px 0 0;
}

.page-hotel .hotel-title{
  color:#0f2a44;
}

.page-hotel .hotel-muted{
  color:#3a5168;
}

/* badge-ek jobban elválnak a kék alapon */
.page-hotel .hotel-badge{
  background:#ffffff;
  border-color:rgba(15,42,68,.12);
}

/* pricebox finom kiemelése */
.page-hotel .hotel-pricebox{
  background:#ffffff;
  border-color:rgba(15,42,68,.18);
}

/* lépések kontrasztosabbak */
.page-hotel .hotel-step{
  background:#ffffff;
  border-left-color:#6ea8ff;
}
