/* ==============================
   CSS VARIJABLE & RESET
   ============================== */
:root {
  --gold: #d4af37;
  --gold-light: #f2d675;
  --gold-dim: rgba(212,175,55,0.15);
  --dark: #1a1008;
  --darker: #0e0a04;
  --mid: #2e2010;
  --cream: #f5f0e8;
  --cream-dark: #ede8df;
  --text: #2a1f10;
  --text-light: #6b5c46;
  --white: #fdfaf4;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; min-height: 100%; }

body {
  background: var(--cream);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}

img { max-width: 100%; height: auto; display: block; }

/* ==============================
   TIPOGRAFIJA
   ============================== */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark);
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
}

h2 em {
  font-style: italic;
  color: var(--gold);
}

p { line-height: 1.75; color: var(--text-light); }

/* ==============================
   SECTION HELPERS
   ============================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.gold-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  margin: 0;
}

section { margin: 0; }

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  background: var(--darker);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.navbar .container { padding-top: 14px; padding-bottom: 14px; }

.navbar-brand {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2.5vw, 21px);
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s;
  white-space: nowrap;
}
.navbar-brand:hover { color: var(--gold); }

.nav-link {
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 24px;
  color: rgba(245,240,232,0.75) !important;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { width: 100%; }

.navbar-toggler { border-color: rgba(212,175,55,0.5); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4af37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--darker);
    padding: 8px 0;
    border-top: 1px solid rgba(212,175,55,0.15);
  }
  .nav-link {
    margin-left: 0;
    padding: 12px 20px;
    text-align: center;
    min-height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .nav-link::after { display: none; }
}

/* ==============================
   HERO
   ============================== */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: clamp(500px, 88vh, 900px);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,10,4,0.35) 0%,
    rgba(14,10,4,0.5) 50%,
    rgba(14,10,4,0.75) 100%
  );
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 92%;
  max-width: 740px;
  padding: 0 1rem;
  animation: heroFadeUp 1s 0.3s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 24px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.9;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-text > img {
  max-width: clamp(150px, 30vw, 260px);
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.6)) brightness(1.1);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  opacity: 0.88;
  margin-bottom: 36px;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .lux-btn,
  .hero-actions .lux-btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(212,175,55,0.8), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ==============================
   GUMBI
   ============================== */
.lux-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 13px 34px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
}
.lux-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,175,55,0.45);
  filter: brightness(1.05);
  color: var(--dark);
}

.lux-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 12px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212,175,55,0.7);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.lux-btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.custom-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 12px 32px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(212,175,55,0.4);
  color: var(--dark);
}

/* ==============================
   STAT TRAKA
   ============================== */
.stat-bar {
  background: var(--darker);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 28px 0;
}

.stat-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 48px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-plus { font-size: 0.7em; vertical-align: super; }

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212,175,55,0.2);
}

/* Stat traka mobilni: 2x2 grid ispod 480px */
@media (max-width: 600px) {
  .stat-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 14px 12px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(212,175,55,0.12); }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(212,175,55,0.12); }
}

/* ==============================
   USLUGE GRID
   ============================== */
.usluge-section {
  padding: 80px 0 60px;
}

.usluge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.usluge-grid--two {
  max-width: 860px;
  margin: 0 auto;
}

.usluge-grid--two .usluga-card .usluga-img-wrap {
  height: 320px;
}

.usluga-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.usluga-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.13);
}

.usluga-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.usluga-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.usluga-card:hover .usluga-img-wrap img { transform: scale(1.07); }

.usluga-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(14,10,4,0.5) 100%);
}

.usluga-body {
  padding: 24px 28px 28px;
}
.usluga-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.usluga-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.usluga-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.usluga-card:hover .usluga-link { gap: 10px; }

@media (max-width: 767px) {
  .usluge-section { padding: 52px 0 40px; }
  .usluge-grid { grid-template-columns: 1fr; gap: 20px; }
  .usluge-grid--two .usluga-card .usluga-img-wrap { height: 220px; }
}

/* ==============================
   INFO / POKLON SEKCIJE
   ============================== */
.info-section,
.poklon-section {
  padding: 72px 0;
}

.info-section .container,
.poklon-section .container {
  background: var(--white);
  border-radius: 4px;
  padding: 52px 44px;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 8px 48px rgba(0,0,0,0.05);
}

/* Swiper slike u info sekcijama — responsive visina */
.swiper-info-img {
  width: 100%;
  height: clamp(220px, 45vw, 380px);
  object-fit: cover;
}

@media (max-width: 767px) {
  .info-section,
  .poklon-section { padding: 40px 0; }
  .info-section .container,
  .poklon-section .container { padding: 28px 18px; }
  /* Smanji Bootstrap gutter između slike i teksta */
  .info-section .row,
  .poklon-section .row { --bs-gutter-y: 1.5rem; }
}

/* ==============================
   SWIPER
   ============================== */
.swiper-slide img {
  width: 100%;
  height: clamp(200px, 50vw, 520px);
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.35s;
}
.swiper-slide img:hover { transform: scale(1.02); }

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  background: rgba(14,10,4,0.6);
  border-radius: 50%;
  width: 40px !important;
  height: 40px !important;
  backdrop-filter: blur(6px);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700;
}

/* ==============================
   PARALLAX
   ============================== */
.parallax-section {
  background-image: linear-gradient(rgba(14,10,4,0.58), rgba(14,10,4,0.58)), url('slike/buket16.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.parallax-content { padding: 0 24px; }

.parallax-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
  opacity: 0.8;
}

.parallax-section h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  letter-spacing: 1px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 300px;
  }
}

/* ==============================
   ISTAKNUTI RADOVI — FEATURED
   ============================== */
.featured-section {
  padding: 80px 0 60px;
  background: var(--cream-dark);
}

/* Tema boje po sezoni */
.featured-section[data-theme="spring"]    { --featured-badge: #e8f5e4; --featured-badge-text: #3a6b34; }
.featured-section[data-theme="valentine"] { --featured-badge: #fde8ec; --featured-badge-text: #8b0020; }
.featured-section[data-theme="christmas"] { --featured-badge: #fdecea; --featured-badge-text: #7b1510; }
.featured-section[data-theme="autumn"]    { --featured-badge: #fef3e6; --featured-badge-text: #7a4010; }

.featured-header { text-align: center; margin-bottom: 52px; }

.featured-eyebrow {
  display: inline-block;
  background: var(--featured-badge, #e8f5e4);
  color: var(--featured-badge-text, #3a6b34);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 12px;
}

.featured-subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.featured-card--large {
  grid-row: 1;
  grid-column: 1;
}

.featured-col-right {
  grid-row: 1;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-card--bottom {
  grid-row: 2;
  grid-column: span 1;
}

.featured-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--darker);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.featured-card:hover {
  box-shadow: 0 24px 56px rgba(0,0,0,0.2);
}

.featured-card--large .featured-img-wrap       { height: 440px; }
.featured-col-right .featured-card .featured-img-wrap { height: 212px; }
.featured-card--bottom .featured-img-wrap      { height: 280px; }

.featured-img-wrap {
  position: relative;
  overflow: hidden;
}
.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.featured-card:hover .featured-img-wrap img { transform: scale(1.06); }

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(14,10,4,0.75) 100%);
}

.featured-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  color: white;
}

.featured-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.4);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.featured-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  line-height: 1.3;
}

.featured-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

.featured-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(212,175,55,0.2);
}
.featured-cta p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Featured — tablet (768–991px) ostaje 2 kolone */
@media (min-width: 768px) and (max-width: 991px) {
  .featured-card--large .featured-img-wrap                { height: 320px; }
  .featured-col-right .featured-card .featured-img-wrap   { height: 152px; }
  .featured-card--bottom .featured-img-wrap               { height: 200px; }
}

/* Featured — mobilni */
@media (max-width: 767px) {
  .featured-section { padding: 52px 0 40px; }
  .featured-grid { grid-template-columns: 1fr; gap: 12px; }
  .featured-card--large,
  .featured-col-right,
  .featured-card--bottom { grid-column: 1; grid-row: auto; }
  .featured-col-right { flex-direction: column; }
  .featured-card--large .featured-img-wrap                { height: 260px; }
  .featured-col-right .featured-card .featured-img-wrap   { height: 180px; }
  .featured-card--bottom .featured-img-wrap               { height: 180px; }
  .featured-cta { padding: 28px 20px; margin-top: 28px; }
  .featured-header { margin-bottom: 32px; }
}

/* ==============================
   KAKO NARUČITI
   ============================== */
.kako-section { padding: 72px 0; }

.kako-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 48px;
  position: relative;
}

/* Connector linija — samo na desktopu gdje koraci stanu u red */
@media (min-width: 768px) {
  .kako-steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 72%);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  }
}

.kako-step {
  flex: 0 0 200px;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.kako-step.visible { opacity: 1; transform: translateY(0); }
.kako-step:nth-child(1) { transition-delay: 0.0s; }
.kako-step:nth-child(2) { transition-delay: 0.18s; }
.kako-step:nth-child(3) { transition-delay: 0.36s; }

.kako-step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(212,175,55,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.kako-step:hover .kako-step-icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 36px rgba(212,175,55,0.4);
}

.kako-step h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}
.kako-step p { color: var(--text-light); font-size: 0.85rem; line-height: 1.65; margin: 0; }

@media (max-width: 767px) {
  .kako-section { padding: 52px 0; }
  .kako-steps { margin-top: 32px; }
  .kako-step { flex: 0 0 100%; padding: 0 24px 28px; }
}

/* ==============================
   TESTIMONIALI
   ============================== */
.testimonials-section {
  padding: 72px 0;
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 28px;
  border: 1px solid rgba(212,175,55,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:nth-child(1) { transition-delay: 0.0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card:nth-child(3) { transition-delay: 0.24s; }
.testimonial-card:hover { transform: translateY(-6px) !important; box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 14px; }

.testimonial-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 600; color: var(--dark); font-size: 0.88rem; margin: 0; }
.testimonial-date { color: #aaa; font-size: 0.75rem; margin: 2px 0 0; }

@media (max-width: 480px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 24px 20px; }
}

/* ==============================
   ZASTO ODABRATI NAS
   ============================== */
.custom-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.custom-list li {
  margin-bottom: 10px;
  padding: 13px 18px;
  background: var(--white);
  border-radius: 3px;
  border-left: 2px solid var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s, box-shadow 0.25s;
}
.custom-list.animated li { opacity: 1; transform: translateX(0); }
.custom-list li:nth-child(1) { transition-delay: 0.05s; }
.custom-list li:nth-child(2) { transition-delay: 0.15s; }
.custom-list li:nth-child(3) { transition-delay: 0.25s; }
.custom-list li:nth-child(4) { transition-delay: 0.35s; }
.custom-list li:nth-child(5) { transition-delay: 0.45s; }
.custom-list.animated li:hover {
  transform: translateX(5px);
  background: #fffdf5;
  box-shadow: 0 4px 16px rgba(212,175,55,0.12);
}

.custom-img {
  width: 100%;
  height: clamp(260px, 40vw, 420px);
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transition: transform 0.4s, box-shadow 0.4s;
}
.custom-img:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.18); }

/* ==============================
   CTA BLOK
   ============================== */
.cta-block {
  padding: 80px 0;
  background: var(--darker);
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-deco {
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
  letter-spacing: 8px;
}

.cta-inner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-inner p  { color: rgba(245,240,232,0.6); font-size: 0.95rem; margin-bottom: 32px; }

@media (max-width: 576px) {
  .cta-block { padding: 52px 0; }
}

/* ==============================
   FOOTER
   ============================== */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(212,175,55,0.2);
  display: block;
  width: 100%;
  margin-bottom: 0 !important;
}

.footer-top {
  background: var(--dark);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 36px 0;
}

.footer-brand { text-align: center; }

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin: 0;
}

footer h6 {
  color: var(--gold);
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
}
footer a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.88rem;
}
footer a:hover { color: var(--gold); }

.footer-line { border-color: rgba(212,175,55,0.15); opacity: 1; }
.footer-bottom { color: rgba(245,240,232,0.3); font-size: 0.75rem; }

@media (max-width: 767px) {
  footer .row > div { margin-bottom: 20px; }
}

/* ==============================
   GALLERY & MODAL
   ============================== */
.gallery-img {
  cursor: pointer;
  transition: transform 0.35s, box-shadow 0.35s;
  border-radius: 4px;
}
.gallery-img:hover { transform: scale(1.04); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }

.modal-content { background: transparent; border: none; box-shadow: none; }
#modalImage { max-height: 90vh; object-fit: contain; border-radius: 4px; }

/* Modal — padding na mobileu */
@media (max-width: 576px) {
  .modal-dialog { margin: 12px; max-width: calc(100% - 24px); }
  #modalImage   { max-height: 85vh; }
}

/* ==============================
   PAGE HEADER (podstranice)
   ============================== */
.page-header { padding: 60px 16px 20px; text-align: center; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { font-size: clamp(0.95rem, 2vw, 1.05rem); max-width: 640px; margin: 0 auto; line-height: 1.7; }

/* ==============================
   ANIMACIJE — SCROLL
   ============================== */
.fade-in-page { animation: fadeInPage 0.9s ease both; }
@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.info-text {
  animation: slideInRight 0.8s ease both;
  animation-play-state: paused;
}
.info-text.animate { animation-play-state: running; }

.poklon-text {
  animation: slideInLeft 0.8s ease both;
  animation-play-state: paused;
}
.poklon-text.animate { animation-play-state: running; }

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ==============================
   PREFERS-REDUCED-MOTION
   Samo animacije — hover i transition ostaju
   ============================== */
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; transform: scale(1); }
  .hero-text { animation: none; opacity: 1; transform: translate(-50%, -50%); }
  .hero-scroll-hint { display: none; }

  .fade-in-page { animation: none; opacity: 1; transform: none; }
  .info-text  { animation: none; opacity: 1; transform: none; }
  .poklon-text { animation: none; opacity: 1; transform: none; }

  [data-aos] { opacity: 1 !important; transform: none !important; transition: none !important; }

  .kako-step          { opacity: 1; transform: none; transition: none; }
  .testimonial-card   { opacity: 1; transform: none; transition: box-shadow 0.3s; }
  .custom-list li     { opacity: 1; transform: none; }
}

/* ==============================
   SECTION HEADER — manji margin na mobileu
   ============================== */
@media (max-width: 767px) {
  .section-header { margin-bottom: 32px; }
}
