/* ============================================
   GLOBAL DARK BACKGROUND
============================================ */
body.preview-body {
  background-color: #0f0f10;
}

/* ============================================
   SLUŽBY – HERO SECTION (PREMIUM)
============================================ */

.sluzby-hero {
  position: relative;
  padding: 120px 20px 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background-color: #0f0f10;
  min-height: 460px;
  display: flex;
  align-items: center;
}

/* Background with gradients */
.sluzby-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0.26) 65%,
      rgba(0,0,0,0.55) 100%
    ),
    linear-gradient(to right,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.62) 40%,
      rgba(0,0,0,0.92) 100%
    ),
    url("../assets/sluzbybanner.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.55);
}

/* HERO TEXT */
.sluzby-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: 5%;
  color: #fff;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1.1s ease-out forwards;
}

.sluzby-hero-inner h1,
.sluzby-hero-inner p {
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.65);
}

.sluzby-hero-inner h1 {
  font-size: 2.85rem;
  margin-bottom: 0.7rem;
  line-height: 1.15;
  font-weight: 600;
}

.sluzby-hero-inner p {
  max-width: 560px;
  font-size: 1.13rem;
  color: #d4d4dd;
  line-height: 1.57;
}

.sluzby-pill {
  display: inline-block;
  font-size: 0.82rem;
  padding: 4px 13px;
  border-radius: 30px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Fade-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SLUŽBY STRIP (GRID)
============================================ */

.sluzby-strip {
  background: #0f0f10;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 20px;
}

.sluzby-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.sluzby-strip--reverse .sluzby-strip-inner {
  direction: rtl;
}

.sluzby-strip--reverse .sluzby-strip-content,
.sluzby-strip--reverse .sluzby-strip-image {
  direction: ltr;
}

/* ============================================
   IMAGE BLOCKS
============================================ */

.sluzby-strip-image {
  border-radius: 18px;
  overflow: hidden;
  background: #050506;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.85);
  aspect-ratio: 16 / 9;
}

.sluzby-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   TEXT BLOCKS
============================================ */

.sluzby-strip-content {
  color: #f9fafb;
  max-width: 580px;
}

.sluzby-tag {
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f97373;
  margin-bottom: 0.4rem;
}

.sluzby-strip-content h2 {
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  line-height: 1.25;
}

.sluzby-strip-content p {
  font-size: 1.05rem;
  color: #c3c3c8;
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

.sluzby-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  color: #a9a9b0;
  font-size: 1.02rem;
}

.sluzby-list li::before {
  content: "— ";
  color: #f97373;
}

.sluzby-link {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.sluzby-link:hover {
  text-decoration: underline;
}

/* ============================================
   FINAL CTA SECTION
============================================ */

.sluzby-final {
  position: relative;
  padding: 70px 20px 80px;
  background-image: url("../assets/onas5.png");
  background-size: cover;
  background-position: center;
}

.sluzby-final-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.80) 35%,
    rgba(0,0,0,0.82) 100%
  );
}

.sluzby-final-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.sluzby-final-inner h2 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.sluzby-final-inner p {
  font-size: 1rem;
  color: #d0d0d5;
  margin-bottom: 1.8rem;
}

.sluzby-final-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   RESPONSIVE FIXES
============================================ */

@media (max-width: 900px) {

  .sluzby-hero-inner {
    margin-left: 0;
  }

  .sluzby-strip--reverse .sluzby-strip-inner {
    direction: ltr !important;
  }

  .sluzby-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
  }

  .sluzby-strip-image {
    width: 100%;
    aspect-ratio: 16 / 11;
  }

  .sluzby-strip-content {
    text-align: left !important;
  }

  .sluzby-final-cta {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .sluzby-hero-inner h1 {
    font-size: 1.95rem;
  }
}
/* Reveal base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s ease-out;
}

/* Aktivovaná verzia */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Smery pohybu */
.reveal-left {
  transform: translateX(-60px);
}
.reveal-right {
  transform: translateX(60px);
}
.reveal-top {
  transform: translateY(-60px);
}
.reveal-bottom {
  transform: translateY(60px);
}

/* Keď sa aktivujú */
.reveal-left.active,
.reveal-right.active,
.reveal-top.active,
.reveal-bottom.active {
  transform: translate(0,0);
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-socials img {
  width: 60px;
  height: 60px;
  filter: none; /* nechávame farbu ikon bez prefarbovania */
  opacity: 0.8;
  transition: opacity .2s ease, transform .2s ease;
}

.footer-socials img:hover {
  opacity: 1;
  transform: scale(1.1);
}
body {
  display: block !important;
}

.nav-wrapper {
  position: sticky !important;
  top: 0;
  z-index: 1000;
}