/* ================================================= */
/* ================= RESET ========================= */
/* ================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================================================= */
/* ================= NAVBAR ======================== */
/* ================================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 6%;
  z-index: 1001;

  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* BURGER */

.burger {
  width: 34px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.35s ease;
}

/* ACTIVE */

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* ================================================= */
/* ================= OVERLAY MENU ================== */
/* ================================================= */

.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;

  background: radial-gradient(circle at top, #1a0f1f, #000);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  padding: 80px 0 40px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s;
}

/* LINKS */

.menu-links {
  list-style: none;
  text-align: center;
}

.menu-links li {
  margin: 22px 0;
}

.menu-links a {
  font-size: 48px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  letter-spacing: -1px;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #d46ac7;
}

/* SOCIALS */

.menu-socials {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 16px;
}

.menu-socials img {
  width: 24px;
  height: 24px;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-socials img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ================================================= */
/* ================= HERO ========================== */
/* ================================================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url('./assets/bannermain.png') center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.65)
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #000);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.brand {
  font-size: 50px;
  letter-spacing: 4px;
  margin-bottom: 28px;
  opacity: 0.85;
  transform: translateY(60px);
}

.logo img {
  width: 450px;
  margin-bottom: 28px;
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

h1 {
  font-size: 90px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 42px;
  transform: translateY(-60px);
}

h1 span {
  color: #d46ac7;
}

.cta {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;

  background: linear-gradient(90deg, #7a3cff, #d46ac7);
  box-shadow: 0 0 25px rgba(212,106,199,0.45);

  transform: translateY(-55px);
  transition: box-shadow 0.3s ease;
}

.cta:hover {
  box-shadow: 0 0 40px rgba(212,106,199,0.7);
}

/* ================================================= */
/* ================= SERVICES ====================== */
/* ================================================= */

.services {
  padding: 140px 6%;
}

.services-header {
  text-align: center;
  margin-bottom: 120px;
}

.services-title {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -2px;
}

.services-title span {
  color: #d46ac7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 120px;
  max-width: 1400px;
  margin: 0 auto;
  transform: translateX(90px);
}

.service-item {
  position: relative;
  transition: transform 0.35s ease;
}

.service-item:hover {
  transform: scale(1.05) translateY(-6px);
}

.service-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.service-item h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.service-short {
  font-size: 16px;
  color: #cfcfcf;
  transition: opacity 0.3s ease;
}

.service-more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 15.5px;
  line-height: 1.9;
  color: #cfcfcf;
  transition: max-height 0.45s ease, opacity 0.35s ease;
}

.service-item:hover .service-more {
  max-height: 240px;
  opacity: 1;
  margin-top: 16px;
}

.service-item:hover .service-short {
  opacity: 0.5;
}

.service-item::after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  margin-top: 32px;
  background: linear-gradient(to right, #d46ac7, transparent);
  transition: width 0.35s ease;
}

.service-item:hover::after {
  width: 280px;
}

/* ================================================= */
/* ================= FAQ =========================== */
/* ================================================= */

.faq {
  padding: 140px 6%;
}

.faq-header {
  text-align: center;
  margin-bottom: 100px;
}

.faq-title {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -2px;
}

.faq-title span {
  color: #d46ac7;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 32px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.faq-question:hover {
  color: #d46ac7;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #cfcfcf;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ================================================= */
/* ================= CONTACT ======================= */
/* ================================================= */

.contact {
  padding: 160px 6%;
}

.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.contact-title {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.contact-title span {
  color: #d46ac7;
}

.contact-desc {
  font-size: 16.5px;
  line-height: 1.9;
  color: #cfcfcf;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding: 14px 0;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d46ac7;
}

/* BUTTON */

.contact-btn {
  align-self: flex-start;
  padding: 14px 36px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #7a3cff, #d46ac7);
  box-shadow: 0 0 25px rgba(212,106,199,0.45);
}

/* SUCCESS */

.form-success {
  display: none;
  margin-top: 40px;
  padding: 28px 36px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(122,60,255,0.15),
    rgba(212,106,199,0.15)
  );
}

/* HONEYPOT */

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ================================================= */
/* ================= FOOTER ======================== */
/* ================================================= */

.site-footer {
  padding: 140px 8% 60px;
  background: radial-gradient(circle at top, #2a1438, #120014, #000);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-family: 'JetBrains Mono', monospace;
}

.footer-contact {
  text-align: right;
}

.footer-email {
  font-size: 26px;
  font-weight: 700;
  color: #d46ac7;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 120px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 18px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  display: inline-block;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-socials a[aria-label="Instagram"] {
  background-image: url("assets/instagram.png");
}

.footer-socials a[aria-label="Facebook"] {
  background-image: url("assets/facebook.png");
}
/* =============================== */
/* ===== FIX – NAŠA VÍZIA ========= */
/* =============================== */

.work {
  padding: 120px 8%;
}

.work-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  margin-bottom: 100px;
}

.about-heading {
  position: relative;
  padding-left: 80px;
}

.about-heading::before,
.about-heading::after {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(212,106,199,0),
    rgba(212,106,199,1),
    rgba(212,106,199,0)
  );
  box-shadow: 0 0 25px rgba(212,106,199,0.8);
}

.about-heading::before { top: -20px; }
.about-heading::after { bottom: -20px; }

.about-title {
  font-size: 76px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
}

.about-title span {
  display: block;
  margin-left: 67px;
  color: #d46ac7;
}

.work-text {
  margin-left: 60px;
}

.work-text p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.9;
  color: #cfcfcf;
  max-width: 540px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .work-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-text {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .about-heading {
    padding-left: 0;
  }

  .about-heading::before,
  .about-heading::after {
    display: none;
  }

  .about-title {
    font-size: 42px;
  }

  .about-title span {
    margin-left: 0;
  }
}
/* =============================== */
/* ===== FIX – NAŠA VÍZIA IMAGES == */
/* =============================== */

.work-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.work-image {
  height: 440px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .work-images {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-image {
    height: 260px;
  }
}
/* ================================================= */
/* ============ MOBILE FINAL FIX =================== */
/* ================================================= */

@media (max-width: 768px) {

  /* ===== GLOBAL ===== */

  body {
    font-size: 15px;
  }

  section {
    padding: 72px 6%;
  }

  /* ===== NAVBAR ===== */

  .navbar {
    padding: 20px 6%;
  }

  .burger {
    width: 38px;
    height: 26px;
  }

  /* ===== HERO ===== */

  .hero {
    min-height: 100svh;
    height: auto;
    padding: 0 6%;
  }

  .hero-content {
    transform: translateY(-30px);
  }

  .brand {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 14px;
    transform: translateY(20px);
  }

  .logo img {
    width: 260px;
    margin-bottom: 18px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 26px;
    transform: none;
  }

  .cta {
    font-size: 13px;
    padding: 12px 28px;
    transform: none;
  }

  .hero::after {
    height: 140px;
  }

  /* HERO BACKGROUND MOBILE */

  .hero-video {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
      url('./assets/backgroundbgmobile.png');
    background-size: cover;
    background-position: center;
  }

  /* ===== NAŠA VÍZIA ===== */

  .work {
    padding: 72px 6%;
  }

  .work-top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .about-heading {
    padding-left: 0;
  }

  .about-heading::before,
  .about-heading::after {
    display: none;
  }

  .about-title {
    font-size: 42px;
    line-height: 1;
  }

  .about-title span {
    margin-left: 0;
  }

  .work-text {
    margin-left: 0;
  }

  .work-text p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .work-images {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .work-image {
    height: 260px;
  }

  /* ===== SERVICES ===== */

  .services {
    padding: 72px 6%;
  }

  .services-header {
    margin-bottom: 64px;
  }

  .services-title {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    transform: none;
  }

  .service-item {
    transform: none !important;
  }

  .service-item h3 {
    font-size: 26px;
  }

  .service-short,
  .service-more {
    font-size: 14.5px;
  }

  .service-more {
    max-height: none;
    opacity: 1;
    margin-top: 12px;
  }

  .service-item::after {
    width: 120px;
  }

  /* ===== FAQ ===== */

  .faq {
    padding: 72px 6%;
  }

  .faq-header {
    margin-bottom: 60px;
  }

  .faq-title {
    font-size: 42px;
  }

  .faq-question {
    font-size: 15.5px;
    line-height: 1.5;
    gap: 12px;
    align-items: flex-start;
  }

  .faq-icon {
    margin-top: 2px;
    flex-shrink: 0;
  }

  .faq-answer p {
    font-size: 14.5px;
    line-height: 1.75;
  }

  /* ===== CONTACT ===== */

  .contact {
    padding: 80px 6%;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-desc {
    font-size: 14.5px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

  /* ===== OVERLAY MENU (HALF MENU) ===== */

  .overlay-menu {
    top: 0;
    bottom: auto;
    height: 55vh;
    max-height: 520px;
    border-radius: 0 0 24px 24px;

    transform: translateY(-100%);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease,
      visibility 0s linear 0.35s;
  }

  .overlay-menu.active {
    transform: translateY(0);
  }

  .menu-links a {
    font-size: 28px;
  }

  .menu-socials {
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* ===== FOOTER ===== */

  .site-footer {
    padding: 100px 6% 50px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-email {
    font-size: 22px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
/* =============================================== */
/* ===== MOBILE TYPO FIX – NAŠA VÍZIA ============= */
/* =============================================== */

@media (max-width: 768px) {

  .about-title {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -1px;
  }

  .about-title span {
    display: inline-block;
    margin-top: 6px;
    font-size: 42px;
    color: #d46ac7;
  }

  .work-text p {
    font-size: 15px;
    line-height: 1.85;
    margin-top: 6px;
  }
}
/* ANIMÁCIE ZAČIATOK SOM GAY */
/* =============================== */
/* ================================================= */
/* =============== SCROLL ANIMATIONS =============== */
/* ================================================= */

/* -------- BASE REVEAL -------- */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  will-change: transform, opacity;
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* -------- DIRECTIONS -------- */

.reveal-up {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

/* -------- MASK TEXT REVEAL -------- */

.reveal-mask {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
  transition: clip-path 1s ease;
}

.reveal-mask.show {
  clip-path: inset(0 0 0 0);
}

/* ================================================= */
/* ================= HERO FIX ====================== */
/* ================================================= */

/* POISTKA – hero layout sa nikdy nehýbe */

.hero .logo,
.hero .logo img,
.hero .brand,
.hero h1,
.hero .cta {
  transform: none;
}

/* ================================================= */
/* ================= SERVICES ====================== */
/* ================================================= */

/* Pulse animation – LEN keď je viditeľné */



.service-item {
  animation: none;
}

.service-item.show {
  animation: servicePulse 5.5s ease-in-out infinite;
}

/* ================================================= */
/* ================= FAQ =========================== */
/* ================================================= */

.faq-item.reveal {
  transform: translateY(24px);
}

/* ================================================= */
/* ================= CONTACT ======================= */
/* ================================================= */

.contact-form.reveal {
  transform: translateY(28px);
}

/* ================================================= */
/* ================= MOBILE ======================== */
/* ================================================= */

@media (max-width: 768px) {

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }

  .reveal {
    transition:
      opacity 0.75s ease,
      transform 0.75s ease;
  }

  .reveal-mask {
    transition: clip-path 0.9s ease;
  }
}
.hero .brand {
  margin-bottom: 28px;
  margin-top: 60px; /* ⬅️ TOTO ho posunie nižšie */
  transform: translateY(55px);
}
/* ================================================= */
/* ================= CUSTOM CURSOR ================= */
/* ================================================= */

.custom-cursor,
.custom-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* MALÁ BODKA */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: #d46ac7;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(212,106,199,0.9);
}

/* VEĽKÝ KRUH */
.custom-cursor-outline {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212,106,199,0.6);
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    width 0.25s ease,
    height 0.25s ease,
    border-color 0.25s ease;
}

/* HOVER EFEKT */
.cursor-hover .custom-cursor-outline {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: rgba(212,106,199,1);
}

/* SKRYŤ NA MOBILE */
@media (max-width: 768px) {
  .custom-cursor,
  .custom-cursor-outline {
    display: none;
  }
}
/* ================================================= */
/* ============== HIDE DEFAULT CURSOR ============== */
/* ================================================= */

html,
body {
  cursor: none;
}

/* bezpečnostná výnimka – text inputy */
input,
textarea {
  cursor: text;
}
body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
/* ================================================= */
/* ===== CHROME MOBILE OVERLAY MENU FIX ============= */
/* ================================================= */

@media (max-width: 768px) {

  /* NEFIXUJ BODY – Chrome to nezvláda */
  body.menu-open {
    position: static !important;
    overflow: hidden;
    touch-action: none;
  }

  /* ZRUŠ TRANSFORM NA OVERLAY – stabilita */
  .overlay-menu {
    transform: none !important;
  }

  /* SOCIALS NECH SÚ SÚČASŤ LAYOUTU */
  .menu-socials {
  position: relative !important;
  bottom: auto !important;
  margin-top: 16px; /* ⬅️ menšia medzera = vyššie */
  padding-bottom: env(safe-area-inset-bottom);
}
 }
@media (min-width: 769px) {
  .hero .cta {
    margin-bottom: 80px;
  }
}
.custom-cursor,
.custom-cursor-outline {
  z-index: 2147483647 !important;
  pointer-events: none;
}

.portfolio-spline canvas {
  cursor: none !important;
}
/* ================================================= */
/* ===== FOOTER FADE TO BLACK (TOP → BOTTOM) ======= */
/* ================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
}

/* gradient overlay */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  /* TOP = PURE BLACK, DOWN = FADE */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 18%,
    rgba(0,0,0,0.85) 40%,
    rgba(0,0,0,0.5) 65%,
    rgba(0,0,0,0) 100%
  );
}

/* footer content ABOVE fade */
.site-footer > * {
  position: relative;
  z-index: 2;
}
/* ================================================= */
/* ===== HERO LAYOUT FIX (REVEAL SAFE) ============= */
/* ================================================= */

/* HERO sa nesmie riadiť globálnym section spacingom */
.hero {
  padding: 0 !important;
}

/* HERO CONTENT – KONEČNE LAYOUT */
.hero-content {
  max-width: 1100px;
  margin: 0 auto;

  min-height: 100svh;

  display: flex;
  flex-direction: column;
  align-items: center;

  /* ❌ NIE center – to tlačilo CTA dole */
  justify-content: flex-start;

  /* 🔑 JEDINÝ ZDROJ MEDZIER */
  gap: 20px;

  /* 🔑 OPTICKÁ POZÍCIA HERO */
  padding-top: 22vh;
}

/* =============================== */
/* HERO TEXT – ZRUŠIŤ MARGIN CHAOS */
/* =============================== */

.hero .brand,
.hero h1,
.hero .logo,
.hero .cta {
  margin: 0;
}

/* =============================== */
/* CTA – MUSÍ BYŤ HNEĎ POD TEXTOM */
/* =============================== */

.hero .cta {
  margin-top: 10px;
}

/* =============================== */
/* ULTRA-WIDE POISTKA */
/* =============================== */

@media (min-width: 1800px) {
  .hero-content {
    padding-top: 18vh;
  }
}
/* ================================================= */
/* ===== HERO VERTICAL POSITION – FINAL FIX ======= */
/* ================================================= */

/* POSUNIEME CELÝ HERO BLOK VYŠŠIE */
.hero-content {
  padding-top: 16vh; /* ⬅️ HLAVNÝ FIX */
}

/* ULTRA-WIDE MONITORY (2K / 4K) */
@media (min-width: 1800px) {
  .hero-content {
    padding-top: 14vh;
  }
}
.hero-content {
  padding-top: 12vh !important;
}
/* ================================================= */
/* ===== HERO REAL FIX – INTERNAL COMPRESSION ===== */
/* ================================================= */

/* HERO layout nech ostane */
.hero {
  padding: 0 !important;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  /* jemný posun, nie vh hack */
  padding-top: 14vh;
  gap: 14px; /* ⬅️ menšie medzery */
}

/* =============================== */
/* 🔥 LOGO – HLAVNÝ VINNÍK */
/* =============================== */

.hero .logo img {
  width: 360px;          /* ⬅️ ZMENŠI */
  margin-bottom: 12px;  /* ⬅️ ZRUŠ OBROVSKÝ SPACING */
}

/* =============================== */
/* TEXTY – STLAČIŤ */
/* =============================== */

.hero .brand {
  margin-bottom: 6px;
}

.hero h1 {
  margin-top: 6px;
}

/* =============================== */
/* CTA – TERAZ SA ZMESTÍ */
/* =============================== */

.hero .cta {
  margin-top: 10px;
}

/* =============================== */
/* ULTRA-WIDE POISTKA */
/* =============================== */

@media (min-width: 1800px) {
  .hero-content {
    padding-top: 12vh;
  }

  .hero .logo img {
    width: 340px;
  }
}
/* ================================================= */
/* ===== HERO SPACING REFINEMENT ================== */
/* ================================================= */

/* 1️⃣ ZJEDNOTENÝ VERTIKÁLNY RYTMUS V HERO */
.hero-content {
  gap: 28px; /* ⬅️ rovnaké medzery medzi VŠETKÝMI prvkami */
}

/* 2️⃣ LOGO – BEZ EXTRA POSUNOV */
.hero .logo {
  margin: 0;
}

/* 3️⃣ NEXOVIO – POSUN O CHLP VYŠŠIE */
.hero .brand {
  margin-top: -16px;   /* ⬅️ POSUN HORE */
  margin-bottom: 0;
}

/* 4️⃣ HEADLINE – ŽIADNY VLASTNÝ SPACING */
.hero h1 {
  margin: 0;
}

/* 5️⃣ CTA – MALÝ ODSTUP, NIE SKOK */
.hero .cta {
  margin-top: 4px;
}
/* ================================================= */
/* ===== HERO FINAL GLOBAL SHIFT =================== */
/* ================================================= */

/* POSUN CELÉHO HERO STACKU VYŠŠIE */
.hero-content {
  padding-top: 8vh !important;   /* ⬅️ HLAVNÉ ČÍSLO */
}
/* ================================================= */
/* ===== HERO – LOGO → TEXT CLOSER ================= */
/* ================================================= */

/* Zmenši medzeru LEN medzi logom a headline */
.hero .logo {
  margin-bottom: -50px;
}
/* ================================================= */
/* ===== ULTRA-WIDE DISPLAY FIX (2K / 4K) =========== */
/* ================================================= */

@media (min-width: 1600px) {

  /* === GLOBAL SCALE === */
  body {
    font-size: 18px;
  }

  /* === SECTION SPACING === */
  section {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  /* === HERO === */
  .hero-content {
    max-width: 1400px;
    padding-top: 14vh;
  }

  /* === HEADINGS === */
  h1 {
    font-size: 104px;
  }

  .services-title,
  .faq-title,
  .contact-title,
  .about-title {
    font-size: 88px;
  }

  /* === SERVICES GRID === */
  .services-grid {
    max-width: 1600px;
    gap: 140px 160px;
  }

  /* === TEXT READABILITY === */
  .work-text p,
  .service-short,
  .service-more,
  .faq-answer p,
  .contact-desc {
    font-size: 17.5px;
    line-height: 2;
  }

  /* === FOOTER === */
  .site-footer {
    padding-top: 200px;
  }
}
/* ================================================= */
/* ===== DESKTOP / 2K / 4K RESPONSIVE FIX =========== */
/* ===== (NEZASAHUJE DO MOBILU) ==================== */
/* ================================================= */

@media (min-width: 1200px) {

  /* ================= LAYOUT ================= */

  .hero-content,
  .services-grid,
  .contact-wrapper,
  .footer-inner,
  .faq-list,
  .work-top {
    max-width: min(92vw, 1700px);
  }

  /* ================= TYPOGRAPHY ================= */

  body {
    font-size: clamp(16px, 0.9vw, 18px);
  }

  h1 {
    font-size: clamp(88px, 5.5vw, 120px);
  }

  .services-title,
  .faq-title,
  .contact-title,
  .about-title {
    font-size: clamp(68px, 4.5vw, 92px);
  }

  .service-item h3 {
    font-size: clamp(30px, 1.8vw, 38px);
  }

  .service-short,
  .service-more,
  .faq-answer p,
  .contact-desc,
  .work-text p {
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.95;
  }

  /* ================= HERO ================= */

  .hero .logo img {
    width: clamp(360px, 22vw, 460px);
  }

 .hero .brand {
  font-size: clamp(42px, 2.8vw, 58px);
  letter-spacing: 4px;
}


  .hero .cta {
    font-size: 14px;
    padding: 16px 40px;
  }
}

/* ================================================= */
/* ===== ULTRA-WIDE (2K / 4K / 5K) ================= */
/* ================================================= */

@media (min-width: 1800px) {

  section {
    padding-top: 200px;
    padding-bottom: 200px;
  }

  .services-grid {
    gap: 140px 180px;
  }

  .contact-wrapper {
    gap: 160px;
  }
}
/* ================================================= */
/* ===== FOOTER – FULL WIDTH CONTENT FIX =========== */
/* ================================================= */

@media (min-width: 1200px) {

  .footer-inner {
    max-width: min(92vw, 1700px);
  }
}

@media (min-width: 1800px) {

  .footer-inner {
    max-width: min(92vw, 1900px);
  }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* ================================================= */
/* ================= COOKIE BANNER ================= */
/* ================================================= */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  width: calc(100% - 48px);
  max-width: 920px;

  background: linear-gradient(
    135deg,
    rgba(18,0,20,0.95),
    rgba(0,0,0,0.95)
  );

  border-radius: 22px;
  box-shadow: 0 0 40px rgba(212,106,199,0.25);

  padding: 22px 26px;

  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-content p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 620px;
}

.cookie-content a {
  color: #d46ac7;
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

/* ACTIONS */

.cookie-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 26px;
  border-radius: 40px;
  font-size: 13px;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* PRIMARY */

.cookie-btn.primary {
  color: #fff;
  background: linear-gradient(90deg, #7a3cff, #d46ac7);
  box-shadow: 0 0 20px rgba(212,106,199,0.45);
}

.cookie-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(212,106,199,0.7);
}

/* SECONDARY */

.cookie-btn.secondary {
  background: transparent;
  color: #cfcfcf;
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.secondary:hover {
  color: #fff;
  border-color: #d46ac7;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 0;
    border-radius: 24px 24px 0 0;
    width: 100%;
    max-width: none;
    left: 0;
    transform: translateY(100%);
  }

  .cookie-banner.show {
    transform: translateY(0);
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
