﻿/* отдельная страница с экскурсиями */
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-track {
  background-color: #eeeeee;
}
body::-webkit-scrollbar-thumb {
  background: var(--main-color);
}
.separator {
  border-bottom: 1px solid var(--main-color-opacity-xs)
}
.my-5-5 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.no-border {
  border: none
}
.price-card {
  border: 1px solid var(--light-grey);
  box-shadow: none;
  position: sticky;
  top: 1rem;
  right: 1rem;
  background-color: white;
  border-radius: .5rem
}
.book-btn {
  background-color: var(--main-color) !important;
  color: white !important;
  border: none;
  align-items: baseline;
}
.subtext {
  position: relative;
  padding: 2rem 8rem;
}
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 20vh);
  gap: 1rem;
}
.gallery-big {
  grid-row: span 2;
  position: relative;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.more {
  position: relative;
}
.more .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 6px;
}
.gallery-item {
  position: relative;
}
.gallery-big .item-big,
.gallery-item .item-big {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.gallery-big:hover .item-big,
.gallery-item:hover .item-big {
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
}
.image-part {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 3rem;
  background-color: blue;
  padding: 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.brief {
  margin-bottom: 3rem;
}
.float-btn {
  padding: .75rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0px 0px 10px 2px rgba(34, 60, 80, 0.2);
}
.float-btn.is-stopped {
  position: inherit;
}
.add-btn {
  margin-top: 1rem;
}
.navbar-cont {
  display: flex;
  padding: 0 .5rem;
}
.navbar {
  background: none; 
}
.navbar-item:hover {
  color: var(--main-color) !important;
  background: none !important;
  font-weight: 700;
  border-bottom: 1px solid var(--main-color);
}
.navbar-brand .navbar-item:hover {
  border-bottom: none !important;
}
.navbar-end .navbar-item:hover {
  border-bottom: none !important;
}
.image-nav {
  opacity: 0.5;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.image-nav:hover {
  opacity: 1;
}
.image-nav i {
  color: white;
  filter: drop-shadow(0 0 2px black) drop-shadow(0 0 5px black);
  text-shadow: 1px 0 0 black, -1px 0 0 black, 0 1px 0 black, 0 -1px 0 black;
}
.datepicker {
  scale: 1.5;
}

@media screen and (max-width: 768px) {
  .section {
    padding: 1rem;
  }
  .subtext {
    padding: 0;
  }
  .my-5-5 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .brief {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .add-btn {
    margin-bottom: 4rem;
  }
  .navbar-menu {
    position: absolute;
    right: 0;
    width: 100%;
    padding: .5rem
  }
  .navbar-end {
    margin-top: 2.5rem;
  }
  .navbar-start {
    margin-top: 1rem;
  }
}