@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: 'Dancing Script', cursive;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: #ffbe33;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn1 {
  display: inline-block;
  background: #ffbe33;
  color: #ffffff;
  border-radius: 25px;
  padding: 10px 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn1:hover {
  background: #e69c00;
  transform: scale(1.1);
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10px;
}

.hero-image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13,110,253,0.2) 0%, rgba(13,110,253,0) 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: pulse 4s infinite;
}

.hero-image {
  position: relative;
  z-index: 2;
  max-height: 80vh;
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.header_section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}

.header_section.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.25rem;
  padding: 0;
}

.navbar-brand span {
  transition: all 0.3s ease;
}

.navbar-brand:hover span.text-primary {
  color: #fff !important;
}

.nav-link {
  position: relative;
  padding: 0.5rem 1.5rem !important;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 30px;
}

.header_section .navbar {
  padding: 1rem 0;
}

.header_section .navbar-brand {
  font-size: 1.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.header_section .navbar-brand:hover {
  color: #0d6efd;
}

.header_section .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.header_section .nav-link:hover,
.header_section .nav-link.active {
  color: #fff !important;
  transform: translateY(-2px);
}

.header_section .btn-outline-light {
  border-width: 2px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
  }
  
  .hero-content {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-content .d-flex {
    justify-content: center;
  }
  
  .hero-image {
    display: none;
  }
}

/* Přidáme animaci pro scroll efekt */
.header_section.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  position: relative;
  z-index: 2;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  max-width: 80%;
}

.slider_section .carousel-item {
  position: relative;
}

.slider_section .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slider_section .detail-box h1,
.slider_section .detail-box p {
  position: relative;
  z-index: 2;
}

.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffbe33;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
}

.slider_section .detail-box a:hover {
  background-color: #e69c00;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
  transition: background-color 0.3s, width 0.3s;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #ffbe33;
}

.work_section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.filters_menu {
  gap: 10px;
}

.filters_menu .nav-link {
  color: #666;
  background: none;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.filters_menu .nav-link:hover,
.filters_menu .nav-link.active {
  color: #0d6efd;
  border-color: #0d6efd;
  background: rgba(13, 110, 253, 0.1);
}

.work-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-5px);
}

.card-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.image-link {
  display: block;
  position: relative;
  height: 100%;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.overlay-content {
  color: white;
  transform: translateY(10px);
  transition: all 0.3s ease 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zoom-icon {
  width: 50px;
  height: 50px;
  background: #0d6efd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  margin: 0 auto;
}

.work-card:hover .zoom-icon {
  transform: translateY(0);
  opacity: 1;
}

.work-card:hover .card-img-overlay {
  opacity: 1;
}

.work-card:hover img {
  transform: scale(1.1);
}

.price {
  display: none;
}

.btn-outline-primary {
  border-width: 2px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.about_section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.about-image-wrapper {
  margin-bottom: 3rem;
}

.about-image {
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: #0d6efd;
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
  z-index: 3;
}

section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.header_section {
  z-index: 1000;
}

@media (max-width: 991.98px) {
  .filters_menu {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .filters_menu::-webkit-scrollbar {
    height: 4px;
  }
  
  .filters_menu::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
  }
}

.footer_section {
  background-color: #222831;
  color: #ffffff;
  padding: 75px 0 40px 0;
}

.footer_section h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Dancing Script', cursive;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .contact_link_box {
  display: flex;
  flex-direction: column;
}

.footer_section .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;
}

.footer_section .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .contact_link_box a:hover {
  color: #0d6efd;
}

.footer_section .footer_social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer_section .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #ffffff;
  color: #222831;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer_section .footer_social a:hover {
  color: #0d6efd;
  transform: translateY(-3px);
}

.footer_section p {
  color: #dbdbdb;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .footer_section {
    text-align: center;
  }
  
  .footer_section .footer_social {
    justify-content: center;
  }
}

.static-image img {
  position: absolute;
  right: 5%;
  bottom: 0;
  max-height: 80vh;
  z-index: 1;
}

#map {
  width: 100%;
  height: 400px;
}

.google-maps-link img {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: .65;
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

.btn-primary {
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px !important;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  border: none;
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary i {
  margin: 0;
}

.btn-primary span {
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
  background: linear-gradient(135deg, #0a58ca 0%, #084298 100%);
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.shadow-sm {
  box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

html {
  scroll-behavior: smooth;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
}

section {
  scroll-margin-top: 80px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15) !important;
}

.about-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.hero-content .d-flex.gap-3 {
  gap: 1rem !important;
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.95);
}

.fancybox__toolbar {
  --fancybox-color: #fff;
}

.fancybox__nav {
  --fancybox-color: #fff;
}
@media (max-width: 767.98px) {
  .card-img-container {
    height: 200px;
  }
  
  .zoom-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.btn-sm {
  font-size: 0.875rem;
}

.book_section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.form-floating {
  position: relative;
  margin-bottom: 1rem;
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  height: 60px;
  line-height: 1.25;
}

.form-floating > textarea.form-control {
  height: 150px !important;
  resize: none;
}

.form-control {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
  background: #ffffff;
}

.form-floating > label {
  padding: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-1rem) translateX(-0.5rem);
  background: white;
  padding: 0 0.5rem;
  color: #0d6efd;
}

.btn-outline-secondary {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 12px;
  border: 2px solid #6c757d;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: #6c757d;
  color: white;
  transform: translateY(-2px);
}

@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.swal2-popup {
  border-radius: 15px !important;
  padding: 2em !important;
}

.swal2-title {
  font-size: 1.5em !important;
  font-weight: 600 !important;
}

.swal2-icon {
  transform: scale(0.8);
  margin: 1.5em auto !important;
}

.swal2-confirm {
  border-radius: 10px !important;
  padding: 1em 2em !important;
}

@media (max-width: 768px) {
  .book_section {
    padding: 60px 0;
  }

  .form-floating > .form-control {
    height: 55px;
  }

  .btn-primary,
  .btn-outline-secondary {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

.card {
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

#map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(33, 37, 41, 0.6) !important;
}

.service-box:hover {
    transform: translateY(-5px);
    background-color: rgba(33, 37, 41, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.2);
}

.service-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.service-box p {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .service-box {
        padding: 1.5rem !important;
    }
    
    .service-box h3 {
        font-size: 1.25rem;
    }
}

.display-4 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}