/*  Pokud bychom chtěli kompaktnější footer

footer {
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 0.25rem;
}

footer h5 {
  margin-bottom: 0.5rem;
}

footer hr {
  margin: 0.5rem 0;
} */

/* Logo organizace využije na desktopu výšku hlavičky, mobilní limit zůstává beze změny. */
@media (min-width: 992px) {
  .header-nav .navbar-brand.logo {
    width: 220px;
    flex: 0 0 220px;
  }

  .header-nav .navbar-brand.logo img {
    display: block;
    width: 220px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
  }

  .header-nav .navbar-brand.logo.brand-lockup-link {
    width: 280px;
    flex-basis: 280px;
  }
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #071d38;
}

.brand-lockup-mark {
  display: block;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #fff;
  background-position: center 17%;
  background-repeat: no-repeat;
  background-size: 225% auto;
}

.brand-lockup-name {
  display: block;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  text-align: left;
}

.brand-lockup-name strong,
.brand-lockup-name small {
  display: block;
  white-space: nowrap;
}

.brand-lockup-name strong {
  font-size: 17px;
  font-weight: 500;
}

.brand-lockup-name small {
  margin-top: 5px;
  color: #bf8d2c;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .navbar-brand.logo.brand-lockup-link,
  .menu-logo.brand-lockup-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-lockup-mark {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .brand-lockup-name strong {
    font-size: 15px;
  }
}

/* ----- přepínač pill-like pro minulé/budoucí ------ */
.time-toggle {
  display: flex;
  background: #f1f3f5;
  border-radius: 8px;
  padding: 2px;
}

.time-toggle input {
  display: none;
}

.time-toggle label {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  padding: 4px 0;
  border-radius: 6px;
  cursor: pointer;
  color: #6c757d;
  transition: all 0.2s ease;
}

.time-toggle input:checked + label {
  background: var(--color-success);
  color: white;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* ----- select nad dashboard calendarem ------ */
.resource-filter-card {
    background: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    
    /* display: inline-block; */
    display: flex;
    align-items: center;   /* vertikální zarovnání */
    gap: 16px;             /* mezera mezi label a select */    
}

.resource-filter-label {
    display: block;
    /*font-size: 12px;*/
    font-weight: 600;
    color: var(--color-secondary);
    /* margin-bottom: 6px; */
    margin: 0;             /* zruší spodní margin */
    white-space: nowrap;   /* zabrání zalomení textu */    
}


.resource-select-wrapper {
    /* position: relative;
    display: inline-block; */
    position: relative;
    flex: 1;       /* select zabere zbytek místa */    
    width: 100%;    
}

.resource-select {
    appearance: none;
    -webkit-appearance: none;

    /* width: 100%; */

    border: 2px solid #cfd8dc;
    border-radius: 14px;

    padding: 6px 38px 6px 14px; /* místo pro šipku */
    font-weight: 600;

    /* background-color: #f5f7f8; */
    /* color: #6c7a89; */
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.resource-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.2);
}

/* Ikona */
.select-icon {
    /* position: absolute; */
    position: relative;
    right: 24px;
    /*top: 50%;
    transform: translateY(-50%);*/
    pointer-events: none; /* ikona je pak "neviditelná pro ukazatel myši, ten pak vidí select pod */

    color: #9aa6af;
    font-size: 13px;
}



.page-wrapper {
  background-color: #f8f9fa; /* světle šedé pozadí */
  min-height: 100vh;
  padding: 2rem 0;
}

.page-wrapper .content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Nabídková stránka navazuje na hlavičku bez prázdného vnějšího proužku. */
.offer-page-wrapper {
  padding-top: 0;
}

/*-----------------------------
Úpravy pro nabídku infuzí
--------------------------*/
.btn-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;

  padding: 0;

  border-radius: 50% !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
}

/*-----------------------------
úprava modálů
--------------------------------*/
.modal-backdrop {
  z-index: 1040 !important;
}
.modal {
  z-index: 1050 !important;
}
.modal-dialog {
  z-index: 1060 !important;
}

/* ------------------------------------------
   🧭 Styl pro tříkrokový admission modal wizard
------------------------------------------ */


.admission-step {
  transition: opacity 0.3s ease-in-out;
}

/* Když krok není aktivní */
.admission-step.d-none {
  opacity: 0;
  pointer-events: none;
}

/* Wizard progress bar nahoře */
.admission-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.admission-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #dee2e6; /* šedý proužek pozadí */
  z-index: 1;
}

/* Každý krok v progress baru */
.admission-step-indicator {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #dee2e6;
  color: #6c757d;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

/* Aktivní krok */
.admission-step-indicator.active {
  background-color: var(--brand-primary);
  color: #fff;
  box-shadow: 0 0 5px rgba(111, 66, 193, 0.5);
}

/* Dokončený krok */
.admission-step-indicator.completed {
  background-color: #28a745;
  color: #fff;
}

/* Popisek pod indikátorem */
.admission-step-label {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  color: #6c757d;
}

.admission-step-label.active {
  color: var(--brand-primary);
  font-weight: 500;
}

/* Tlačítka modalu */
#admissionModal .modal-footer .btn-primary {
  min-width: 120px;
}

/* ALL CAPS se týká jen nadpisu stránky a názvů služeb, nikoliv popisu, CTA ani upozornění. */
.offer-page-title--uppercase,
.offer-page-service-list--uppercase .offer-service-title {
  text-transform: uppercase;
}

/* Jazykový přepínač je součástí hlavičky; na mobilu se přesune do hamburger menu. */
.public-language-switch-mobile {
  display: none !important;
}

.public-language-switch .btn {
  min-width: 34px;
  padding: 0.3rem 0.55rem;
}

@media (max-width: 575.98px) {
  .public-language-switch-mobile {
    display: flex !important;
    padding: 12px 20px;
  }
}

/* Pevný preset inspirovaný letákem Arena; všechny selektory zůstávají uvnitř jedné nabídkové stránky. */
.offer-page--arena-hockey-camp-special {
  --arena-flyer-orange: #ff6500;
  --arena-flyer-slate: #425668;
  --arena-flyer-peach: #ffd0bd;
  --arena-flyer-blue-gray: #adbdcc;
  --arena-flyer-paper: #fffaf7;
  font-family: "Poppins", sans-serif;
}

.offer-page--arena-hockey-camp-special .offer-page-heading {
  border-bottom: 2px solid rgba(255, 101, 0, 0.22);
  padding: 1rem 0 1.25rem;
}

.offer-page--arena-hockey-camp-special .offer-page-title {
  color: var(--arena-flyer-orange) !important;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.offer-page--arena-hockey-camp-special .offer-page-service-list {
  align-items: stretch;
  margin-top: 1.5rem;
}

.offer-page--arena-hockey-camp-special .offer-service-item {
  --arena-card-background: var(--arena-flyer-orange);
  --arena-card-strip: var(--arena-flyer-peach);
  --arena-card-strip-text: var(--arena-flyer-orange);
}

.offer-page--arena-hockey-camp-special .offer-service-item:nth-child(even) {
  --arena-card-background: var(--arena-flyer-slate);
  --arena-card-strip: var(--arena-flyer-blue-gray);
  --arena-card-strip-text: #ffffff;
}

.offer-page--arena-hockey-camp-special .offer-service-card {
  background: var(--arena-card-background);
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(46, 60, 72, 0.14);
  color: #ffffff;
  min-height: 255px;
  overflow: hidden;
  position: relative;
}

.offer-page--arena-hockey-camp-special .offer-service-title {
  color: #ffffff !important;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem) !important;
  font-style: italic;
  font-weight: 900 !important;
  letter-spacing: -0.035em;
  line-height: 1;
  max-width: calc(100% - 44px);
}

.offer-service-flyer-summary,
.offer-service-flyer-meta {
  display: none;
}

.offer-page--arena-hockey-camp-special .offer-service-flyer-summary {
  color: #ffffff;
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 2.5rem 1rem 0;
}

.offer-page--arena-hockey-camp-special .offer-service-primary-meta {
  margin-bottom: 0 !important;
}

.offer-page--arena-hockey-camp-special .offer-service-price {
  display: none;
}

.offer-page--arena-hockey-camp-special .offer-service-info {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 2;
}

.offer-page--arena-hockey-camp-special .offer-service-info .btn {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  color: #ffffff;
}

.offer-page--arena-hockey-camp-special .offer-service-card .card-body,
.offer-page--arena-hockey-camp-special .offer-service-card .card-body p,
.offer-page--arena-hockey-camp-special .offer-service-card .card-body li,
.offer-page--arena-hockey-camp-special .offer-service-card .card-body strong {
  color: #ffffff;
}

.offer-page--arena-hockey-camp-special .offer-service-actions {
  margin-top: auto !important;
  padding-bottom: 0.75rem;
}

.offer-page--arena-hockey-camp-special .offer-service-booking-button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px !important;
  color: #ffffff;
  font-weight: 700;
}

.offer-page--arena-hockey-camp-special .offer-service-booking-button:hover,
.offer-page--arena-hockey-camp-special .offer-service-booking-button:focus {
  background: #ffffff;
  color: var(--arena-card-background);
}

.offer-page--arena-hockey-camp-special .offer-service-flyer-meta {
  align-items: center;
  background: var(--arena-card-strip);
  color: var(--arena-card-strip-text);
  display: flex;
  font-size: 1rem;
  font-style: italic;
  font-weight: 900;
  gap: 0.35rem;
  margin: 0 -1rem -1rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
}

.offer-page--arena-hockey-camp-special .offer-page-help {
  background: var(--arena-flyer-paper);
  padding: 1.25rem;
}

.offer-page--arena-hockey-camp-special .offer-page-help-button {
  background: var(--arena-flyer-orange);
  border: 2px solid var(--arena-flyer-orange) !important;
  border-radius: 2px;
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
}

.offer-page--arena-hockey-camp-special .offer-page-help-button:hover,
.offer-page--arena-hockey-camp-special .offer-page-help-button:focus {
  background: var(--arena-flyer-slate);
  border-color: var(--arena-flyer-slate) !important;
}

.offer-page--arena-hockey-camp-special .offer-page-help-notice {
  background: var(--arena-flyer-peach);
  color: var(--arena-flyer-slate) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
}

/* Ve dvou sloupcích obrátí každou druhou řadu, aby barvy vytvořily šachovnici. */
@media (min-width: 768px) {
  .offer-page--arena-hockey-camp-special .offer-service-item:nth-child(4n) {
    --arena-card-background: var(--arena-flyer-orange);
    --arena-card-strip: var(--arena-flyer-peach);
    --arena-card-strip-text: var(--arena-flyer-orange);
  }

  .offer-page--arena-hockey-camp-special .offer-service-item:nth-child(4n + 3) {
    --arena-card-background: var(--arena-flyer-slate);
    --arena-card-strip: var(--arena-flyer-blue-gray);
    --arena-card-strip-text: #ffffff;
  }
}

@media (max-width: 767.98px) {
  .offer-page--arena-hockey-camp-special .offer-page-title {
    font-size: 2.35rem;
  }

  .offer-page--arena-hockey-camp-special .offer-service-card {
    min-height: 230px;
  }
}
