/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #F5C518;          /* zlata — primarni akcent */
  --blue-dark: #E8A800;     /* zlata temna — hover */
  --blue-light: #FFD740;    /* zlata svetla */
  --dark: #0B0F2A;          /* navy deep */
  --dark2: #1A2448;         /* navy mid — bolj razločen od dark */
  --light: #1C2550;         /* navy light */
  --white: #ffffff;
  --text: #E8EBF4;          /* off-white */
  --text-light: #9BA3C2;    /* gray light */
  --accent: #F5C518;        /* yellow gold */
  --navy-border: #243068;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--dark);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 17, 40, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo img { height: 56px; width: auto; }

.nav-brand {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-brand em { color: var(--accent); font-style: normal; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1.25rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  text-transform: uppercase;
}

.nav-links a.active-page { color: var(--accent); }

.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--dark);
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  font-weight: 700;
}
.nav-links a.nav-cta:hover { background: #ffd000; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 17, 40, 0.50) 0%,
    rgba(13, 17, 40, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  opacity: 0.9;
  line-height: 1;
  animation: fadeUp 0.8s ease both;
}
.hero-tag em { color: var(--accent); font-style: normal; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: fadeUp 0.9s ease 0.1s both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.hero-sub {
  font-family: var(--font-cond);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  margin: 1.2rem 0 2rem;
  animation: fadeUp 1s ease 0.25s both;
}
.hero-sub strong { color: var(--accent); }

.btn-hero {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
  animation: fadeUp 1s ease 0.35s both;
  border: 2px solid rgba(0,0,0,0.1);
}
.btn-hero:hover { background: var(--blue-light); transform: translateY(-2px); }

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
}
.hero-dot.active { background: var(--accent); transform: scale(1.3); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-light { background: var(--dark); }
.section-dark  { background: var(--dark2); }
.section-blue  { background: var(--dark2); border-top: 3px solid var(--blue); border-bottom: 3px solid var(--blue); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-title.white { color: var(--white); }

.section-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 1.2rem;
  text-align: center;
}

/* ===== STEP BLOCKS ===== */
.step-block { padding: 3.5rem 0; }
.step-block--light { background: var(--dark2); }
.step-block--dark  { background: var(--dark); }

.step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.step-inner--stacked {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.step-block--dark .step-title { color: var(--blue); }
.step-block--dark .step-text p { color: rgba(255,255,255,0.8); }

.step-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.step-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.step-images img {
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.step-img img { border-radius: 8px; width: 100%; max-height: 350px; object-fit: cover; }

.juhu { font-size: 1.1rem; color: var(--accent) !important; margin-top: 1rem; }

/* ===== VIDEO ===== */
.video-wrap { padding: 2rem 0; }
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* ===== DARILNI BON ===== */
.bon-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bon-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1rem;
}

.bon-img img {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
}

.btn-white {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  margin-top: 1rem;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }

/* ===== CENIK ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

/* price card */ .price-card {
  background: var(--dark2);
  border: 2px solid var(--navy-border, #263070);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(245,197,24,0.10);
  border-color: var(--blue);
}
.price-card--main {
  border-color: var(--blue);
  background: linear-gradient(135deg, #141A38, #1C2550);
}

.price-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.price-card h3 {
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.price-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.price-locations {
  font-size: 0.85rem !important;
  color: var(--text-light) !important;
  margin-top: 0.75rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
  margin-top: 1.5rem;
  line-height: 1;
}
.price-amount span { font-size: 1.2rem; font-family: var(--font-cond); opacity: 0.7; }

.btn-blue {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--blue);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}
.btn-blue:hover { background: var(--blue-light); transform: translateY(-2px); }

.cta-center { text-align: center; margin-top: 1rem; }

/* ===== O MENI ===== */
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.about-photo img {
  width: 100%;
  border-radius: 12px;
  border: 4px solid var(--accent);
  object-fit: cover;
  aspect-ratio: 1;
}

.about-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.about-title-line {
  font-family: var(--font-cond);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-top: 1rem;
}

/* ===== KONTAKT ===== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
  margin: 1.5rem 0 2.5rem;
}

.contact-phone {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--blue);
  letter-spacing: 0.05em;
}
.contact-phone:hover { color: var(--blue); }

.contact-email {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.contact-email:hover { color: var(--accent); }

.social-links {
  display: flex;
  gap: 1.5rem;
}
.social-links a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.social-links a svg { width: 20px; height: 20px; }
.social-links a:hover { color: var(--blue); }

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #263070;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--dark2);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group textarea { resize: vertical; }

.form-captcha {
  margin-bottom: 1.5rem;
}
.form-captcha label {
  display: block;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.form-captcha input {
  width: 140px;
  padding: 0.65rem 1rem;
  border: 2px solid #263070;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-captcha input:focus { border-color: var(--blue); }

.form-submit { text-align: center; }
.form-submit button {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  cursor: pointer;
  border: none;
  font-family: var(--font-cond);
}

.form-success {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #e8f5e9;
  border-radius: 8px;
  color: #2e7d32;
  text-align: center;
  font-weight: 600;
}
.form-error {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fdecea;
  border-radius: 8px;
  color: #c62828;
  text-align: center;
  font-weight: 600;
}

/* ===== INSTAGRAM GRID ===== */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin: 2rem 0;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.instagram-item:hover img { transform: scale(1.05); }

.instagram-follow { text-align: center; margin-top: 1.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-inner a { color: rgba(255,255,255,0.5); }
.footer-inner a:hover { color: var(--white); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(245,197,24,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(13, 17, 40, 0.99);
    padding: 1rem 0 1.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.7rem 1rem; font-size: 0.9rem; }
  .nav-links a.nav-cta { margin: 0.5rem 1.5rem; border-radius: 6px; }
  .nav-toggle { display: flex; }

  .step-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .step-block--light .step-text { order: 1; }
  .step-block--light .step-img,
  .step-block--light .step-images { order: 2; }

  .bon-inner { grid-template-columns: 1fr; }
  .bon-img { order: -1; }

  .price-grid { grid-template-columns: 1fr; }
  .price-card:last-child { grid-column: auto; max-width: none; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 200px; margin: 0 auto; }

  .form-row { grid-template-columns: 1fr; }

  .contact-info { flex-direction: column; gap: 1rem; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .step-images { grid-template-columns: 1fr 1fr; }
  .step-images img { height: 130px; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .social-links { flex-direction: column; align-items: center; gap: 0.75rem; }
}