body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #ffffff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.section {
  width: 100%;
  background: #1e2d3b;
  align-items: center;
}

/*toto je docastne iba na formular css to iste by malo byt aj v style.css */ 

.open-btn {
  padding: 12px 25px;
  font-size: 18px;
  background: #ffce00;
  color: #1e2d3b;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#formOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#formOverlay.is-open {
  display: flex;
}

.formBox {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: zoom .25s ease;
}

@keyframes zoom {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.closeBtn {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

form input, form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 12px;
}

form button {
  width: 100%;
  padding: 10px;
  background: #ffce00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}




/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1e2d3b;
  padding-right: 40px;
  height: 80px;
}

.navbar-left .logo {
  height: 85px;
  object-fit: contain;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover .nav-link.active {
  color: #ffce00;
}

 /*formular*/
.contact-form {
    background: white;
    max-width: 400px;
    margin: 20px auto;
    padding: 10px 20px 5px;
    border-radius: 8px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    height: 100px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* horny text*/

.blok-citatu {
  color: #111;
  font-family: 'Roboto', sans-serif;
  padding: 120px 0 0;

}

.citac-wrapper {
  display: flex;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  transform: translateX(100px);
}
.citac-text {
  flex: 1.5;
  max-width: 900px;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
  padding: 20px;
  align-self: center;
}


.citac-stats {
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  gap: 30px;
  margin-left: 20px;
}

.stat {
  text-align: center;
}

.stat-hodnota {
  font-size: 50px;
  font-weight: 900;
}

.delicnik {
  width: 5px;
  height: 200px;
  background-color: #111;;
  align-items: center;
}


/* obrazok */
.obrazok-wrapper {
  max-width: 950px;   /* tu si nastavíš šírku */
  margin: 0 auto;      /* vycentruje blok */
  padding: 30px 20px;
}

.obrazok-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/**/

/* modry pruh */
.pas-sekcia {
  position: relative;
  background: #1e2d3b;
  padding: 50px 0;
  width: 100%;
  overflow: visible;
}

.pas-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.citac-text2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  line-height: 1.3;
  text-align: left;
}

.smuha-pozadie {
  position: absolute;
  top: -140px;
  left: 35%;
  transform: translateX(-50%);
  height: 300px;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pas-wrapper {
    justify-content: center;
    text-align: center;
  }

  .citac-text2 {
    font-size: 22px;
    text-align: center;
  }

  .smuha-pozadie {
    height: 180px;
    top: -80px;
    left: 50%;
  }
}


 /* textovy blok */
.dva-stlpce-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 40px;
}

.stlpec {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 30px;
}

.stlpec-text h3 {
  margin-top: 0;
  margin-bottom: 0px;
  font-size: 26px;
}

.stlpec-text p {
  font-size: 16px;
  line-height: 1.6;
}

.stlpec-obrazok img {
  width: 100%;
  height: auto;
}

.stlpec-text .sipka {
  display: flex;
  justify-content: flex-start;
}

.stlpec-text .sipka img {
  width: 70px;
  height: auto;
}

.text-blok {
  margin-bottom: 16px;
}

.text-blok h2 {
  margin: 10px 0 4px;
  font-size: 20px;
  font-weight: 700;
}

.text-blok p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* FOOTER */
/* FOOTER */
.footer {
  background-color: #1e2d3b;
  color: white;
  padding: 60px ;
  gap: 10px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.footer-title {
  color: #ffce00;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  margin-bottom: 10px;
}

.footer-contact a svg {
  margin-right: 8px;
}

.footer-separator {
  border-top: 1px solid gray;
  margin: 25px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 14px;
  justify-content: center;
  color: #b0b0b0;
}

.footer-links span {
  white-space: nowrap;
}





/* Responzívne správanie na mobiloch */
@media (max-width: 768px) {
  .udaje-row {
    flex-wrap: wrap;
  }

  .udaje-column {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
 

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}



