/*
  PREMIUM COMING SOON LANDING PAGE
  Autor: ChatGPT
  Bez Bootstrap-a, bez frameworka.
*/

/*
  ==============================
  BOJE SAJTA
  Ovde menjaš glavne boje.
  ==============================
*/
:root {
  --bg-main: #05060b;
  --bg-soft: #0b0f18;

  --gold: #cda45e;
  --gold-light: #f3d78b;
  --gold-dark: #8a642d;

  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.42);

  --glass: rgba(12, 15, 23, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.16);
  --border-gold: rgba(243, 215, 139, 0.48);

  --shadow: rgba(0, 0, 0, 0.62);
  --button-text: #120e07;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(205, 164, 94, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(70, 95, 155, 0.18), transparent 34%),
    radial-gradient(circle at 55% 100%, rgba(205, 164, 94, 0.12), transparent 35%),
    linear-gradient(145deg, var(--bg-main), var(--bg-soft) 56%, #06070d);
  overflow-x: hidden;
}

/* Suptilna tekstura preko pozadine */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.45) 0 1px, transparent 1px);
  background-size: 110px 110px, 170px 170px;
  mix-blend-mode: overlay;
}

/* Svetleći blur efekti */
.ambient {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(95px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.48;
  animation: floatAmbient 9s ease-in-out infinite alternate;
}

.ambient-left {
  left: -180px;
  top: 18%;
  background: rgba(205, 164, 94, 0.35);
}

.ambient-right {
  right: -190px;
  top: 8%;
  background: rgba(85, 105, 160, 0.42);
  animation-delay: 1.3s;
}

.ambient-bottom {
  left: 45%;
  bottom: -260px;
  width: 560px;
  height: 560px;
  background: rgba(205, 164, 94, 0.18);
  animation-delay: 2s;
}

/* Zlatne linije u pozadini */
body::before,
body::after {
  content: "";
  position: fixed;
  left: -12%;
  right: -12%;
  height: 360px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  background:
    repeating-radial-gradient(
      ellipse at center,
      transparent 0,
      transparent 10px,
      rgba(243, 215, 139, 0.22) 11px,
      transparent 12px
    );
  transform: rotate(-7deg);
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

body::before {
  top: 16%;
}

body::after {
  bottom: 8%;
  transform: rotate(7deg);
  opacity: 0.26;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 38px;
}

.hero {
  width: min(100%, 1180px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
}

/*
  ==============================
  LOGO
  Ovde uređuješ izgled logo placeholdera.
  ==============================
*/
.logo {
  text-decoration: none;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 900;
  text-shadow: 0 6px 26px rgba(243, 215, 139, 0.18);
}

.logo img {
  display: block;
  max-height: 48px;
  max-width: 180px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255,255,255,0.86);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(243, 215, 139, 0.95);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-card {
  position: relative;
  width: min(100%, 820px);
  margin: auto;
  padding: clamp(38px, 6vw, 74px);
  text-align: center;
  border-radius: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 215, 139, 0.16), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    var(--glass);
  backdrop-filter: blur(30px) saturate(125%);
  -webkit-backdrop-filter: blur(30px) saturate(125%);
  box-shadow:
    0 44px 120px var(--shadow),
    0 0 0 1px rgba(243, 215, 139, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  isolation: isolate;
  animation: cardReveal 900ms cubic-bezier(.2,.75,.2,1) both;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(125deg, rgba(243,215,139,0.65), transparent 28%, transparent 66%, rgba(255,255,255,0.38));
  opacity: 0.36;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  padding: 1px;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-card::after {
  content: "";
  position: absolute;
  top: -45%;
  left: -35%;
  width: 70%;
  height: 180%;
  z-index: -1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.11),
    transparent
  );
  transform: rotate(18deg) translateX(-90%);
  animation: premiumShine 7s ease-in-out infinite;
}

.luxury-ring {
  position: absolute;
  inset: auto auto -180px -140px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  border: 1px solid rgba(243,215,139,0.14);
  box-shadow:
    inset 0 0 90px rgba(243,215,139,0.08),
    0 0 80px rgba(243,215,139,0.08);
  pointer-events: none;
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: clamp(0.74rem, 1.3vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.52em;
  text-transform: uppercase;
}

/*
  ==============================
  TEKST
  Glavni tekst menjaš u index.html.
  Ovde menjaš samo veličine i stil.
  ==============================
*/
h1 {
  margin: 0 auto;
  max-width: 700px;
  font-size: clamp(3.8rem, 9vw, 7.6rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  font-weight: 400;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  color: var(--white);
  text-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

h1 strong {
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 48%, #fff4c5 62%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.gold-divider {
  width: 70px;
  height: 2px;
  margin: 36px auto 30px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 20px rgba(243,215,139,0.85);
}

.subtitle {
  margin-bottom: 12px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.95);
}

.description {
  width: min(100%, 560px);
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.7vw, 1.06rem);
  line-height: 1.75;
}

/*
  ==============================
  DUGME / KONTAKT LINK
  Link menjaš u index.html na href atributu.
  ==============================
*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  color: var(--button-text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45), transparent 42%),
    linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #b98b42);
  box-shadow:
    0 18px 38px rgba(205, 164, 94, 0.26),
    0 0 0 1px rgba(255,255,255,0.16) inset,
    0 -8px 18px rgba(70, 45, 11, 0.22) inset;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    filter 240ms ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow:
    0 24px 56px rgba(205, 164, 94, 0.35),
    0 0 0 1px rgba(255,255,255,0.22) inset,
    0 -8px 18px rgba(70, 45, 11, 0.18) inset;
}

.button span {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 240ms ease;
}

.button:hover span {
  transform: translateX(5px);
}

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

.feature {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 86px;
  color: rgba(255,255,255,0.62);
  font-size: 0.86rem;
}

.feature svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 8px 18px rgba(243,215,139,0.16));
}

.footer {
  padding: 34px 0 0;
  text-align: center;
  color: var(--faint);
  font-size: 0.92rem;
}

@keyframes floatAmbient {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(28px, 34px, 0) scale(1.08);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(1.7);
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes premiumShine {
  0%, 52% {
    transform: rotate(18deg) translateX(-100%);
  }

  78%, 100% {
    transform: rotate(18deg) translateX(210%);
  }
}

/*
  ==============================
  TABLET
  ==============================
*/
@media (max-width: 900px) {
  .page {
    padding: 24px;
  }

  .hero {
    min-height: calc(100vh - 48px);
  }

  .hero-card {
    margin-top: 62px;
    margin-bottom: 34px;
  }
}

/*
  ==============================
  MOBILNI PRIKAZ
  Posebno sređeni razmaci za telefon.
  ==============================
*/
@media (max-width: 640px) {
  body::before,
  body::after {
    height: 260px;
    opacity: 0.24;
  }

  .page {
    padding: 20px 14px;
  }

  .nav {
    padding: 0 4px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .status {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero-card {
    margin-top: 48px;
    padding: 42px 24px 28px;
    border-radius: 30px;
  }

  .eyebrow {
    letter-spacing: 0.36em;
    margin-bottom: 20px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.1rem);
    letter-spacing: -0.075em;
  }

  .gold-divider {
    margin: 30px auto 26px;
  }

  .description {
    margin-bottom: 30px;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .feature {
    grid-template-columns: 28px 1fr;
    justify-items: start;
    align-items: center;
    min-height: 58px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
  }

  .feature svg {
    width: 24px;
    height: 24px;
  }

  .footer {
    padding-top: 22px;
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .hero-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .status span:last-child {
    display: none;
  }

  .status {
    width: 38px;
    justify-content: center;
    padding: 0;
  }
}

/* =========================================================
   VERZIJA BEZ LOGA
   Gornji logo/status deo je uklonjen.
   Kartica ostaje centralno i čisto pozicionirana.
   ========================================================= */
.nav {
  display: none !important;
}

.hero {
  justify-content: center;
}

.hero-card {
  margin: auto !important;
}

@media (max-width: 900px) {
  .hero-card {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
