/* ── Sticky footer ── */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#main {
  flex: 1 0 auto;
  background: #fff;
}
#footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* ── Rezervovat CTA button (mobile only) ── */
.btn-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 1.4rem !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  background-color: #0d6efd !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.35);
  transition: box-shadow 0.25s, transform 0.15s;
}
.btn-reserve:hover,
.btn-reserve:focus {
  color: #fff;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
  transform: translateY(-1px);
}
.btn-reserve:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}
.btn-reserve .bi-chevron-right {
  opacity: 0.75;
  font-size: 0.9em;
}

.bg-lightblue {
  background-color: #67b0d1!important;
}

.bg-lightblue-lighter {
  background-color: #d8ebf3!important;
}

.btn-lightblue {
  font-size: 1rem;
  padding: 0.375rem 0.75rem;
  background: #67b0d1;
  color: #fff;
  outline: none;
  border-radius: 4px;
  border: 0px;/* solid transparent;*/
  transition: 0.5s;
}
.btn-lightblue:hover {
  background: #2b93c2;
  color: #fff;
  transition: 0.5s;
}
.btn-lightblue:focus {
  box-shadow: 0 0 0 5px rgba(134, 198, 227, 0.5)
}

.btn-lightblue:disabled, button[disabled] {
  background: #a6c8d7;
  border: 2px solid #67b0d1;
  color: #fff;
  cursor: not-allowed;
}

.link-lightblue {
  color: #67b0d1 !important;
}
.link-lightblue:hover, .link-lightblue:focus {
  color: #2b93c2 !important;
}

/*
Nastaveni jine barvy pro PLACEHOLDER ve formularovych polich
*/
.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #a6c8d7;
  opacity: 1; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #a6c8d7;
}

.form-control::-ms-input-placeholder { /* Microsoft Edge */
  color: #a6c8d7;
}

/* ── Cenový banner ── */
.price-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #124166 0%, #1a5a8a 100%);
  border-top: 5px solid #67b0d1;
  border-radius: 4px 4px 2px 2px;
  padding: 24px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.09);
  color: #fff;
  width: 100%;
  height: 100%;
}

.price-banner__label {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #67b0d1;
  margin-bottom: 6px;
}

.price-banner__amount {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.price-banner__currency {
  font-size: 1.6rem;
  font-weight: 600;
  vertical-align: super;
  color: #a8d8ee;
}

.price-banner__unit {
  font-size: .9rem;
  color: #a8d8ee;
  margin-top: 4px;
}

@media (max-width: 576px) {
  .price-banner {
    padding: 20px 24px;
  }
}

/* ── Price banner in column context ── */
.col-12 .price-banner,
.col-md-6 .price-banner {
  display: flex;
  width: 100%;
}

/* ── Practical info aside card ── */
.info-aside {
  background: #f0f8fd;
  border-left: 4px solid #67b0d1;
  border-radius: 8px;
  padding: 24px 28px;
  height: 100%;
}

.info-aside__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #124166;
  margin-bottom: 14px;
}

.info-aside__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-aside__list li {
  position: relative;
  padding-left: 20px;
  padding-bottom: 10px;
  color: #2c4a5e;
  font-size: 1rem;
  line-height: 1.5;
}

.info-aside__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67b0d1;
}

/* ── Notice / paper card ── */
.notice-paper {
  background: #fffef9;
  border-top: 5px solid #67b0d1;
  border-radius: 4px 4px 2px 2px;
  padding: 36px 44px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.09);
  position: relative;
}

.notice-paper__heading {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #67b0d1;
  margin-bottom: 28px;
}

/* ── Numbered steps inside the paper ── */
.notice-steps {
  list-style: none;
  counter-reset: steps;
  padding: 0;
  margin: 0;
}

.notice-steps li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
}

.notice-steps li:last-child {
  padding-bottom: 0;
}

.notice-steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #124166;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.notice-step__title {
  display: block;
  font-weight: 700;
  color: #124166;
  font-size: 1.05rem;
  margin-bottom: 3px;
}

.notice-step__text {
  display: block;
  color: #4a6070;
  font-size: .95rem;
  line-height: 1.55;
}

@media (max-width: 576px) {
  .notice-paper {
    padding: 28px 22px 32px;
  }
}

/* ── Kontaktní karta na info stránce ── */
.contact-card {
  background: #fffef9;
  border-top: 5px solid #67b0d1;
  border-radius: 4px 4px 2px 2px;
  padding: 28px 32px 32px;
  box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.09);
  height: 100%;
}

.contact-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #67b0d1;
  margin-bottom: 20px;
}

.contact-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  font-size: 1rem;
  line-height: 1.4;
  color: #2c4a5e;
}

.contact-card__list li:last-child {
  padding-bottom: 0;
}

.contact-card__list i {
  color: #67b0d1;
  font-size: 1.15rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-card__list a {
  color: #124166;
  text-decoration: none;
}

.contact-card__list a:hover {
  color: #67b0d1;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .contact-card {
    padding: 22px 18px 24px;
  }
}

@media screen and (max-width: 768px) {
  #main {
    margin-top: 25px;
  }
}

/* ── FAQ accordion ── */
.accordion-item {
  border: none;
  border-bottom: 1px solid #e4eef4;
}

.accordion-item:last-child {
  border-bottom: none;
}

.faq-btn {
  font-weight: 600;
  font-size: .98rem;
  color: #124166;
  background: transparent;
  padding: 16px 0;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: #67b0d1;
  background: transparent;
}

.faq-btn::after {
  filter: none;
}

.faq-btn:not(.collapsed)::after {
  filter: none;
}

.faq-body {
  padding: 0 0 16px 0;
  color: #4a6070;
  font-size: .95rem;
  line-height: 1.6;
}

/* ── Fotogalerie ── */
.photos .item a {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  aspect-ratio: 4 / 3;
}

.photo-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.photos .item a:hover .photo-thumb {
  transform: scale(1.05);
}

/* ── Všeobecné podmínky rezervací ── */
.vop-section {
  border-bottom: 1px solid #e4eef4;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.vop-section--last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.vop-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #124166;
  margin-bottom: 10px;
}

.vop-text {
  color: #4a6070;
  font-size: .97rem;
  line-height: 1.7;
  margin: 0;
}

.vop-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

.vop-list li {
  position: relative;
  padding-left: 18px;
  padding-bottom: 6px;
  color: #4a6070;
  font-size: .97rem;
  line-height: 1.7;
}

.vop-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #67b0d1;
}

.vop-address {
  font-style: normal;
  color: #4a6070;
  font-size: .97rem;
  line-height: 1.9;
  margin: 8px 0 0 18px;
  border-left: 3px solid #67b0d1;
  padding-left: 14px;
}

/* ── Z-index vrstvy ── */
.modal         { z-index: 9050 !important; }
.modal-backdrop { z-index: 9040 !important; }

/* ── Cookie consent karta ── */
.cookie-card {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9100;
    width: 360px;
    background: #16213e;
    color: #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 2px 8px rgba(0,0,0,.3);
    padding: 22px 20px 18px;
    overflow: visible;
}
.cookie-card__img {
    position: absolute;
    bottom: calc(100% - 40px);
    right: 20px;
    width: 130px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.4));
    pointer-events: none;
}
.cookie-card__content {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 16px;
}
.cookie-card__content h5,
.cookie-card__content h4,
.cookie-card__content strong {
    color: #fff;
    font-size: 1.43rem;
    margin-bottom: 6px;
    display: block;
}
.cookie-card__actions {
    display: flex;
    gap: 10px;
}
.cookie-btn-accept {
    flex: 1;
    padding: 10px 16px;
    background: #00bffd;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
}
.cookie-btn-accept:hover {
    background: #009ed4;
}
.cookie-btn-decline {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}
.cookie-btn-decline:hover {
    border-color: #666;
    color: #ccc;
}
@media (max-width: 575px) {
    .cookie-card {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 18px 16px 24px;
    }
    .cookie-card__img {
        width: 100px;
        right: 16px;
    }
}

/* ── Plovoucí tlačítko rezervace (mobile) ── */
.float-reserve {
    position: fixed;
    left: 16px;
    bottom: 15px;
    z-index: 8999;
}
.float-reserve__btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 22px 0 0;
    height: 65px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(13,110,253,.45);
    cursor: pointer;
    white-space: nowrap;
    transition: border-radius .35s cubic-bezier(.4,0,.2,1),
                padding .35s cubic-bezier(.4,0,.2,1),
                box-shadow .2s;
}
.float-reserve__btn:active {
    transform: scale(0.96);
}
.float-reserve__icon {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.float-reserve__label {
    overflow: hidden;
    max-width: 200px;
    margin-left: 2px;
    opacity: 1;
    transition: max-width .35s cubic-bezier(.4,0,.2,1),
                margin .35s cubic-bezier(.4,0,.2,1),
                opacity .25s ease;
}
.float-reserve--collapsed .float-reserve__btn {
    padding: 0;
    border-radius: 50%;
}
.float-reserve--collapsed .float-reserve__label {
    max-width: 0;
    margin-left: 0;
    opacity: 0;
}
@keyframes float-pop {
    0%   { transform: scale(0.82); }
    60%  { transform: scale(1.07); }
    100% { transform: scale(1); }
}
.float-reserve--pop .float-reserve__btn {
    animation: float-pop .35s cubic-bezier(.4,0,.2,1) forwards;
}

/* ── Logo – flex layout, text nikdy nezalamuje ── */
#header .logo {
    display: flex !important;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
}
#header .logo-text {
    white-space: nowrap;
    font-size: clamp(11px, 1.6vw, 30px);
    min-width: 0;
    align-self: center;
    line-height: 1;
    position: static;
    top: auto;
}
@media (max-width: 768px) {
    #header .logo-text {
        font-size: clamp(11px, 3vw, 18px);
        white-space: nowrap;
    }
}

/* ── Plate – karta s kroky rezervace ── */
.plate {
    background: #fff;
    border-top: 4px solid #67b0d1;
    border-radius: 4px 4px 2px 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.08);
    padding: 22px 20px;
    height: 100%;
}
.plate-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #124166;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4eef4;
}
.res-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}
.res-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-bottom: 14px;
}
.res-steps li:last-child {
    padding-bottom: 0;
}
.res-steps li:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 28px;
    width: 2px;
    bottom: 0;
    background: #e4eef4;
}
.res-step__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #124166;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.res-step__text {
    color: #4a6070;
    font-size: .92rem;
    line-height: 1.55;
    padding-top: 4px;
}
.res-step__text b {
    color: #124166;
}
.res-steps--vert li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 16px;
    padding-bottom: 16px;
}
.res-steps--vert li:first-child {
    padding-top: 0;
}
.res-steps--vert li::after {
    display: none;
}
.res-steps--vert li:not(:last-child) {
    border-bottom: 1px solid #e4eef4;
}
.res-steps--vert .res-step__num {
    width: 32px;
    height: 32px;
    font-size: .9rem;
}
.res-steps--vert .res-step__text {
    font-size: 1rem;
    padding-top: 0;
}

/* ── Chalk list – vylepšené položky ── */
#footer .chalk-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
#footer .chalk-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 8px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    transition: background .15s;
    text-shadow: none;
}
#footer .chalk-list li:last-child {
    border-bottom: none;
}
#footer .chalk-list li::before {
    content: "›";
    flex-shrink: 0;
    color: #f5c842;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}
#footer .chalk-list li:hover {
    background: rgba(255,255,255,.07);
}

/* ── EZIS.cz footer link ── */
.ezis-link {
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    padding: 2px 9px;
    border-radius: 4px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #000;
    transition: background .2s;
}
.ezis-link:hover {
    background: #e4e4e4;
    color: #000;
}
.ezis-link .ezis-red {
    color: #ff1949;
}
#footer .copyright a.ezis-link {
    color: #000;
    font-weight: 700;
}
#footer .copyright a.ezis-link .ezis-red {
    color: #ff1949;
}

/* ── Copyright bar layout ── */
#footer .copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 767px) {
    #footer .copyright-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    #footer .copyright-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
}
#footer .copyright-brand {
    font-size: .85rem;
    color: rgba(255,255,255,.75);
}
#footer .copyright-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
}
#footer .copyright-links a {
    color: #fff;
    text-decoration: none;
    opacity: .9;
    transition: opacity .2s;
}
#footer .copyright-links a:hover {
    opacity: 1;
    text-decoration: underline;
}
#footer .copyright-links .sep {
    color: rgba(255,255,255,.45);
}
/* ── Video nápověda modal – větší na desktopu ── */
@media (min-width: 768px) {
    #videoHelpModal .modal-dialog {
        max-width: 1100px !important;
        width: 1100px;
    }
}
.modal-backdrop.backdrop-dark {
    opacity: 0.85 !important;
}

/* ── Hamburger menu – zobrazit do 1200px ── */
@media (min-width: 992px) and (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}
