@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700&subset=latin-ext');

:root {
  --brand-accent: #66cae1;
  --alap-bg: #e0c864;
  --extra-bg: #66cae1;
  --booked-bg: #007F00;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300;
}

/* --- Fejléc, ugyanaz mint az eredetiben: világosszürke sáv, cián címsor --- */
.header-wrap {
  background-color: #eee;
  padding: 20px 0;
}
.header-wrap h2 {
  color: var(--brand-accent);
  font-weight: 400;
}
.header-wrap .navbar-brand,
.header-wrap .nav-link {
  color: var(--brand-accent) !important;
}
.header-wrap .nav-link:hover {
  color: #333 !important;
}

main.container {
  padding: 30px 15px;
}

/* --- Nyitóoldal (belépés előtti) háttérképes szekció - a bg-front.jpg
     természeténél fogva világos/kifakult hatású, NEM CSS szűrő --- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center top;
}

.csop-img {
  margin-top: 30px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .15s ease;
}
.csop-img:hover { transform: scale(1.05); }

/* --- Beosztás táblázat, az eredeti vékony szegélyes stílusa --- */
.schedule-table td, .schedule-table th {
  border: 2px solid #ccc;
  padding: 4px;
  font-size: 12px;
  vertical-align: top;
  min-width: 150px;
}
.schedule-table thead th {
  background-color: #eee;
  padding: 15px 8px !important;
  font-weight: 600;
  font-size: 14px !important;
}

.fogl {
  padding: 4px 6px;
  margin: 2px 0;
  border-radius: 4px;
  font-size: 0.85rem;
}
.fogl-alap   { background-color: var(--alap-bg); }
.fogl-extra  { background-color: var(--extra-bg); }
.fogl-booked { background-color: var(--booked-bg); color: #fff; }
.fogl label { cursor: pointer; display: block; margin: 0; }

input[type=checkbox] {
  transform: scale(1.5);
  margin: 4px 6px 4px 4px;
}

.legend-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  vertical-align: middle;
  margin-right: 6px;
}
