body {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 1vw;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background-color: white;
  padding: 2% 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2%;
}

.logo img {
  height: 8vh;
  width: auto;
}

.logo h1 {
  color: #00aaff;
  font-size: 2vw;
  margin: 0;
}

nav {
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #1c114b;
  font-weight: bold;
  font-size: 1vw;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger i {
  font-size: 2vw;
}

.gradient-banner {
  background: linear-gradient(to right, #cdffd8fa, #94b9ff);
  padding: 4% 2%;
  position: relative;
  margin-bottom: 5%;
}
.banner-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gradient-banner h2 {
  font-size: 2.5vw;
  margin: 0;
  margin-bottom: 1%;
  color: #1c114b;
  flex: 1 1 auto;
  min-width: 250px;
}

.cta-buttons {
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn.blue {
  background-color: #00aaff;
  color: white;
  padding: 1vw 2vw;
  border-radius: 1vw;
  text-decoration: none;
  font-weight: bold;
  font-size: 1vw;
  display: flex;
  align-items: center;
  gap: 1vw;
  white-space: wrap;
}

.btn.blue:hover {
  background-color: #008ecc;
}

/* Dekoratívne pruhy */
.gradient-top-right{
  height: 1.5vh;
  width: 40%;
  position: absolute;
  background: linear-gradient(to right, #66ccff, #9966ff);
  z-index: 0;
  border-radius: 4px;
  opacity: 0.7;
  top: 97%;
  right: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  color: #001f3f;
}




.container h1{
    color:#004aad;
}
.item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.75rem 0;
  flex-wrap: nowrap;
  gap: 1rem;
  color: #0094ff;
  font-size: 1.2vw;
}

.item > div:first-child {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.price {
  white-space: nowrap;
  font-weight: bold;
  color: #001f3f;
  color: #0094ff;
}

.note {
  font-size: 0.9em; /* 90% veľkosti rodiča */
  font-style: italic;
  color: #0094ff;
}


/* RESPONSÍVNE ZMENY */
@media (max-width: 768px) {
  html {
    font-size: 85%;
    overflow-x: hidden;
  }

  body{
    overflow-x: hidden;
  }

.logo h1,
.gradient-banner h2,{
    font-size: 4vw;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 8vh;
    right: 0;
    width: 60vw;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    padding: 2%;
  }

  nav.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .gradient-banner{
    justify-content: center;

  }
  
  .btn.blue{
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    max-width: 50%;

  }

  
  .cta-buttons {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .banner-content{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gradient-top-right{
    width: 100%; 
  }

  .item{
    font-size: 2.5vw;
  }
 
  
  .flex-container {
    /*flex-direction: column;*/
    gap: 2vh;
  }

}



