* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}


/* Hero Video */
.hero-video {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin-top: calc(var(--header-height, 50px));
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 2rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-overlay p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.hero-overlay .btn {
  background: #0066cc;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/*O lieku*/
.about-modern {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.about-modern h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #003366;
  position: relative;
  display: inline-block;
}

.about-modern h2 i {
  margin-right: 0.5rem;
  color: #00aaff;
}

.about-modern .lead {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.features-grid-modern {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #00aaff;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-card i {
  font-size: 2.2rem;
  color: #00aaff;
  margin-bottom: 1rem;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #003366;
}


/*Benefits*/
.benefits-modern {
  padding: 0;
  background: white;
}

.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 2rem auto;
  max-width: 1200px;
}

.benefits-img {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  transition: transform 0.4s ease;
}

.benefits-img:hover {
  transform: scale(1.02);
}

.benefits-text {
  flex: 1 1 50%;
  background: white;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInRight 1s ease forwards;
}

.benefits-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #003366;
}

.benefits-text ul {
  list-style: none;
  padding: 0;
}

.benefits-text ul li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.benefits-text ul li i {
  color: #00aaff;
  margin-right: 0.75rem;
  font-size: 1.3rem;
}

/* Animácia */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responzívne */
@media (max-width: 768px) {
  .benefits-wrapper {
    flex-direction: column;
  }

  .benefits-img,
  .benefits-text {
    flex: 1 1 100%;
  }
}

/*usage*/
.usage-split {
  padding: 0;
  background-color: #fff;
}

.usage-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: 3rem auto;
}

.usage-text {
  flex: 1 1 50%;
  padding: 3rem 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.usage-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #003366;
}

.usage-text .lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.usage-steps-list {
  list-style: none;
  padding-left: 0;
}

.usage-steps-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
}

.usage-steps-list li i {
  color: #00aaff;
  font-size: 1.3rem;
  margin-right: 0.75rem;
}

.usage-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  transition: transform 0.4s ease;
}

.usage-image:hover {
  transform: scale(1.02);
}

/* Responzívne */
@media (max-width: 768px) {
  .usage-wrapper {
    flex-direction: column-reverse;
  }

  .usage-text,
  .usage-image {
    flex: 1 1 100%;
  }
}

/*timeline*/
.timeline-modern {
  background: #f9f9f9;
  padding: 4rem 1rem;
}

.timeline-modern h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.timeline-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #00aaff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.timeline-content h4 {
  margin: 0 0 0.5rem;
  color: #003366;
}

.timeline-content p {
  margin: 0;
  color: #444;
}

/* Čiara */
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #cceeff;
  z-index: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  height: 100%;
  border-left: 2px solid transparent;
  z-index: -1;
}

/* Responzívne */
@media (max-width: 768px) {
  .timeline {
    gap: 2rem;
  }

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-icon {
    margin-bottom: 0.5rem;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item::before {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* Sekcie */
.section {
  padding: 4rem 0;
}

.section-light {
  background: #f4f4f4;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Footer */
.coronex-footer {
  background-color: #003b8f;
  color: white;
  font-family: 'Outfit', sans-serif;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.coronex-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.coronex-footer a:hover {
  color: #a3d4ff;
}

.coronex-footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.coronex-footer .footer-column {
  flex: 1 1 220px;
  margin-bottom: 20px;
  padding: 0 15px;
}

.coronex-footer .footer-column h4 {
  color: #0ebeff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.coronex-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coronex-footer .footer-column ul li {
  margin-bottom: 8px;
}

.coronex-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ddd;
}


