/* #### Generated By: http://font.download #### */

    @font-face {
    font-family: 'PP Pangaia Ultralight';
    font-style: normal;
    font-weight: normal;
    src: local('PP Pangaia Ultralight'), url('PPPangaia-Ultralight-BF654c530cd00f1.woff') format('woff');
    }
    

    @font-face {
    font-family: 'PP Pangaia Ultralight Italic';
    font-style: normal;
    font-weight: normal;
    src: local('PP Pangaia Ultralight Italic'), url('PPPangaia-UltralightItalic-BF654c530ca889f.woff') format('woff');
    }
    

    @font-face {
    font-family: 'PP Pangaia Medium';
    font-style: normal;
    font-weight: normal;
    src: local('PP Pangaia Medium'), url('PPPangaia-Medium-BF654c530cc86d5.woff') format('woff');
    }
    

    @font-face {
    font-family: 'PP Pangaia Medium Italic';
    font-style: normal;
    font-weight: normal;
    src: local('PP Pangaia Medium Italic'), url('PPPangaia-MediumItalic-BF654c530bedffb.woff') format('woff');
    }
    

    @font-face {
    font-family: 'PP Pangaia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('PP Pangaia Bold'), url('PPPangaia-Bold-BF654c530cc27f8.woff') format('woff');
    }
    

    @font-face {
    font-family: 'PP Pangaia Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('PP Pangaia Bold Italic'), url('PPPangaia-BoldItalic-BF654c530c8d2fa.woff') format('woff');
    }

/* Obecné styly */
body {
  font-family: 'Raleway', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
h1,h2,h3,h4,h5 {
  font-family: 'PP Pangaia Ultralight';
}
h1 {
  
}
h2 {
  margin-bottom: 20px;
  font-size: 40px;
}

/* Navigace */
.navbar {
  background: transparent;
  padding: 0px 0;
  transition: background 0.3s ease;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}

.navbar.scrolled {
  background: #F8F6E8;
}

.navbar.scrolled .nav-link {
  color: #000 !important;
}

.navbar.scrolled .logo {
  width: 150px;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand .logo {
  width: 150px;
  padding: 20px 0px;
  transition: all 0.3s ease;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #fff ;
  margin: 0 20px;
  transition: color 0.3s ease;
}
.navbar.dark .nav-link {
  color:#000 !important;
}
.navbar.dark .navbar-brand .logo {
  filter: invert(1);
}
.nav-link:hover {
  color: #e9ecef !important;
}

/* Dropdown menu */
.dropdown-menu {
  z-index: -1;
  visibility: hidden;
  background: #0d1542;
  border: none;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  display: block; /* Zajistíme, že dropdown je vždy připraven k zobrazení */
}

.dropdown-menu.toggled {
  z-index: 80;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 20px;
  color: #fff;
  transition: background 0.3s ease;
}

.dropdown-item:hover {
  background: #152168;
  color: #fff;
}

/* Burger menu */
.navbar-toggler {
  border: none;
  padding: 0;
}

.burger-icon {
  width: 25px;
  height: 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.navbar.dark .burger-icon span {
  background: #000;
}
.burger-icon.active span:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
}

.burger-icon.active span:nth-child(2) {
  opacity: 0;
}

.burger-icon.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
  top: 8px;
}

/* Slider v hlavičce */
.header-around {
  position: relative;
}

.header-slider {
  position: relative;
  height: 85vh;
}

.slider-item {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.header-around .slider-item {
   height: 85vh;
}
.overlay {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, /* Tmavá začíná na 0% */ rgba(0, 0, 0, 0.3) 35%, /* Plynulý přechod do průhledné od 15% do 30% */ rgba(0, 0, 0, 0.3) 65%, /* Průhledná zůstává do 70% */ rgba(0, 0, 0, 0.7) 100% /* Tmavá až do konce */);
}

.slider-content {
  position: relative;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  max-width: 900px;
}

.slider-content h1 {
  font-size: 74px;
  margin-bottom: 20px;
}

.slider-content p {
  font-size: 24px;
  font-weight: 300;
}

.cta-buttons .btn {
  margin: 0 15px;
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #2a9d8f;
  border: none;
}

.btn-primary:hover {
  background: #21867a;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: #333;
  transform: translateY(-2px);
}

/* Custom šipky pro slider */
.header-slider .slick-arrow {
  position: absolute;
  bottom: 30px;
  top: auto;
  z-index: 10;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-slider .slick-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}

.header-slider .slick-prev {
  right: 90px;
  left: auto;
}

.header-slider .slick-prev:before,
.header-slider .slick-next:before {
  display: none;
}

.header-slider .slick-next {
  right: 30px;
}

.header-slider .slick-arrow img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Sekce s výhodami */
.features-section {
  padding: 60px 0;
  background-color: #F8F6E8;
}

.feature-item {
  padding: 20px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 16px;
  color: #666;
}

/* Vyjádření lokality */
.location-highlight {
  padding: 130px 0;
  background-color: #F8F6E8;
}

.highlight-text small {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.highlight-text {
  display: grid;
  font-family: 'PP Pangaia Ultralight';
  font-size: 40px;
  color: #000000;
  margin-bottom: 0px;
  max-width: 960px;
  line-height: 2;
  margin: auto;
}

.lead {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Sekce s pokoji */
.rooms-section {
        padding: 80px 0;
        overflow: hidden;
        width: 100%;
        background-color: #F8F6E8;
    }

    .section-title {
        font-family: 'PP Pangaia Ultralight';
        font-size: 40px;
        color: #333;
        margin-bottom: 50px;
    }

    .room-card {
        position: relative;
        height: 450px;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease;
        display: block;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .room-card.slick-active {
        opacity: 1; /* Aktivní položky (dvě uprostřed) mají opacity 1 */
    }

    .room-card:hover {
    }
    .room-card.slick-active .room-overlay {
        height: 100%;
        background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 35%));
        transition: all 400ms ease;
    }
    .room-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgb(0 0 0 / 30%), rgb(0 0 0 / 70%));
        transition: all 400ms ease;
    }

    .room-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        transform: scale(0);
    }

    .room-card:hover .room-arrow {
        opacity: 1;
        transform: scale(1);
    }

    .room-arrow img {
        width: 26px;
        height: 26px;
    }

    .room-content {
        position: absolute;
        bottom: 30px;
        left: 30px;
        color: #fff;
    }

    .room-content h3 {
        font-size: 28px;
    }

    .room-content p {
        font-size: 16px;
        margin-bottom: 0;
    }

    /* Dodatečné styly pro slider */
    .rooms-slider {
        width: 100%;
        max-width: 1040px;
        margin: 0 auto;
        position: relative;
        overflow: visible !important; /* Omezí obsah, ale umožní přesah */
    }

    .rooms-slider .slick-list {
        overflow: visible !important; /* Přesah položek vlevo a vpravo */
       
    }

    .room-card {
        margin: 0 15px;
        outline: none;
    }

    /* Vlastní šipky */
    .rooms-slider .slick-prev,
    .rooms-slider .slick-next {
      position: absolute;
      top: 50% !important;
      transform: translateY(-50%) !important;
      width: 80px !important;
      height: 80px !important;
      border: none;
      z-index: 10;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      border-radius: 100% !important;
    }

    .slick-next:before, .slick-prev:before {
        display: none;
    }

    .rooms-slider .slick-prev {
        left: -135px !important;
    }

    .rooms-slider .slick-next {
        right: -135px !important;
    }

    .rooms-slider .slick-prev img,
    .rooms-slider .slick-next img {
        width: 28px;
        height: 28px;
    }


/* Sekce s posouvajícími se recenzemi */
.reviews-section {
  padding: 80px 0 20px;
  position: relative;
  background-color: #F8F6E8;
}

.reviews-title {
  color: #333;
  margin-bottom: 10px;
}

.reviews-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 0 50px; /* Prostor pro fade efekt */
}

.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  z-index: 1;
}

.reviews-marquee::before {
  left: 0;
  background: linear-gradient(to right, #F8F6E8, transparent);
}

.reviews-marquee::after {
  right: 0;
  background: linear-gradient(to left, #F8F6E8, transparent);
}

.reviews-marquee-left .marquee-content,
.reviews-marquee-right .marquee-content {
  display: flex;
  white-space: nowrap;
  width: max-content; /* Zajistí, že obsah zabere svou přirozenou šířku */
}

.reviews-marquee-left .marquee-content {
  animation: marquee-left 30s linear infinite;
}

.reviews-marquee-right .marquee-content {
  animation: marquee-right 30s linear infinite;
}

.reviews-marquee-left:hover .marquee-content,
.reviews-marquee-right:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Posun o polovinu obsahu, protože je zduplikován */
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%); /* Začínáme na -50%, protože obsah je zduplikován */
  }
  100% {
    transform: translateX(0);
  }
}

.reviews-marquee-left .review-card,
.reviews-marquee-right .review-card {
  border: 1px solid #dedddb;
  border-radius: 15px;
  padding: 20px;
  margin: 0 10px;
  text-align: left;
  display: inline-block;
  width: 350px; /* Pevná šířka karet */
}

.reviews-marquee-left .review-card h4,
.reviews-marquee-right .review-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.reviews-marquee-left .review-card p,
.reviews-marquee-right .review-card p {
  font-size: 16px;
  color: #666;
  margin: 0;
  white-space: normal; /* Zalamování textu uvnitř karty */
}

/* Hodnocení z Booking.com */
.booking-rating {
  padding: 10px 0px 140px;
  background-color: #F8F6E8;
}

.rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.rating-score {
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  background-color: #0d1542;
  border-radius: 20px;
  padding: 10px 20px;
  margin-right: 10px;
}

.rating-details {
  text-align: left;
}

.rating-label {
  font-family: 'PP Pangaia Ultralight';
  font-size: 28px;
  margin: 0;
  color: #333;
}

.rating-count {
  font-size: 16px;
  color: #666;
}

.rating-logo {
  height: 40px;
}

/* Sekce s FAQ */
.faq-section {
  padding: 120px 0;
  background-color: #F8F6E8;
}

.faq-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.faq-section .faq-headline {
  position: sticky;
  top: 80px;
  padding-right: 65px;
  padding-top: 15px;
}

.accordion {
  padding-left: 65px;
  border-left: 1px solid #dedddb;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #dedddb;
  background: transparent;
}

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

.accordion-button {
  background: transparent;
  color: #333;
  font-size: 18px;
  padding: 20px 0;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: transparent;
  border-color: #000;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-arrow {
  display: flex;
  align-items: center;
}

.accordion-arrow img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-arrow img {
  transform: rotate(45deg);
}

.accordion-body {
  font-size: 16px;
  color: #666;
  padding: 20px 0;
}

.accordion-button::after {
  display: none;
}

/* Patička */
.footer {
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #0d1542;
}

.footer-bg {
  position: absolute;
  bottom: 0;
  opacity: 0.2;
}

.footer-logo {
  max-width: 150px;
}

.footer h5 {
  font-size: 18px;
  margin-bottom: 25px;
}

.footer .container {
  z-index: 1;
  position: relative;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #ced7f3;
}

.footer a.big {
  font-size: 20px;
  color: #fff;
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #e9ecef;
}

.footer ul {
  line-height: 2;
  font-size: 14px;
  color: #ced7f3;
}

.footer p {
  line-height: 2;
  color: #ced7f3;
}

.footer-small {
  border-top: 0.5px solid #accfc643;
  padding-top: 45px;
  margin-top: 45px;
}

.footer-small p {
  margin: 0;
}

/* Scroll down */
svg {
  max-width: 100px;
  animation: 10000ms spin infinite;
  animation-fill-mode: backwards;
  background-color: #F8F6E8;
  z-index: 2;
  border-radius: 100%;
  padding: 1px;
}

text {
  text-transform: uppercase;
  word-spacing: 32px;
  font-weight: 400;
  fill: #333;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.scroll-down {
  position: absolute;
  width: 100px;
  bottom: 0;
  left: 25px;
  transform: translateY(50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responzivní úpravy */
@media (max-width: 576px) {
  .slider-content h1 {
    font-size: 32px;
  }

  .slider-content p {
    font-size: 16px;
  }

  .cta-buttons .btn {
    padding: 10px 20px;
    margin: 5px;
  }

  .highlight-text,
  .section-title {
    font-size: 28px;
  }

  .room-card {
    height: 300px;
  }

  .room-content h3 {
    font-size: 20px;
  }

  .rating-score {
    font-size: 48px;
  }

  .rating-label {
    font-size: 24px;
  }

  .rating-count {
    font-size: 20px;
  }

  .rating-logo {
    height: 25px;
  }

  .header-slider .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .header-slider .slick-prev {
    right: 70px;
  }

  .header-slider .slick-next {
    right: 20px;
  }

  .header-slider .slick-arrow img {
    width: 18px;
    height: 18px;
  }

  .accordion-button {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .slider-content h1 {
    font-size: 40px;
  }

  .slider-content p {
    font-size: 18px;
  }

  .highlight-text,
  .section-title {
    font-size: 32px;
  }

  .room-card {
    height: 350px;
  }

  .room-content h3 {
    font-size: 24px;
  }

  .rating-score {
    font-size: 56px;
  }

  .rating-label {
    font-size: 26px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .slider-content h1 {
    font-size: 48px;
  }

  .room-card {
    height: 450px;
  }

  .room-content h3 {
    font-size: 26px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .room-card {
    height: 420px;
  }
}

@media (min-width: 1200px) {
  .room-card {
    height: 550px !important;
  }
}

.video-section {
        padding: 80px 0;
        background: #F8F6E8; /* Pozadí podle vašeho webu */
    }

    .video-container {
        position: relative;
        max-width: 1040px;
        margin: 0 auto;
        width: 100%;
        aspect-ratio: 16 / 9; /* Poměr stran 16:9 pro video */
    }

    .video-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2; /* Placeholder je nad videem */
    }

    .play-button {
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.2); /* Poloprůhledné bílé pozadí */
        backdrop-filter: blur(10px); /* Efekt rozmazání */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 3;
    }

    .play-button:hover {
        transform: scale(1.1); /* Zvětšení při hoveru */
        background: rgba(255, 255, 255, 0.4); /* Světlejší pozadí při hoveru */
    }

    .play-button img {
        width: 50px;
        height: 50px;
    }

    .video-iframe {
        display: none; /* Skryté video na začátku */
        width: 100%;
        height: 100%;
        border-radius: 20px;
    }

    /* Responzivní úpravy */
    @media (max-width: 768px) {
        .play-button {
            width: 80px;
            height: 80px;
        }

        .play-button img {
            width: 40px;
            height: 40px;
        }

        .video-placeholder,
        .video-iframe {
            border-radius: 10px;
        }
    }

    main {
      padding: 240px 0px 80px;
      background-color: #F8F6E8;
    }
    main .header-slider  {
      height: 500px;
      margin-bottom: 80px;
      margin-top: 40px;
    }
     main .slider-item {
      height: 500px !important;
      border-radius: 20px;
    }
    main .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      align-items: flex-start;
    }
   
    main .object-info {
      padding-right: 40px;
    }
    main .object-info .subtitle {
      font-size: 16px;
    }
    main .object-form {
      position: sticky;
      top: 25px;
      background-color: #0d1542;
      padding: 35px;
      border-radius: 20px;
      color: #fff !important;
    }
    main p.note {
      color: #1c2870;
      font-size: 14px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin-top: 15px;
    }
    main p.note img {
      width: 18px;
      height: 18px;
      margin-right: 10px;
      margin-top: -1px;
    }
    #ech-kontakt html {
      background-color: transparent !important;
    }
    /* Kalendář */
    .month .month-name {
      background-color: transparent !important;
    }

    div.legend {
      display: none;
    }
    .month {
      background-color: transparent;
      border: none;
    }

    .month tr.days {
      background-color: transparent;
    }

    #sender {
      background-color: #EFD48D;
      width: 100%;
      border-radius: 14px;
      margin-top: 10px;
      color: #0E1541;
    }
    #obal {
      overflow: hidden;
      padding: 20px 0px;
    }
    .points-section {
        padding: 80px 0;
        background: #F8F6E8; /* Pozadí podle vašeho webu */
    }
    .form-text-input + .form-label, .form-select-input + .form-label {
      color: #fff;
    }
    .form-row-multi .sep {
      color: #fff;
    }
    .points {
        display: flex;
        flex-wrap: wrap;
        margin: 0px 0px 50px;
    }

    .point-box {
        display: flex;
        align-items: center;
        padding: 20px 20px 20px 0px;
        transition: transform 0.3s ease;
    }

    .point-box:hover {
    }

    .point-icon {
        width: 32px;
        height: 32px;
        margin-right: 20px;
    }

    .point-box p {
        margin: 0;
        font-family: 'Raleway', sans-serif;
        font-size: 14px;
        color: #666;
        flex: 1; /* Zajistí, že text zabere zbytek prostoru */
    }

    /* Responzivní úpravy */
    @media (max-width: 768px) {
        .point-box {
            padding: 15px;
        }

        .point-icon {
            width: 30px;
            height: 30px;
            margin-right: 10px;
        }

        .point-box p {
            font-size: 14px;
        }
    }

.pricing-section {
    margin: 30px 0 10px;
}
.description-section {
  margin-bottom: 80px;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    color: #333;
}

.pricing-table th {
    background: #f8f6e8;
    font-family: 'PP Pangaia Ultralight';
    font-size: 16px;
    padding: 20px 0px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #dedddb;
}

.pricing-table td {
    font-size: 14px;
    padding: 15px 0px;
    color: #666;
    border-bottom: 1px solid #dedddb;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none; /* Odstraní spodní rámeček u poslední řady */
}

.pricing-table tbody tr:hover {
}

/* Responzivní úpravy */
@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 10px 15px;
        font-size: 12px;
    }

    .pricing-table th {
        font-size: 14px;
    }
}


.trips-section {
    padding: 240px 0 80px;
    background: #F8F6E8; /* Pozadí podle vašeho webu */
}

.trip-card {
  padding: 15px;
  position: relative;
  width: 33.33333%;
}
.trip-card-content {
  position: relative;
        height: 450px;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease;
        display: block;
        text-decoration: none;
        transition: opacity 0.3s ease;
}

.trip-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgb(0 0 0 / 10%), rgb(0 0 0 / 70%));
        transition: all 400ms ease;
    }

    .trip-arrow {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        transform: scale(0);
    }

    .trip-card:hover .trip-arrow {
        opacity: 1;
        transform: scale(1);
    }

    .trip-arrow img {
        width: 26px;
        height: 26px;
    }

    .trip-content {
        position: absolute;
        bottom: 30px;
        left: 30px;
        color: #fff;
    }

    .trip-content h3 {
        font-size: 28px;
    }

    .trip-content p {
        font-size: 16px;
        margin-bottom: 0;
    }


.gallery-section {
    padding: 240px 0 80px;
    background-color: #F8F6E8;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.gallery-image {
    width: 100%;
    height: 235px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-image {
    transform: scale(1.05);
}
.gallery-description {
  display: none;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Zajistí viditelnost Lightbox prvků */
.lb-nav, .lb-prev, .lb-next, .lb-close {
    display: block !important;
    visibility: visible !important;
}
.lb-container, .lb-dataContainer {
    z-index: 10000 !important;
}


/* Responzivní úpravy */
    @media (max-width: 768px) {
      .navbar-brand .logo {
        width: 100px;
      }
      .navbar-collapse {
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        top: 105px;
        background-color: #F8F6E7;
      }
      .nav-link {
        color: #000;
      }
      .nav-link:hover {
        color: #000 !important;
      }
      .dropdown-item {
        color: #000;
      }
      .dropdown-menu {
        max-height: 0px;
        padding: 0;
        background-color: transparent;
        transform: translateY(0);
      }
      .dropdown-menu.toggled {
        max-height: 10000px;
      }
      .location-highlight {
        padding: 70px 0px;
      }
      .faq-section {
        padding: 70px 0px;
      }
      .faq-section .faq-headline {
        position: relative;
        padding: 0;
        top: auto;
        margin-bottom: 0px;
      }
      .accordion {
        padding: 0;
        border: none;
      }
      .booking-rating {
        padding: 10px 0px 70px;
      }
      .features-section {
        padding: 60px 0px 0px;
      }
      h2 {
        font-size: 28px;
      }
      .trip-card {
        width: 100%;
      }
      .header-slider {
        height: 70vh;
      }
      .header-around .slider-item {
        height: 70vh;
      }
      .trips-section, .gallery-section{
        padding: 160px 0px 70px;
      }
      main .object-info {
        padding: 0;
      }
      main .slider-item {
        height: 400px !important;
      }
      main .header-slider {
        height: 400px;
      }
      main {
        padding: 160px 0px 70px;
      }
    }

    #google_translate_element {
      position: fixed;
      left: 0;
      bottom: 0;
    }

.goog-te-gadget img{
  display: none !important;
}