/* ---------------- GLOBAL ---------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden; /* stop accidental horizontal scroll on small screens */
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-accent {
  color: #70c5f0;
}

/* ---------------- HEADER / NAVBAR ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
  padding: 1rem 0 0.5rem 0;
  border-bottom: 1px solid #222;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.logo img {
  height: 90px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

nav a {
  color: #70c5f0;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

nav a:hover {
  background: #70c5f0;
  color: #000;
}

nav a.btn-nav {
  background: #a9d4ea;
  color: #000;
  font-weight: 900;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
}

nav a.btn-nav:hover {
  background: #5ab6dd;
  box-shadow: 0 0 12px #70c5f0;
}

/* ---------------- HERO (TEXT) ---------------- */

.hero {
  text-align: center;
  padding: 140px 0 60px;
}

.hero h1,
.hero h2 {
  font-size: 2.7rem;
  color: #70c5f0;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.35rem;
  opacity: 0.85;
  line-height: 1.45;
  max-width: 40rem;
  margin: 0 auto;
}

/* ---------------- WHAT WE DO / USLUGE ---------------- */

.features {
  margin: 4.5rem 0 4rem;
  text-align: center;
}

.features .container {
  max-width: 1100px;
}

.features h2 {
  font-size: 1.4rem;
  color: #70c5f0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  aspect-ratio: 0.9;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: default;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.feature-card::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.92) 100%);
  content: '';
  inset: 0;
  position: absolute;
  z-index: 1;
}

.feature-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition:
    transform 0.75s ease,
    filter 0.75s ease;
}

.feature-content {
  align-items: center;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  left: 0;
  padding: 1.4rem;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 2;
}

.feature-eyebrow {
  color: #70c5f0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}

.feature-content h3 {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin: 0;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.feature-content p:not(.feature-eyebrow) {
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
  max-width: 18rem;
  opacity: 0.88;
}

.feature-book-btn {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: #000;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 0.15rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

@media (hover: hover) {
  .feature-card:hover img {
    filter: brightness(0.86);
    transform: scale(1.05);
  }

  .feature-card:hover .feature-book-btn {
    background: #70c5f0;
    border-color: #70c5f0;
    color: #000;
    transform: translateY(-2px);
  }
}

/* ---------------- HOME LINK KARTICE (WORK / ARTISTS) ---------------- */

.service-details {
  margin: 4rem 0;
  text-align: center;
}

.section-kicker {
  color: #70c5f0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.service-details h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin: 0 0 1.8rem;
  text-transform: uppercase;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail {
  border: 1px solid rgba(112, 197, 240, 0.24);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: left;
}

.service-detail h3 {
  color: #70c5f0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.service-detail p {
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  opacity: 0.88;
}

.home-clients {
  margin: 4rem 0 3.5rem;
  text-align: center;
}

.home-clients .container {
  max-width: 1100px;
}

.home-clients h2 {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.1em;
  margin: 0 0 1.6rem;
  text-transform: uppercase;
}

.home-client-logos {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  justify-content: center;
  padding: 1.5rem 0;
}

.home-client-logos img {
  filter: grayscale(1);
  height: 58px;
  opacity: 0.76;
  width: 90%;
  transition:
    filter 0.25s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
  width: auto;
}

@media (hover: hover) {
  .home-client-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
  }
}

.home-links {
  margin: 3rem 0 4rem;
}

.home-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.home-link-card {
  position: relative;
  flex: 1 1 420px;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #111;

  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.home-link-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #70c5f0 0, #000 55%);
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.home-link-card.work-link .home-link-bg {
  background: linear-gradient(135deg, #70c5f0, #5ab6dd, #000);
}

.home-link-card.artists-link .home-link-bg {
  background: linear-gradient(135deg, #c77dff, #70c5f0, #000);
}

.home-link-content {
  position: relative;
  padding: 1.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  align-items: center;
}

.home-link-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.85;
  color: #a9d4ea;
}

.home-link-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.home-link-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* hover efekat za home linkove */

@media (hover: hover) {
  .home-link-card:hover .home-link-bg {
    filter: blur(4px) brightness(0.7);
    transform: scale(1.06);
  }

  .home-link-card:hover .home-link-title {
    transform: translateY(-1px);
  }
}

/* --- 3-COLUMN FOOTER --- */

.three-column-footer {
  width: 100%;
  padding: 3rem 0 3rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.4rem;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.footer-left {
  text-align: left;
  color: #70c5f0;
  line-height: 1.4;
  font-size: 0.95rem;
}

.footer-left a,
.footer-left a:visited {
  color: #70c5f0;
  text-decoration: none !important;
}

.footer-left a:hover {
  color: #ffffff !important;
  opacity: 1;
  text-decoration: none !important;
}

.site-credit {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin: 0;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-credit a,
.site-credit a:visited {
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-credit a:hover {
  color: #fff !important;
  opacity: 1;
}

.site-credit strong {
  font-weight: 900;
}

.footer-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  justify-content: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(112, 197, 240, 0.25));
}

.footer-right {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 0.3rem;
}

.footer-right a,
.footer-right a:visited {
  color: #70c5f0;
  text-decoration: none !important;
  font-size: 0.95rem;
  opacity: 0.9;
  transition:
    opacity 0.25s ease,
    color 0.25s ease;
}

.footer-right a:hover {
  color: #ffffff !important;
  opacity: 1;
  text-decoration: none !important;
}

.whatsapp-float {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  bottom: 1.15rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 0.45rem;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 42px;
  opacity: 0.84;
  padding: 0.62rem 0.9rem;
  position: fixed;
  right: 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  z-index: 998;
}

.whatsapp-float::before {
  background: #fff;
  border-radius: 999px;
  content: '';
  height: 0.44rem;
  opacity: 0.76;
  width: 0.44rem;
}

.whatsapp-float:hover {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  opacity: 1;
  transform: translateY(-2px);
}

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

@media (max-width: 650px) {
  body {
    padding-bottom: 4.4rem;
  }

  .whatsapp-float {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.94);
    bottom: 0.8rem;
    font-size: 0.74rem;
    left: 50%;
    min-height: 44px;
    min-width: min(320px, calc(100vw - 2rem));
    opacity: 0.92;
    padding: 0.68rem 1rem;
    right: auto;
    transform: translateX(-50%);
  }

  .whatsapp-float::after {
    content: 'Piši za termin';
  }

  .whatsapp-float:hover {
    transform: translateX(-50%) translateY(-2px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.4rem;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-right {
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
  }

  .footer-logo {
    height: 34px;
  }
}

@media (max-width: 900px) {
  .features .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
  }

  nav a {
    margin: 0;
    font-size: 0.9rem;
    padding: 0.35rem 0.7rem;
  }

  .logo img {
    height: 55px;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .features .grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    width: 100%;
    max-width: 460px;
    min-height: 340px;
    justify-self: center;
  }

  .home-links-grid {
    flex-direction: column;
  }

  .home-link-card {
    flex: 1 1 auto;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .home-client-logos {
    gap: 18px 24px;
  }

  .home-client-logos img {
    height: 48px;
  }
}

@media (max-width: 480px) {
  nav a {
    font-size: 0.85rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }
}

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

.hero-video {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg-video,
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image {
  transform: translate3d(0, 0, 0) scale(1.14);
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 0, 0, 0.34) 0, rgba(0, 0, 0, 0.72) 44%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.78));
  backdrop-filter: blur(0.5px);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.2rem 1.4rem;
}

.hero-kicker {
  color: #70c5f0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

.hero-content h1,
.hero-content h2 {
  color: #fff;
  font-size: 3.15rem;
  line-height: 1.02;
  margin-bottom: 1rem;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}

.hero-content .lead {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.35rem;
  opacity: 0.92;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.45rem;
}

.hero-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.11em;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.hero-btn-primary {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.hero-btn-secondary {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  color: #fff;
}

@media (hover: hover) {
  .hero-btn:hover {
    transform: translateY(-2px);
  }

  .hero-btn-primary:hover {
    background: #70c5f0;
    border-color: #70c5f0;
    color: #000;
  }

  .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
  }
}

/* MOBILE FIXES ZA HERO VIDEO */

@media (max-width: 700px) {
  .hero-video {
    height: 55vh;
    min-height: 340px;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 2.1rem;
  }

  .hero-content .lead {
    font-size: 1.05rem;
  }

  .hero-content {
    padding: 2.6rem 1.25rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.2rem;
  }

  .hero-btn {
    min-height: 42px;
    padding: 0.68rem 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-image {
    transform: none;
    will-change: auto;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2.2rem 1.05rem;
  }
}
