/********** Template CSS **********/
:root {
  --primary: #2EFF6A;
  --light: #a8ba68;
  --dark: #24111f;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
}


/*** Service ***/
.service-item {
  /* height: 310px; */
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  /* background: #f3ffec; */
  border: 1px solid #111a24;
  border-radius: 4px;
  /* box-shadow: 0 0 45px rgba(0, 0, 0, 0.08); */
  transition: 0.5s;
}

.service-item:hover {
  background: var(--primary);
}

.service-item .service-icon {
  margin: 0 auto 30px auto;
  width: 65px;
  height: 65px;
  transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
  transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
  color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
    url(../img/video.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--dark);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial {}

.testimonial-carousel {
  padding-left: 65px;
  padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
  padding: 30px;
}

.testimonial-item img {
  object-fit: cover;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 2px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
  transition: 0.5s;
}

.team-item:hover {
  border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
  background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
  color: var(--secondary) !important;
}

.team-container {}

.team-itemmy {
  background: #fff;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: ">";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #a07504;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #a07504;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #a07504;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #a07504;
  color: #fff;
  padding: 8px 0;
  background: #a07504;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #a07504;
}

#declineBtn {
  background-color: #fff;
  color: #a07504;
}

#declineBtn:hover {
  background-color: #a07504;
  color: #fff;
}

/* Footer Style */
.topics {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.topic_item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

.topic_item .card-text {}

.topic__img {
  max-width: 181px;
  min-height: 200px;
  object-fit: cover;
}

.topic__name {
  font-size: 18px;
}

.topic__descr {
  max-width: 287px;
}

.topic__right {
  height: 911px;
}

@media (max-width: 1020px) {
  .topic__right {
    width: 100%;
    object-fit: cover;
  }
}

.about_1 {}

.pluses {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

@media (max-width: 680px) {
  .pluses {
    flex-wrap: wrap;
    /* flex-direction: column
    ; */
  }
}

.about__descr {
  max-width: 820px;
  margin: 0 auto;
}

.news__block .topic__name {
  color: #000000;
}

.news__block .card-text {
  color: #111a24;
}

.news__block .topics {
  display: flex;
  flex-direction: row;
}

@media (max-width: 680px) {
  .news__block .topics {
    flex-direction: column;
  }
}

.news__block .topic_item {
  align-items: start;
}

@media (max-width: 990px) {
  .mobile-no {
    display: none;
  }

  .topic_item {
    flex-direction: column;
  }

  .service-item {
    /* height: 460px; */
  }

  .testimonial-item div {
    flex-direction: column;
  }

  .testimonial-carousel .testimonial-item {
    padding: 30px 2px;
  }
}




/* new styles  */
.hero-section {
  position: relative;
  background: url('../img/hero-section2.jpg') center center/cover no-repeat;
  color: #FFFFFF;
}
.hero-section .overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-section .container {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-section .hero-button {
  background: #ffd754;
  color: #121212;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
}
.hero-section .stats .stat-number {
  font-size: 2rem;
  font-weight: 700;
}
.hero-section .stats .stat-text {
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .hero-section .stats .col-md-4 {
    margin-bottom: 1rem;
  }
}



:root {
  --accent-gold: #a07504;
  --accent-green: #093700;
  --background: #121212;
  --text-color: #ffffff;
  --light-bg: #f5f5f5;
  --dark-text: #333333;
--grey-bg: #e5e5e5;

  --card-bg: rgba(9, 9, 9, 0.8);
  --gold-glow: 0 0 15px rgba(160, 117, 4, 0.7);
  --green-glow: 0 0 15px rgba(9, 55, 0, 0.7);
}

  
.game-features-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.game-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(9, 55, 0, 0.2), rgba(18, 18, 18, 0.95));
  z-index: -1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  display: inline-block;
}


.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.tab-btn {
  background-color: rgba(18, 18, 18, 0.7);
  color: var(--text-color);
  border: 2px solid var(--accent-gold);
  padding: 0.75rem 1.5rem;
  margin: 0 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}

.tab-btn:hover, .tab-btn.active {
  background-color: rgba(160, 117, 4, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.tab-btn.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.tab-btn .material-icons {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.content-wrapper {
  position: relative;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  padding: 2rem;
  height: 100%;
}

.content-card h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}


.content-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.game-image-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  height: 100%;
  position: relative;
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-image-container:hover .game-image {
  transform: scale(1.05);
}

.game-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 1rem;
  display: flex;
  align-items: center;
}

.game-image-overlay .material-icons {
  color: var(--accent-gold);
  font-size: 2rem;
  margin-right: 1rem;
}

.navigation-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.nav-btn {
  background-color: transparent;
  color: var(--text-color);
  border: 2px solid var(--accent-gold);
  width: 50px;
  height: 50px;
  margin: 0 0.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: var(--accent-gold);
  box-shadow: var(--gold-glow);
}

.nav-btn .material-icons {
  font-size: 1.5rem;
}

.progress-bar-container {
  width: 50%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 0 1rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--accent-gold);
  width: 33.33%;
  transition: width 0.3s ease;
  box-shadow: var(--gold-glow);
}

@media (max-width: 991px) {
  .tab-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .tab-btn {
      margin: 0.5rem 0;
      width: 80%;
  }
  
  .tab-content {
      flex-direction: column;
  }
  
  .game-image-container {
      margin-top: 2rem;
      height: 300px;
  }
}

@media (max-width: 767px) {
  .section-title {
      font-size: 2rem;
  }
  
  .content-card {
      padding: 1.5rem;
  }
  
  .content-card h3 {
      font-size: 1.5rem;
  }
  
  .progress-bar-container {
      width: 30%;
  }
}

@media (max-width: 576px) {
  .tab-btn {
      width: 100%;
      font-size: 1rem;
      padding: 0.5rem 1rem;
  }
  
  .game-image-container {
      height: 220px;
  }
  
  .navigation-controls {
      flex-wrap: wrap;
  }
  
  .progress-bar-container {
      width: 100%;
      margin: 1rem 0;
      order: -1;
  }
}
.features-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(160, 117, 4, 0.05) 0%, rgba(9, 55, 0, 0.05) 100%);
  z-index: -1;
}



.feature-image-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  height: 100%;
  min-height: 400px;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-image-container:hover .feature-image {
  transform: scale(1.03);
}

.feature-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
}

.feature-badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(160, 117, 4, 0.3);
}

.feature-badge .material-icons {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.feature-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.feature-point .material-icons {
  color: var(--accent-gold);
  margin-right: 1rem;
  font-size: 1.5rem;
}

.feature-point p {
  margin: 0;
  /* color: #fff; */
}

.overlay-decoration {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: rgba(160, 117, 4, 0.1);
  border-radius: 50%;
  z-index: -1;
}

.overlay-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.3;
}

@media (max-width: 991px) {
  .feature-content {
      padding: 2rem 0;
      margin-top: 2rem;
  }
  
  .feature-image-container {
      min-height: 350px;
  }
}

@media (max-width: 767px) {

  
  .feature-content p {
      font-size: 1rem;
  }
  
  .feature-image-container {
      min-height: 300px;
  }
}

@media (max-width: 576px) {
  .features-section {
      padding: 3rem 0;
  }
  
  .feature-image-container {
      min-height: 250px;
  }
  
  .feature-badge {
      font-size: 0.9rem;
  }
}

.gallery-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: #efffec;
}



.gallery-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-img-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-content {
  padding: 1.5rem;
  text-align: center;
}

.gallery-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.img-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-gold);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.img-overlay .material-icons {
  font-size: 1.2rem;
}

.gallery-grid {
  margin-top: 2rem;
}

.gallery-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.gallery-card:hover::after {
  transform: scaleX(1);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--accent-gold);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .gallery-card {
      margin-bottom: 2rem;
  }
  
  .section-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .section-title {
      font-size: 2rem;
  }
  
  .gallery-img-container {
      height: 220px;
  }
}

@media (max-width: 576px) {
  .gallery-section {
      padding: 3rem 0;
  }
  
  .gallery-img-container {
      height: 200px;
  }
  
  .gallery-title {
      font-size: 1.2rem;
  }
}
 /* Block 1: Kdo jsme - Light background */
 .who-we-are {
  background-color: var(--light-bg);
  position: relative;
  padding: 100px 20px;
}

.who-we-are::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(160, 117, 4, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.who-we-are .section-title {
  color: var(--accent-gold);
}

.who-we-are .content-container {
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Block 2: Náš tým - Dark background */
.our-team {
  background-color: var(--background);
  color: var(--text-color);
  position: relative;
  padding: 100px 20px;
}

.our-team::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(160, 117, 4, 0.1), transparent);
}


.team-content {
  display: flex;
  align-items: center;
}

.team-text {
  padding-right: 2rem;
}

.team-image-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  min-height: 350px;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-image-container:hover .team-image {
  transform: scale(1.03);
}

/* Block 3: Mise a hodnoty - Grey background */
.mission-values {
  background-color: var(--grey-bg);
  position: relative;
  padding: 100px 20px ;
}

.mission-values::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(9, 55, 0, 0.05) 0%, rgba(229, 229, 229, 0) 70%);
  border-radius: 50%;
}

.mission-values .section-title {
  color: var(--accent-green);
}

.mission-values .section-title::after {
  background: var(--accent-green);
}

.mission-container {
  background-color: white;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.mission-container p:last-child {
  margin-bottom: 0;
}

.accent-border {
  position: absolute;
  width: 5px;
  height: 70%;
  background-color: var(--accent-green);
  left: 0;
  top: 15%;
  border-radius: 0 5px 5px 0;
}

.decorative-shape {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  top: 10%;
  right: 5%;
}

.shape-2 {
  bottom: 15%;
  left: 8%;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .section {
      padding: 4rem 0;
  }
  
  .team-text {
      padding-right: 0;
      margin-bottom: 2rem;
  }
  
  .team-image-container {
      min-height: 300px;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .section {
      padding: 3rem 0;
  }
  
  .content-text {
      font-size: 1rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .mission-container {
      padding: 2rem;
  }
  
  .team-image-container {
      min-height: 250px;
  }
}

@media (max-width: 576px) {
  .who-we-are .content-container {
      padding: 1.5rem;
  }
  
  .mission-container {
      padding: 1.5rem;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .team-image-container {
      min-height: 200px;
  }
}

 
.contact-section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(160, 117, 4, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(9, 55, 0, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}


.contact-info-container {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.contact-info-header {
  background-color: var(--background);
  color: var(--text-color);
  padding: 2rem;
  position: relative;
}

.contact-info-body {
  padding: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--accent-gold);
  font-size: 1.8rem;
  margin-right: 1.2rem;
  margin-top: 0.2rem;
}

.contact-text {
  flex: 1;
}

.contact-text h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark-text);
}

.contact-text p {
  font-size: 1rem;
  margin-bottom: 0;
  color: #6c757d;
}

.form-container {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-text);
  position: relative;
  display: inline-block;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
}

.form-floating {
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.25rem rgba(160, 117, 4, 0.25);
}

.accent-pattern {
  position: absolute;
  background-color: var(--accent-gold);
  opacity: 0.1;
  z-index: 0;
}

.pattern-1 {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

.pattern-2 {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  transform: rotate(45deg);
  bottom: 30px;
  left: -40px;
}

.btn-primary {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #8e6603;
  border-color: #8e6603;
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

@media (max-width: 991px) {
  .contact-info-container {
      margin-bottom: 2rem;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
  
  .form-title {
      font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .contact-section {
      padding: 4rem 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .contact-info-header, .contact-info-body {
      padding: 1.5rem;
  }
  
  .form-container {
      padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-section {
      padding: 3rem 0;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .contact-icon {
      font-size: 1.5rem;
  }
  
  .contact-text h5 {
      font-size: 1rem;
  }
  
  .form-title {
      font-size: 1.4rem;
  }
}
.faq-section {
  padding: 5rem 0;
  position: relative;
}

 
.section-title-colored {
  color: var(--accent-gold);
}

.accordion-container {
  margin-bottom: 4rem;
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 1rem;
}

.accordion-header {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.accordion-button {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.5rem;
  color: var(--dark-text);
  background-color: #ffffff;
  box-shadow: none !important;
  border-left: 4px solid var(--accent-gold);
}

.accordion-button:not(.collapsed) {
  color: var(--accent-gold);
  background-color: #ffffff;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--accent-gold);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23a07504'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  line-height: 1.7;
  border-left: 4px solid var(--accent-gold);
}

.accordion-body p {
  margin-bottom: 1rem;
  color: #000;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.faq-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-green);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, rgba(160, 117, 4, 0.1), rgba(160, 117, 4, 0.5), rgba(160, 117, 4, 0.1));
  margin: 3rem 0;
}

.decorative-element {
  position: absolute;
  z-index: -1;
  opacity: 0.05;
}

.circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  top: 10%;
  right: -150px;
}

.circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--accent-green);
  bottom: 15%;
  left: -100px;
}

.faq-number {
  font-weight: 700;
  color: var(--accent-gold);
  margin-right: 0.5rem;
}

@media (max-width: 991px) {
  .section-title {
      font-size: 2.2rem;
  }
  
  .faq-subtitle {
      font-size: 1.2rem;
  }
  
  .accordion-button {
      font-size: 1.1rem;
      padding: 1.2rem;
  }
  
  .circle-1, .circle-2 {
      display: none;
  }
}

@media (max-width: 767px) {
  .faq-section {
      padding: 4rem 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .accordion-button {
      font-size: 1rem;
      padding: 1rem;
  }
  
  .accordion-body {
      padding: 1.2rem;
  }
}

@media (max-width: 576px) {
  .faq-section {
      padding: 3rem 0;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .faq-subtitle {
      font-size: 1.1rem;
  }
  
  .divider {
      margin: 2rem 0;
  }
}