.hidden {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  position: sticky;
  top: 0;
  background-color: #000;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.logo-wrapper {
transition-duration: 1s;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(-5%);
  z-index: 15;
}

.logo-wrapper img {
transition-duration: 1s;
  height: clamp(60px, 9vw, 90px);
}

.scrolled .logo-wrapper {
    transition-duration: 1s;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(-20%);
  z-index: 15;
}


.scrolled .logo-wrapper img {
    transition-duration: 1s;
  height: 4vw;
}


/* Navigace */
.nav-left {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(30px, 8vw, 100px); /* mezera mezi odkazy a krajem/centrem */
  max-width: 100%;
}

.nav-left a {
  color: #a3a3a3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left a:hover {
  color: #ffffff;
}

/* Hamburger menu */
.hamburger {
  display: none;
  position: absolute;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile responsive */
/* Mobile responsive */
@media (max-width: 768px) {
  .nav-left {
    flex-direction: column;
    background-color: #000;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    display: none;
    gap: 20px;
    padding: 20px;
    z-index: 999;
  }

  .nav-left.active {
    display: flex;
  }

  .logo-wrapper img {
  height: 80px;
}

.scrolled .logo-wrapper img {
    transition-duration: 1s;
  height: 70px;
}

.scrolled .logo-wrapper {
transition-duration: 1s;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(-5%);
  z-index: 15;
}

  .hamburger {
    display: block;
  }
}
/*-----------------------------------------------------------------*/


body {
  overflow-x: hidden;
}

/* TEAM SECTION */
.team-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #fff;
  padding: 80px 20px;
}

.team-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.team-image {
  flex: 1 1 50%;
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-text {
  flex: 1 1 50%;
  color: #000;
}

.team-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.team-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
}

/* ABOUT HERO */
.about-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  gap: 40px;
}

.about-hero__text {
  flex: 1 1 50%;
}

.about-hero__text h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000;
}

.about-hero__text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.about-hero__image {
  flex: 1 1 45%;
}

.about-hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* HISTORY SECTION */
.history-vertical.full-width-yellow {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #FFCF05;
  padding: 80px 20px;
  position: relative;
}

.history-vertical__title {
  text-align: center;
  font-size: 32px;
  color: #000;
  margin-bottom: 60px;
}

.history-vertical__container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.history-vertical__container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #fff;
}

.history-vertical__item {
  position: relative;
  width: 50%;
  padding: 40px 30px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.history-vertical__item.animate {
  opacity: 1;
  transform: translateY(0);
}

.history-vertical__item.left {
  left: 0;
  text-align: right;
}

.history-vertical__item.right {
  left: 50%;
  text-align: left;
}

.history-vertical__point {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: -15px;
  z-index: 2;
}

.history-vertical__item.right .history-vertical__point {
  left: -15px;
  right: auto;
}

.history-vertical__text {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

.history-vertical__year {
  color: #000;
  font-weight: bold;
  font-size: 28px;
}

/* ABOUT VIDEO */
.about-video {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-video__text {
  flex: 1 1 50%;
}

.about-video__text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000;
}

.about-video__text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.about-video__iframe {
  flex: 1 1 45%;
}

.about-video__iframe iframe {
  width: 100%;
  height: 315px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* SERVICES SECTION */
.services-section.full-width-grey {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #f7f7f7;
  padding: 80px 20px;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.service-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT SECTION */
.contact-full {
  margin-top: 20px;
  background-color: #f7f7f7;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 0;
}

.contact-full__wrapper {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}

.contact-full__info {
  flex: 1 1 50%;
  min-width: 300px;
}

.contact-full__map {
  flex: 1 1 50%;
  min-height: 400px;
  min-width: 300px;
}

.contact-full__info address {
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.6;
}

.opening-hours-box {
  background-color: #fff;
  margin-top: 30px;
  border-left: 4px solid #FFCF05;
  padding: 15px;
}

.opening-hours-box table {
  width: 100%;
  font-size: 15px;
}

/* FAQ SECTION */
.faq-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #000;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
  cursor: pointer;
  color: #000;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #FFCF05;
}

.faq-answer {
  display: none;
  font-size: 16px;
  color: #444;
  padding: 10px 0 20px 0;
  line-height: 1.6;
}

/* HEADINGS */
header h1 {
  display: none;
}

h1, h2, h3 {
  color: #000;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team-wrapper,
  .about-hero,
  .about-video,
  .contact-full__wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-hero__text,
  .about-hero__image,
  .about-video__text,
  .about-video__iframe,
  .contact-full__info,
  .contact-full__map {
    flex: 1 1 100%;
  }

  .about-video__iframe iframe {
    height: 250px;
  }

  .history-vertical__item,
  .history-vertical__item.left,
  .history-vertical__item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 60px;
  }

  .history-vertical__container::before {
    left: 20px;
    transform: none;
  }

  .history-vertical__point {
    left: 7px !important;
    right: auto !important;
  }

  .contact-full__map {
    height: 300px;
  }
}

/****************************************************/

.footer {
  background-color: #1c1c1c;
  color: #aaa;
  padding: 80px 20px 40px;
  position: relative;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.footer-logo img {
  height: 80px;
}

.footer-col-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 10px;
  margin-bottom: 180px;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  font-size: 16pt;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 18px;
  color: #aaa;
  font-size: 13px;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 16px;
  font-size: 12px;
  color: #aaa;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 6px;
  font-size: 12px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-col-group {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-logo img {
    height: 50px;
  }
}