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

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

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: #000;
  color: #fff;
}

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


/* ---------------- 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 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: 3rem 0;
  text-align: center;
}

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

.features .grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  position: relative;
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* slika */

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

/* tekst */

.feature-card h4,
.feature-card p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
  margin: 0;
  pointer-events: none;
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.feature-card h4 {
  top: 45%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  opacity: 1;
  color: #fff;
}

.feature-card p {
  top: 52%;
  opacity: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

/* BOOK STUDIO dugme u kartici */

.feature-book-btn {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translateX(-50%) translateY(10px);
  display: inline-block;
  padding: 0.5rem 1.3rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;

  background: #ffffff;    /* BELA BOJA */
  color: #000;            /* CRNI TEXT */
  
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);

  opacity: 0;             /* ← sakriveno */
  pointer-events: none;   /* ← neaktivno dok je sakriveno */

  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

/* kada hoveruješ karticu */

.feature-card:hover .feature-book-btn {
  opacity: 1;
  pointer-events: auto;     /* sada može da se klikne */
  transform: translateX(-50%) translateY(0);
}

/* hover na samo dugme */

.feature-book-btn:hover {
  background: #70C5F0;       /* plava */
  color: #000;
  box-shadow: 0 0 14px rgba(112, 197, 240, 0.7);
}


/* mobile fallback (ako ikad dodaš .show-desc preko JS-a) */

.feature-card.show-desc img {
  filter: blur(5px) brightness(0.5);
  transform: scale(1.05);
}

.feature-card.show-desc h4 {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
}

.feature-card.show-desc p {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


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

.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;
}

.footer-center {
  display: flex;
  justify-content: center;
}

.footer-logo {
  height: 42px;
  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;
}


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

@media (max-width: 650px) {

  .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: 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;
  }

  .feature-card {
    width: 100%;
    max-width: 400px;
  }

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

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

@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;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  z-index: -1;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h2 {
  font-size: 2.9rem;
  color: #70C5F0;
  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);
}

/* MOBILE FIXES ZA HERO VIDEO */

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

  .hero-content h2 {
    font-size: 2rem;
  }

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