/* ============================================================
   VELVET DEKORACIJE — Stilovi
   ============================================================ */

/* ---------- RESET & VARIJABLE ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-bg:        #faf8f5;
  --clr-surface:   #ffffff;
  --clr-gold:      #b29151;
  --clr-gold-lt:   #caa872;
  --clr-dark:      #1a1510;
  --clr-text:      #3d3530;
  --clr-muted:     #8a7e76;
  --clr-rose:      #c2897a;
  --clr-line:      #e8e2da;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Montserrat', system-ui, sans-serif;

  --radius:        4px;
  --radius-lg:     12px;
  --transition:    0.3s ease;

  --container:     1200px;
  --section-py:    100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- TIPOGRAFIJA ---------- */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--clr-gold);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--clr-muted);
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ---------- GUMBI ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--clr-gold);
  color: #fff;
}

.btn-primary:hover {
  background: #9a7a44;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178, 145, 81, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-full { width: 100%; justify-content: center; }

/* ---------- NAVIGACIJA ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pseudo-element nosi background — animira se odvojeno */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--clr-line), 0 4px 24px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar.scrolled::before {
  opacity: 1;
  transform: translateY(0);
}

/* Mobilni meni otvoren — ceo navbar dobija belu pozadinu odmah */
.navbar.nav-open::before {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

/* Zatvaranje — pozadina nestaje odmah, bez fade-out */
.navbar.nav-closing::before {
  transition: none;
}

.navbar.nav-open .nav-brand { color: var(--clr-dark); }
.navbar.nav-open .nav-toggle span { background: var(--clr-dark); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #fff;
  transition: color var(--transition);
}

.navbar.scrolled .nav-brand {
  color: var(--clr-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a {
  color: var(--clr-text);
}

.nav-links a:hover { color: var(--clr-gold); }

.navbar.scrolled .nav-links a:hover { color: var(--clr-gold); }

/* Svaki nav link ima ::after — sakrivenu liniju koja se puni */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--clr-gold);
  border-radius: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
  opacity: 0;
}

.nav-links a.nav-active {
  color: var(--clr-gold);
}

.nav-links a.nav-active::after {
  transform: translateX(-50%) scaleX(0.7);
  opacity: 1;
}

/* Na prozirnom navbaru (hero zona) */
.navbar:not(.scrolled) .nav-links a::after {
  background: var(--clr-gold-lt);
}

.navbar:not(.scrolled) .nav-links a.nav-active {
  color: var(--clr-gold-lt);
}

/* Hover — linija se pojavljuje tanja/kraća */
.navbar.scrolled .nav-links a:hover:not(.nav-active)::after {
  transform: translateX(-50%) scaleX(0.4);
  opacity: 0.35;
}

/* Kontakt dugme (nav-cta) nema liniju */
.nav-links .nav-cta::after,
.nav-links .nav-cta.nav-active::after {
  display: none;
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
}

.navbar.scrolled .nav-cta {
  border-color: var(--clr-gold);
  color: var(--clr-gold) !important;
}

.nav-cta:hover {
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--clr-gold) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span { background: var(--clr-dark); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  transform: translateY(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 10, 5, 0.45) 0%,
    rgba(15, 10, 5, 0.55) 60%,
    rgba(15, 10, 5, 0.7) 100%
  );
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-52px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 720px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
  margin-bottom: 20px;
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.45s both;
}

.hero-title em {
  font-style: italic;
  color: var(--clr-gold-lt);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideFromLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.95s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

/* ---------- ABOUT ---------- */
.about {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  background: transparent;
}

.about-img-main img {
  width: 100%;
  height: auto;
  min-height: 460px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  will-change: transform;
  transform: translateY(0);
  transition: none;
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 52%;
  /* border-radius: var(--radius-lg); */
  /* overflow: hidden; */
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
  /* border: 6px solid var(--clr-bg); */
}

.about-text p {
  font-size: 0.95rem;
  color: var(--clr-muted);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-line);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

/* ---------- USLUGE ---------- */
.services {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.service-card {
  flex: 0 0 calc(33.333% - 16px);
}

.service-card {
  background: var(--clr-surface);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-line);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: var(--clr-gold-lt);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--clr-gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--clr-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ---------- GALERIJA ---------- */
.gallery {
  padding: var(--section-py) 0;
  background: var(--clr-surface);
}

.gallery-wrap {
  position: relative;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* PRVI RED — slike su direktno u parent gridu */
.gallery-preview {
  display: contents;
}

/* OSTATAK — subgrid nasleđuje kolone od parent-a */
.gallery-expanded {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* fallback */
  grid-template-columns: subgrid;
  row-gap: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-expanded.open {
  max-height: 9000px;
  opacity: 1;
}

/* Gallery loading overlay */
.gallery-load-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 21, 16, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-load-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.gallery-load-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.gallery-load-ring {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(178, 145, 81, 0.25);
  border-top-color: var(--clr-gold);
  border-radius: 50%;
  animation: gallerySpin 0.85s linear infinite;
}

.gallery-load-text {
  color: var(--clr-gold-lt);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Dugme ispod galerije */
.gallery-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-toggle:hover {
  background: var(--clr-gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(178, 145, 81, 0.3);
}

.toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-toggle.open .toggle-icon {
  transform: rotate(180deg);
}

.gallery-toggle.loading {
  opacity: 0.85;
  cursor: wait;
}

.gallery-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: gallerySpin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes gallerySpin {
  to { transform: rotate(360deg); }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--clr-line);
  aspect-ratio: 4/3;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  image-orientation: from-image;
}

.gallery-item:hover img { transform: scale(1.04); }

/* gallery-item--natural je sada isto kao obično gallery-item */
.gallery-item--natural {
  background: transparent;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,5,0.65) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- TESTIMONIALI ---------- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--clr-dark);
}

.testimonials .section-eyebrow { color: var(--clr-gold-lt); }

.testimonials .section-title { color: #fff; }

.testimonials-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.testimonial-card--featured:hover {
  background: #9a7a44;
}

.testimonial-stars {
  color: var(--clr-gold-lt);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card--featured .testimonial-stars { color: rgba(255,255,255,0.8); }

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card--featured .author-avatar {
  background: rgba(255,255,255,0.25);
}

.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--clr-gold);
  width: 24px;
  border-radius: 4px;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--clr-cream);
  padding: 52px 0;
  text-align: center;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 1.5rem;
}

.cta-strip__line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--clr-gold);
  opacity: 0.5;
}

.cta-strip__ornament {
  font-size: 1rem;
  color: var(--clr-gold);
  opacity: 0.7;
  letter-spacing: 0.3em;
}

.cta-strip__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--clr-dark);
  margin-bottom: 1.75rem;
}

.cta-strip__text em {
  font-style: italic;
  color: var(--clr-gold);
}

/* ---------- BENEFITS LISTA ---------- */
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8e0d6;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border-bottom: 1px solid #f0ebe4;
}

.benefit-item:last-child { border-bottom: none; }

.benefit-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--clr-gold);
}

.benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.benefit-item strong {
  font-family: var(--ff-sans, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-dark);
}

.benefit-item span {
  font-size: 0.82rem;
  color: #888;
}


/* ---------- KONTAKT ---------- */
.contact {
  padding: var(--section-py) 0;
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: stretch;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--clr-muted);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.95rem;
  color: var(--clr-dark);
}

.contact-item a:hover { color: var(--clr-gold); }

.phone-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.copy-phone-btn {
  display: none;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--clr-line);
  border-radius: 6px;
  padding: 3px 8px;
  cursor: pointer;
  color: var(--clr-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  line-height: 1;
}

.copy-phone-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.copy-phone-btn.copied {
  border-color: #5a8a5a;
  color: #5a8a5a;
}

/* Email: klikabilni tekst koji kopira */
.email-copy {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dashed;
  text-decoration-color: var(--clr-muted);
}

.email-copy:hover {
  color: var(--clr-gold);
  text-decoration-color: var(--clr-gold);
}

/* Dugme za otvaranje email klijenta */
.open-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  background: transparent;
  border: 1px solid var(--clr-line);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--clr-muted);
  transition: all 0.2s;
  text-decoration: none;
}

.open-email-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.spasing-btn {
  margin-inline: 5px;
}

/* Desktop: prikaži dugme za kopiranje */
@media (hover: hover) and (pointer: fine) {
  .copy-phone-btn { display: flex; }
}

/* Toast obaveštenje */
.copy-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--clr-dark);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9999;
  white-space: nowrap;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--clr-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: all var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(178,145,81,0.06);
}

/* FORMA */
.contact-form-wrap {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--clr-line);
  box-shadow: 0 4px 40px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.form-group:has(textarea) { flex: 1; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius);
  background: var(--clr-bg);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--clr-dark);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(178,145,81,0.12);
}

.form-group:has(textarea) textarea {
  flex: 1;
  resize: none;
  height: 100%;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-muted);
  opacity: 0.7;
}

.form-note {
  font-size: 0.78rem;
  color: var(--clr-muted);
  text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--clr-dark);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-top: 16px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--clr-gold-lt); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 5, 2, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

/* Slika se skalira pri otvaranju */
.lightbox-content {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.88);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  display: block;
  background: transparent;
  image-orientation: from-image;
}

/* Counter "2 / 12" */
.lightbox-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* Kontrole */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  position: static;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 300;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.lightbox-prev:hover,
.lightbox-next:hover { transform: scale(1.05); }

/* ---------- SERVICE GALLERY POPUP ---------- */
.service-card[data-gallery] { cursor: pointer; }

.service-card-cta {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--clr-gold);
  margin-top: 0.9rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-card[data-gallery]:hover .service-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.service-card-expandable {
  max-height: 6.1rem; /* ~4 lines at 0.88rem × 1.7 line-height */
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-expand-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--clr-line);
  border-radius: 50%;
  color: var(--clr-gold);
  cursor: pointer;
  padding: 0;
  margin-top: 12px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.service-card-expand-btn:hover {
  border-color: var(--clr-gold);
  background: rgba(178, 145, 81, 0.07);
}

.expand-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  flex-shrink: 0;
}

.service-card-expand-btn.open .expand-chevron {
  transform: rotate(180deg);
}

.svc-gallery {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(8, 5, 2, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.svc-gallery.active {
  opacity: 1;
  pointer-events: all;
}

.svc-gallery-inner {
  background: var(--clr-dark, #1a1510);
  border: 1px solid rgba(196, 160, 80, 0.15);
  border-radius: var(--radius);
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
}

.svc-gallery.active .svc-gallery-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.svc-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(196, 160, 80, 0.12);
  flex-shrink: 0;
}

.svc-gallery-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--clr-light, #f5f0e8);
  margin: 0;
}

.svc-gallery-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.svc-gallery-close:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
}

.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px;
  overflow-y: auto;
  flex: 1;
  align-items: start;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-gold) rgba(255, 255, 255, 0.05);
}

.svc-gallery-grid::-webkit-scrollbar {
  width: 5px;
}

.svc-gallery-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.svc-gallery-grid::-webkit-scrollbar-thumb {
  background: var(--clr-gold);
  border-radius: 3px;
}

.svc-gallery-grid::-webkit-scrollbar-thumb:hover {
  background: var(--clr-gold-lt);
}

.svc-gallery-item {
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  padding-bottom: 75%; /* 4:3 ratio */
  height: 0;
}

.svc-gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  image-orientation: from-image;
}

.svc-gallery-item:hover img { transform: scale(1.07); }

.svc-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(196, 160, 80, 0.12);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.svc-gallery-item:hover::after { opacity: 1; }

/* ---------- SCROLL HINT ---------- */
.scroll-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12px;
  background: linear-gradient(to bottom, transparent, rgba(26, 21, 16, 0.92));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
  border-radius: 0 0 var(--radius) var(--radius);
}

.scroll-hint.hidden {
  opacity: 0;
}

.scroll-hint-chevron {
  font-size: 1.4rem;
  color: var(--clr-gold-lt);
  line-height: 1;
  animation: hintBounce 1.6s ease-in-out infinite;
}

.scroll-hint-text {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(4px); }
}

@media (max-width: 600px) {
  .svc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-gallery-title { font-size: 1.1rem; }
  .svc-gallery-inner { max-height: 92vh; }
}

/* ---------- ANIMACIJE ULASKA ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in.from-left  { transform: translateX(-48px); }
.slide-in.from-right { transform: translateX(48px); }

.gallery-item.slide-in.from-left  { transform: translateX(-32px); }
.gallery-item.slide-in.from-right { transform: translateX(32px); }

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}

.gallery-item.slide-in.visible { transform: translateX(0); }

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

/* ---- TABLET ---- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }

  .service-card { flex: 0 0 calc(50% - 12px); }

  .gallery-wrap { grid-template-columns: repeat(2, 1fr); }
  .gallery-expanded { grid-template-columns: repeat(2, 1fr); grid-template-columns: subgrid; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

/* ---- MOBILNI ---- */
@media (max-width: 768px) {
  :root { --section-py: 52px; }

  /* NAV */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-surface);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    color: var(--clr-text) !important;
    padding: 13px 24px;
    border-bottom: none;
    width: 100%;
  }

  .nav-cta {
    border: none !important;
    border-radius: 0 !important;
    color: var(--clr-gold) !important;
  }

  .nav-toggle { display: flex; }

  .navbar .nav-toggle span { background: rgba(255,255,255,0.9); }
  .navbar.scrolled .nav-toggle span { background: var(--clr-dark); }

  /* HERO — dugmad na punu širinu */
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ABOUT — slika relativna, bez accenta, bez parallax-a */
  .about-images { height: auto; min-height: unset; }

  .about-img-main { position: relative; width: 100%; }

  .about-img-main img {
    min-height: 280px;
    transform: none !important;
  }

  .about-img-accent { display: none; }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.68rem; }

  /* USLUGE */
  .service-card { flex: 0 0 100%; padding: 28px 24px; }

  /* GALERIJA */
  .gallery-wrap { padding: 0 16px; grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-expanded { grid-template-columns: repeat(2, 1fr); grid-template-columns: subgrid; row-gap: 8px; }

  /* TESTIMONIALI */
  .section-header { margin-bottom: 40px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card p { font-size: 0.95rem; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  .carousel-controls { gap: 16px; margin-top: 32px; }

  /* KONTAKT */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  /* FOOTER */
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links .footer-col:last-child { grid-column: span 2; }

  /* LIGHTBOX */
  .lightbox { gap: 8px; padding: 56px 8px 16px; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* ---- MALI TELEFONI (do 480px — tipični iPhone/Android) ---- */
@media (max-width: 480px) {
  :root { --section-py: 44px; }

  .container { padding: 0 16px; }
  .gallery-wrap { padding: 0 12px; }

  /* HERO */
  .hero-title { font-size: clamp(2.2rem, 9vw, 2.9rem); }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.18em; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 28px; }
  .hero-scroll { bottom: 24px; }
  .scroll-line { height: 40px; }

  /* ABOUT */
  .about-img-main img { min-height: 240px; }
  .about-stats { gap: 8px; padding-top: 20px; margin-top: 24px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.62rem; letter-spacing: 0; }

  /* USLUGE */
  .service-card { padding: 24px 20px; }
  .service-icon { width: 40px; height: 40px; margin-bottom: 18px; }

  /* GALERIJA */
  .gallery-wrap { gap: 6px; }
  .gallery-expanded { row-gap: 6px; }
  .gallery-toggle { padding: 12px 24px; font-size: 0.75rem; }

  /* TESTIMONIALI */
  .testimonial-card { padding: 20px 16px; }
  .testimonial-card p { font-size: 0.9rem; line-height: 1.6; }
  .author-avatar { width: 36px; height: 36px; font-size: 0.85rem; }
  .carousel-btn { width: 36px; height: 36px; font-size: 1.3rem; }
  .carousel-dot { width: 6px; height: 6px; }
  .carousel-dot.active { width: 18px; }

  /* KONTAKT */
  .contact-form-wrap { padding: 24px 16px; }
  /* Sprečava iOS auto-zoom na focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* FOOTER */
  .footer { padding: 44px 0 0; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-links .footer-col:last-child { grid-column: span 1; }
  .footer-bottom { padding: 20px 0; }
}

/* ---- VEOMA MALI TELEFONI (do 360px) ---- */
@media (max-width: 360px) {
  .hero-title { font-size: 2rem; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.58rem; }
  .service-card { padding: 20px 16px; }
  .testimonial-card { padding: 18px 14px; }
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Blurovana pozadina */
.loader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.loader-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(14px) brightness(0.55) saturate(0.8);
  transform: scale(1.05);
}

.loader-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 8, 0.45);
}

/* Centar */
.loader-center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ring + logo */
.loader-ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG rotacija */
.loader-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: loaderSpin 8s linear infinite;
}

.loader-ring-text {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  fill: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

@keyframes loaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Logo */
.loader-logo-wrap {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  border: 1px solid rgba(178, 145, 81, 0.4);
  backdrop-filter: blur(6px);
  animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 2px 12px rgba(178, 145, 81, 0.5));
}

@keyframes loaderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(178, 145, 81, 0.3); }
  50%       { box-shadow: 0 0 0 10px rgba(178, 145, 81, 0); }
}

/* Mobile */
@media (max-width: 768px) {
  .loader {
    height: 100dvh;
    height: -webkit-fill-available;
  }
  .loader-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  .loader-ring-wrap { width: 170px; height: 170px; }
  .loader-ring-text { font-size: 9.5px; letter-spacing: 2px; }
  .loader-logo-wrap { width: 80px; height: 80px; }
  .loader-logo { width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .loader-ring-wrap { width: 150px; height: 150px; }
  .loader-ring-text { font-size: 8.5px; letter-spacing: 1.8px; }
  .loader-logo-wrap { width: 66px; height: 66px; }
  .loader-logo { width: 46px; height: 46px; }
}
