.hidden {
  display: none;
}
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 */
@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 {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}

header h1 {
  display: none;
}

.section-text,
.section-image {
  flex: 1 1;
  padding: 20px;
}

.section-text h1,
.section-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-text p,
.section-text ul {
  font-size: 18px;
  line-height: 1.6;
}

.section-text ul {
  list-style: none;
  padding: 0;
}

.section-text ul li::before {
  content: '✔';
  margin-right: 10px;
  color: #FFCF05;
}

.section-image img {
  width: 100%;
  height: auto;
}

/* Grid layout for distributor logos */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.grid a img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
  max-height: 100px;
}

.grid a:hover img {
  transform: scale(1.05);
}

/* Yellow band for distributors */
.distributors-section {
  background-color: #FFCF05;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 0;
}

.distributors-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.distributors-inner h2,
.distributors-inner p {
  color: #000;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
  color: #000;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
}

.cta-section .btn {
  display: inline-block;
  background-color: #FFCF05;
  color: #fff;
  text-decoration: none;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  transition: background-color 0.8s ease;
  margin-top: 20px;
  text-transform: uppercase;
  border: 3px #FFCF05 solid;
}

.cta-section .btn:hover {
  background-color: #fff;
  color: #FFCF05;
}

/* Kontakt + mapa */
.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;
}

/* Responsivita */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }

  .section-text,
  .section-image {
    padding: 10px 0;
  }

  .section-text h1,
  .section-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .section-text p,
  .section-text ul {
    font-size: 16px;
  }

  .section-image img {
    margin-bottom: 5px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 18px;
  }

  .cta-section .btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .contact-full__wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .contact-full__info,
  .contact-full__map {
    flex: 1 1 100%;
  }

  .contact-full__map iframe {
    min-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;
  }
}
