@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fdfdfd;
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.7;
}

.container {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

/* --------------------------------------------------
   HLAVIČKA
-------------------------------------------------- */

.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.logo span {
  color: #0077cc;
}

.menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #0077cc;
}

.btn {
  background: #0077cc;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #005fa3;
}

.btn--ghost {
  background: transparent;
  border: 2px solid #0077cc;
  color: #0077cc !important;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn--ghost:hover {
  background: #0077cc;
  color: #fff !important;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */

.hero {
  padding: 5rem 0;
  background: #f4f9ff;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__text h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.hero__text p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2rem;
}

.hero__visual img {
  width: 260px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* --------------------------------------------------
   TRUST BAR – Font Awesome ikonky
-------------------------------------------------- */

.trust {
  padding: 3rem 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.trust__item {
  background: #f6faff;
  padding: 1.6rem;
  border-radius: 10px;
  border: 1px solid #dce8ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  min-height: 140px;
  justify-content: center;
  text-align: left;
}

.trust__item i {
  font-size: 1.6rem;
  color: #0077cc;
  opacity: 0.8;
}

.trust__item strong {
  font-size: 1.1rem;
  color: #222;
}

/* --------------------------------------------------
   SEKCIÁ
-------------------------------------------------- */

.section {
  padding: 4rem 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.section__lead {
  margin-top: 0.5rem;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.refs, .services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ref, .service {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 1.6rem 1.8rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ref:hover, .service:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.ref strong, .service strong {
  font-size: 1.15rem;
  color: #222;
  display: block;
  margin-bottom: 0.6rem;
}

/* --------------------------------------------------
   KONTAKT
-------------------------------------------------- */

.contact p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.contact a {
  color: #0077cc;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------
   ANIMÁCIA
-------------------------------------------------- */

.animate {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.footer {
  text-align: center;
  padding: 2rem 0;
  color: #666;
  font-size: 0.95rem;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    position: absolute;
    right: 1rem;
    top: 70px;
    width: 200px;
  }

  .menu-toggle {
    display: block;
  }
}
