@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Public+Sans:700,600,400");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
  scroll-behavior: smooth; /* Přidáno pro plynulé scrollování */
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #000000 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

/* Reset pro odstranění bílých okrajů */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

.macbook-air {
  background-color: #fdc413;
  width: 100%;
  margin: 0;
  padding: 0;
}

.macbook-air .div {
  background-color: #fdc413;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* Responzivní breakpointy pro hlavní kontejner */
@media (max-width: 1320px) {
  .macbook-air .div {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .macbook-air .div {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .macbook-air .div {
    padding: 0 15px;
  }
}

/* Header styling */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  height: 134px;
  background-color: #fdc413;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 100;
}

/* Střední obrazovky - úprava loga při aktivaci hamburger menu */
@media (max-width: 1050px) {
  .element-grafika {
    width: 70px !important;
    height: 70px !important;
    top: 15px !important;
    left: 15px !important;
  }
}

/* Responzivní úpravy pro header */
@media (max-width: 768px) {
  .main-header {
    height: 100px;
    padding: 0 20px;
  }
  
  .navigation {
    gap: 40px;
  }
  
  .navigation a {
    font-size: 18px;
  }
  
  .element-grafika {
    width: 50px !important;
    height: 50px !important;
    top: 15px !important;
    left: 15px !important;
    max-width: calc(100vw - 100px) !important;
  }
}

@media (max-width: 480px) {
  .main-header {
    height: 80px;
    padding: 0 15px;
  }
  
  .navigation {
    gap: 20px;
  }
  
  .navigation a {
    font-size: 16px;
  }
  
  .close-icon {
    font-size: 24px;
  }
  
  .element-grafika {
    width: 40px !important;
    height: 40px !important;
    top: 10px !important;
    left: 10px !important;
    max-width: calc(100vw - 80px) !important;
  }
}

.header-close {
  display: flex;
  align-items: center;
}

.close-icon {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
}

.header-decoration {
  position: absolute;
  width: 100%;
  height: 23px;
  bottom: 0;
  left: 0;
  background-image: url('img/pruh-header.svg');
}

.navigation {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Mobile menu toggle - skryto na desktopu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #000000;
  margin: 2px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Animace pro otevřené menu */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.element-grafika {
  width: 82px;
  height: 82px;
  aspect-ratio: 1;
  object-fit: cover;
  position: absolute;
  left: 17px;
  top: 12px;
  max-width: calc(100vw - 120px);
  z-index: 10;
}

.navigation a {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.navigation a:hover,
.navigation a:focus {
  text-decoration: underline;
  opacity: 0.9;
}

/* Odstraněno - starý element */

/* Odstraněno - starý element */

/* Footer styling */
.overlap {
  width: 100%;
  background-color: #000000;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 0px;
}

/* Footer container pro obsah */
.footer-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 408px;
}

.footer-content-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 575px;
}


.footer-pruh {
  width: 100%;
  height: 30px;
  transform: translateY(15px);
  padding: 0;
  z-index: 1;
  background-repeat: repeat-x;
  background-image: url('img/pruh.svg');
}

.overlap .text-wrapper {
  font-family: "Public Sans", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: 0;
  line-height: normal;
  text-align: center;
  margin-bottom: 40px;
  z-index: 2;
}

.overlap .vector-1,
.overlap .vector-2 {
  position: absolute;
  z-index: 1;
}

.overlap .vector-2 {
  width: 246px;
  height: 401px;
  bottom: 0px;
  right: 0;
  object-fit: cover;
}

.overlap .vector-1 {
  width: 164px;
  height: 369px;
  bottom: 0;
  left: 0;
}

.overlap .pripojte-se {
  font-family: "Public Sans", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: clamp(24px, 4vw, 40px);
  letter-spacing: 0;
  line-height: normal;
  text-align: left;
  margin-bottom: 30px;
  z-index: 2;
}

.overlap .snimek-obrazovky {
  width: 148px;
  height: 149px;
  aspect-ratio: 0.99;
  object-fit: cover;
  z-index: 2;
}

/* Decorative elements */
.group-2 {
  width: 100%;
  max-width: 1280px;
  height: 43px;
  margin: 20px 0;
  background-image: url('img/pruh-hero.svg');
}



/* Odstraněno - nyní stylováno v sections */

/* Accordion styling */
.accordion-item {
  width: 100%;
  max-width: 758px;
  margin: 0px 0 10px;
  border-radius: 4.91px;
  border: 1px solid #000000;
  box-shadow: 0px 24.56px 32.74px -14.73px #94949440;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  background-color: #fdc413;
  transition: background-color 0.3s ease;
  position: relative;
}

.accordion-summary:hover {
  background-color: #e6b312;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-plus,
.icon-minus {
  position: absolute;
  width: 18px;
  height: 3px;
  background-color: #000000;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.icon-plus {
  transform: rotate(0deg);
}

.icon-minus {
  transform: rotate(90deg);
}

/* Když je accordion zavřený - zobraz KŘÍŽ (+ symbol) */
.accordion-item:not([open]) .icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.accordion-item:not([open]) .icon-minus {
  opacity: 1;
  transform: rotate(90deg);
}

/* Když je accordion otevřený - zobraz MÍNUS (- symbol) */
.accordion-item[open] .icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.accordion-item[open] .icon-minus {
  opacity: 0;
  transform: rotate(90deg);
}

.accordion-title {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  color: #1a1039;
  font-size: clamp(16px, 4vw, 20px);
  letter-spacing: 0;
  line-height: clamp(20px, 5vw, 26px);
  opacity: 0.88;
  margin: 0;
  flex: 1;
}

.accordion-content {
  padding: 20px 20px 20px 60px;
  background-color: #fdc413;
  animation: slideDown 0.3s ease-out;
}

.accordion-content p {
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(14px, 3.5vw, 18px);
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 15px;
}

.accordion-content b {
  font-family: "Public Sans", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: inherit;
  line-height: inherit;
}

.accordion-content ul {
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(14px, 3.5vw, 18px);
  letter-spacing: 0;
  line-height: 1.5;
  margin: 10px 0;
  padding-left: 20px;
}

.accordion-content li {
  margin: 8px 0;
  list-style-type: disc;
}

.accordion-content li strong {
  font-weight: 600;
  color: #000000;
}

.accordion-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  padding-bottom: 15px;
  font-family: "Public Sans", Helvetica;
  font-size: clamp(13px, 3vw, 16px);
  color: #000000;
  background-color: transparent;
}

.accordion-content table th,
.accordion-content table td {
  border: 1px solid #000000;
  padding: 8px 12px 10px 12px;
  text-align: left;
  vertical-align: top;
  font-family: "Public Sans", Helvetica;
  font-size: inherit;
  color: #000000;
  line-height: 1.4;
}

.accordion-content table th {
  background-color: rgba(0, 0, 0, 0.1);
  font-weight: 600;
}

.accordion-content table tr {
  padding-bottom: 8px;
  transition: background-color 0.2s ease;
}

.accordion-content table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}

.accordion-content table tr:hover {
  background-color: rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivní úpravy pro accordion */
@media (max-width: 768px) {
  .accordion-summary {
    padding: 15px;
    gap: 15px;
  }
  
  .accordion-content {
    padding: 0 15px 15px 50px;
  }
  
  .accordion-title {
    font-size: clamp(14px, 3.5vw, 18px);
    line-height: clamp(18px, 4.5vw, 24px);
  }
  
  .accordion-content p {
    font-size: clamp(13px, 3vw, 16px);
  }
  
  .accordion-content ul {
    font-size: clamp(13px, 3vw, 16px);
    padding-left: 18px;
  }
  
  .accordion-content li {
    margin: 6px 0;
  }
  
  .accordion-content table {
    font-size: clamp(12px, 2.8vw, 14px);
  }
  
  .accordion-content table th,
  .accordion-content table td {
    padding: 6px 8px;
  }
}

@media (max-width: 480px) {
  .accordion-summary {
    padding: 12px;
    gap: 12px;
  }
  
  .accordion-content {
    padding: 0 12px 12px 44px;
  }
  
  .accordion-title {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: clamp(16px, 4vw, 22px);
  }
  
  .accordion-content p {
    font-size: clamp(12px, 3vw, 14px);
  }
  
  .accordion-content ul {
    font-size: clamp(12px, 3vw, 14px);
    padding-left: 15px;
  }
  
  .accordion-content li {
    margin: 5px 0;
  }
  
  .accordion-content table {
    font-size: clamp(11px, 2.5vw, 13px);
    margin: 10px 0;
  }
  
  .accordion-content table th,
  .accordion-content table td {
    padding: 4px 6px;
  }
}

/* Content grid styling */
.overlap-2 {
  width: 100%;
  max-width: 932px;
  margin: 0px 0;
  position: relative;
}

.info-grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

.info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.info-item {
  background-color: #000000;
  padding: 10px 30px 40px 30px; 
  display: flex;
  align-items: flex-start;
  gap: 30px;
  border-radius: 8px;
  flex: 1;
}

.truck-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('./img/kamion.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.truck-icon svg {
  display: none;
}

.info-title {
  color: #ffffff;
  font-family: "Public Sans", Helvetica;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.info-text {
  color: #ffffff;
  font-family: "Public Sans", Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

/* Responsivní úpravy pro grid */
@media (max-width: 768px) {
  .info-grid {
    flex-direction: column;
    gap: 20px;
  }
  
  .info-column {
    gap: 20px;
  }
  
  .info-item {
    height: auto;
    min-height: 150px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .truck-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto;
  }
  
  .info-title {
    font-size: 18px;
    text-align: center;
  }
  
  .info-text {
    font-size: 14px;
    text-align: center;
  }
}
/* Additional semantic and accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 60px;
  text-align: center;
  position: relative;
}

.hero-main-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 0;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.hero-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  margin-top: 100px;
}

.hero-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0.5rem;
  max-width: 100%;
  width: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-text-group {
  position: relative;
}

/* Carousel states - pouze při aktivním carouselu */
.hero-text-group.carousel-active .hero-item {
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-text-group.carousel-active .hero-item.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-text-group.carousel-active {
  min-height: 80px;
}

/* Hlavní nadpis NE */
.text-wrapper-2 {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(24px, 5vw, 40px);
  line-height: 120%;
  text-align: center;
  color: #000000;
  margin-bottom: 1rem;
  max-width: 60%;
  margin-top: 50px;
}

/* Texty "Realita je následující" */
.text-wrapper-8,
.text-wrapper-9,
.text-wrapper-10 {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(28px, 7vw, 70px);
  line-height: 100%;
  white-space: normal;
  color: #000000;
  margin-left: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
}

.text-wrapper-4 {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(32px, 8vw, 70px);
  line-height: clamp(32px, 8vw, 70px);
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 40px auto;
}

.text-wrapper-budoucnost {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(32px, 8vw, 70px);
  line-height: clamp(32px, 8vw, 70px);
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  max-width: 90%;
  width: 100%;
  margin: 0 auto 40px auto;
}

/* CTA Button styling */
.cta-button {
  background-color: #ffffff;
  border: 0px solid #000000;
  border-radius: 0px;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Public Sans", Helvetica;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin: 2rem 0 1rem 0;
}

.cta-button:hover {
  background-color: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-text {
  color: #000000;
}

.cta-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}


.footer-content-3 .cta-button {
  background-color: #ffffff;
  border: 0px solid #000000;
  border-radius: 0px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Public Sans", Helvetica;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 2rem 0 4rem 0;
}

.cta-button2 {
  background-color: #ffffff;
  border: 0px solid #000000;
  border-radius: 0px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: "Public Sans", Helvetica;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 2rem 0 1rem 0;
}

/* Overlap group pro texty */
.overlap-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.datovy-zdroj {
  position: absolute;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

/* Datum */
.text-wrapper-11 {
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(16px, 2vw, 20px);
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  margin-top: 2rem;
}

/* Responsivní breakpointy pro hero section */
@media (max-width: 1024px) {
  .hero-section {
    padding: 60px 20px;
    min-height: 60vh;
  }
  .hero-text-group {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 15px;
    min-height: 50vh;
  }
  
  .hero-main-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .hero-text-group {
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    margin-left: 0;
    margin-top: 40px;
  }
  
  .text-wrapper-8,
  .text-wrapper-9,
  .text-wrapper-10 {
    white-space: normal;
    text-align: center;
    margin-left: 0;
    font-size: clamp(22px, 6vw, 50px);
    line-height: 110%;
  }
  
  .hero-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    max-width: 100%;
    width: 100%;
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  /* Carousel states pro mobil */
  .hero-text-group.carousel-active .hero-item {
    opacity: 0;
    transform: translateY(20px);
    margin-bottom: 0;
  }
  
  .hero-text-group.carousel-active .hero-item.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hero-text-group.carousel-active {
    min-height: 120px;
  }
  
  .cta-button {
    font-size: 18px;
    padding: 15px 30px;
    gap: 10px;
  }
  
  .cta-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 30px 10px;
    min-height: 40vh;
  }
  
  .text-wrapper-2 {
    font-size: clamp(20px, 5vw, 28px);
    max-width: 85%;
  }
  
  .text-wrapper-8,
  .text-wrapper-9,
  .text-wrapper-10 {
    font-size: clamp(18px, 5vw, 32px);
    line-height: 120%;
    white-space: normal;
    margin-left: 0;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero-text-group {
    gap: 0.3rem;
    margin: 1rem 0;
  }
  
  .cta-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Sections styling */
.content-section {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.content-section h2, .faq-section h2, .myty-section h2, .contact-section h2 {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(32px, 7vw, 50px);
  line-height: clamp(32px, 7vw, 50px);
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
  max-width: 100%;
}

.secondary-content {
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.secondary-content h2 {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  color: #000000;
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 30px;
}

.secondary-content p {
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 0;
  line-height: 1.6;
  max-width: 762px;
  width: 100%;
}

.faq-section {
  padding: 20px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.myty-section {
  padding: 20px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

/* Responzivní úpravy pro sections */
@media (max-width: 768px) {
  .content-section,
  .secondary-content,
  .faq-section,
  .myty-section,
  .contact-section {
    padding: 60px 15px;
  }
  
  .secondary-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .content-section,
  .secondary-content,
  .faq-section,
  .myty-section,
  .contact-section {
    padding: 40px 10px;
  }
  
  .secondary-content p {
    font-size: 16px;
  }
  
  .faq-section {
    gap: 20px;
  }
}

details {
  cursor: pointer;
}

details summary {
  list-style: none;
  cursor: pointer;
}

details summary::-webkit-details-marker {
  display: none;
}

/* Border mezi summary a content - odstraň když je otevřený */
details[open] summary {
  border-bottom: none;
}

/* Accessibility improvements - žádné focus styling */
details summary:focus {
  outline: none;
  box-shadow: none;
}

/* Improved text contrast */
.macbook-air .text-wrapper-4 {
  max-width: 80%;
}

/* Improved text contrast */
.macbook-air .text-wrapper-budoucnost {
  max-width: 90%;
}

/* Responsivní breakpointy pro text-wrapper prvky */
@media (max-width: 768px) {
  .macbook-air .text-wrapper-4 {
    max-width: 95%;
  }
  
  .macbook-air .text-wrapper-budoucnost {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .macbook-air .text-wrapper-4 {
    max-width: 100%;
  }
  
  .macbook-air .text-wrapper-budoucnost {
    max-width: 100%;
  }
}

/* Add hover states for better UX */
.macbook-air .card:hover {
  box-shadow: 0px 24.56px 32.74px -14.73px #94949460;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.macbook-air .content-wrapper:hover,
.macbook-air .div-wrapper:hover,
.macbook-air .card-2:hover {
  box-shadow: 0px 24.56px 32.74px -14.73px #94949460;
  transform: translateY(-1px);
  transition: all 0.3s ease;
}

/* Responzivní navigace pro tablety a mobily */
@media (max-width: 1050px) {
  .main-header {
    justify-content: space-between;
    padding: 0 20px;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-bottom: 15px;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fdc413;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: left 0.3s ease;
    z-index: 100;
  }

  .navigation.active {
    left: 0;
  }

  .navigation a {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    text-align: center;
  }

  .nav-button {
    font-size: 20px;
    padding: 15px 30px;
    min-width: auto;
  }
}

/* Menší mobily */
@media (max-width: 480px) {
  .main-header {
    padding: 0 15px;
  }

  .navigation {
    gap: 30px;
  }

  .navigation a {
    font-size: 20px;
  }

  .nav-button {
    font-size: 18px;
    padding: 12px 25px;
  }
}

/* Myty-list styly */
.myty-section {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.myty-list-items {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.myty-list-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
  text-align: left;
}

.myty-list-cislo {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(40px, 10vw, 70px);
  line-height: clamp(40px, 10vw, 70px);
  color: #000000;
  min-width: clamp(60px, 15vw, 100px);
  flex-shrink: 0;
}

.myty-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.myty-list-nadpis {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 100%;
  vertical-align: middle;
  color: #000000;
}

.myty-list-popis {
  font-family: "Public Sans", Helvetica;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: 120%;
  vertical-align: middle;
  color: #000000;
}

.myty-list-popis strong {
  font-weight: 700;
}

/* Responsivní úpravy pro myty-list */
@media (max-width: 768px) {
  .myty-section {
    padding: 60px 15px;
  }
  
  .myty-list-item {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .myty-list-cislo {
    font-size: clamp(32px, 8vw, 50px);
    line-height: clamp(32px, 8vw, 50px);
    min-width: clamp(50px, 12vw, 80px);
  }
  
  .myty-list-nadpis {
    font-size: clamp(18px, 4vw, 24px);
  }
  
  .myty-list-popis {
    font-size: clamp(14px, 3vw, 18px);
  }
}

@media (max-width: 480px) {
  .myty-section {
    padding: 40px 10px;
  }
  
  .myty-list-item {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .myty-list-cislo {
    font-size: clamp(28px, 7vw, 40px);
    line-height: clamp(28px, 7vw, 40px);
    min-width: clamp(40px, 10vw, 60px);
  }
}

/* Kontaktní sekce styly */
.contact-section {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.contact-section p {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px auto;
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 0;
  line-height: 1.6;
  text-align: left;
}

.contact-section a {
  color: #000000;
  text-decoration: underline;
  font-weight: 600;
}

.contact-section a:hover {
  opacity: 0.8;
}

.contact-section .snimek-obrazovky {
  width: 148px;
  height: 149px;
  margin: 20px 0;
}

.contact-section .pripojte-se {
  font-family: "Public Sans", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: clamp(18px, 3vw, 24px);
  text-align: center;
  margin: 10px 0 0 0;
}

/* QR kód a text vedle sebe */
.contact-qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.contact-qr-section .snimek-obrazovky {
  width: 148px;
  height: 149px;
  margin: 0;
}

.contact-qr-section .pripojte-se {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(24px, 6vw, 40px);
  line-height: 100%;
  color: #000000;
  text-align: left;
  margin: 0;
}

/* Responsivní úpravy pro kontaktní sekci */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }
  
  .contact-qr-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-qr-section .pripojte-se {
    text-align: center;
    font-size: clamp(20px, 5vw, 32px);
  }
  
  .contact-section p {
    font-size: clamp(16px, 4vw, 18px);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 10px;
  }
  
  .contact-qr-section .snimek-obrazovky {
    width: 120px;
    height: 121px;
  }
  
  .contact-qr-section .pripojte-se {
    font-size: clamp(18px, 4.5vw, 24px);
  }
}

/* Footer-content-2 styly */
.footer-content-2 {
  font-family: "Public Sans", Helvetica;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(16px, 3.5vw, 20px);
  line-height: 120%;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  opacity: 0.7;
}

.footer-content-2 a {
  color: #ffffff;
  text-decoration: underline;
}

/* Skrytí footer obrázků na menších obrazovkách */
@media (max-width: 950px) {
  .overlap .vector-1,
  .overlap .vector-2 {
    display: none;
  }
}

/* Responsivní úpravy pro footer */
@media (max-width: 768px) {
  .footer-content {
    padding: 0 15px;
    min-height: 300px;
  }
  
  .footer-content-2 {
    gap: 40px;
    font-size: clamp(14px, 3vw, 18px);
  }
  
  .footer-content-3 .cta-button {
    font-size: 18px;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 10px;
    min-height: 250px;
  }
  
  .footer-content-2 {
    gap: 30px;
  }
  
  .footer-content-3 .cta-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}

/* Fakta-section styly */
.fakta-section {
  padding: 80px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.fakta-section p {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px auto;
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(16px, 3.5vw, 20px);
  letter-spacing: 0;
  line-height: 1.6;
  text-align: left;
}

.fakta-section ul {
  max-width: 760px;
  width: 100%;
  margin: 20px auto;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.fakta-section li {
  font-family: "Public Sans", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: clamp(16px, 3.5vw, 20px);
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.fakta-section li::before {
  content: "•";
  color: #000000;
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}

.fakta-section strong {
  font-weight: 700;
}

/* Responsivní úpravy pro fakta-section */
@media (max-width: 768px) {
  .fakta-section {
    padding: 60px 15px;
  }
  
  .fakta-section p,
  .fakta-section li {
    font-size: clamp(14px, 3vw, 18px);
    text-align: center;
  }
  
  .fakta-section ul {
    text-align: center;
    padding-left: 20px;
  }
  
  .fakta-section li {
    text-align: left;
    padding-left: 20px;
  }
  
  .fakta-section li::before {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .fakta-section {
    padding: 40px 10px;
  }
  
  .fakta-section p,
  .fakta-section li {
    font-size: clamp(14px, 3.5vw, 16px);
  }
  
  .fakta-section li {
    padding-left: 18px;
  }
}
