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

:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dim: #8B6F35;
  --black: #0A0A0A;
  --dark: #111008;
  --dark2: #1A1710;
  --dark3: #221E14;
  --cream: #F2ECD8;
  --text-muted: #9A8F78;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-decoration: none;
  color: rgba(242,236,216,0.8);
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

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

.nav-social {
  display: flex;
  gap: 16px;
}

.nav-social a {
  color: rgba(242,236,216,0.7);
  text-decoration: none;
  font-size: 16px;
  width: 34px; height: 34px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Nav fixed for inner pages */
nav.fixed {
  position: fixed;
  background: rgba(10,10,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,8,0.92) 0%, rgba(10,10,8,0.75) 45%, rgba(10,10,8,0.15) 100%),
    url('NESS_stoji_rahlo_postrani.jpg') center/cover no-repeat;
  filter: sepia(30%) brightness(0.75);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(120,85,20,0.18) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 56px 80px;
  max-width: 620px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242,236,216,0.8);
  margin-bottom: 44px;
  max-width: 420px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── FEATURES SECTION ── */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 360px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
  overflow: hidden;
}

.feature-card.dark {
  background: var(--dark2);
}

.feature-card.light {
  background: var(--cream);
  color: var(--black);
}

.feature-card-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.35;
  filter: sepia(60%) brightness(0.5);
}

.feature-card-content {
  position: relative;
  z-index: 2;
}

.feature-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.feature-card.light .feature-icon {
  color: var(--gold-dim);
}

.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.feature-card.light .feature-title {
  color: var(--gold-dim);
}

.feature-divider {
  width: 30px;
  height: 1px;
  background: var(--gold-dim);
  margin: 12px auto;
}

.feature-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(242,236,216,0.75);
}

.feature-card.light .feature-text {
  color: rgba(30,25,10,0.7);
}

/* ── BOTTOM TWO PANELS ── */
.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.panel {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.panel-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  filter: sepia(40%) brightness(0.45);
  transition: transform 0.6s ease;
}

.panel:hover .panel-bg {
  transform: scale(1.04);
}

.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,6,0.92) 0%, rgba(10,10,6,0.4) 60%, transparent 100%);
}

.panel-content {
  position: relative;
  z-index: 2;
  padding: 48px 48px;
}

.panel-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.panel-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.panel-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(242,236,216,0.7);
  margin-bottom: 28px;
  max-width: 400px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 36px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #0D0C08;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-icon {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.footer-value {
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,236,216,0.65);
  line-height: 1.5;
}

/* ── SVG LOGO EMBLEM ── */
.emblem-svg {
  width: 46px;
  height: 46px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow  { animation: fadeUp 0.8s ease both; animation-delay: 0.2s; opacity: 0; }
.hero-title    { animation: fadeUp 0.9s ease both; animation-delay: 0.4s; opacity: 0; }
.hero-divider  { animation: fadeUp 0.8s ease both; animation-delay: 0.55s; opacity: 0; }
.hero-desc     { animation: fadeUp 0.8s ease both; animation-delay: 0.65s; opacity: 0; }
.hero-buttons  { animation: fadeUp 0.8s ease both; animation-delay: 0.8s; opacity: 0; }

/* ── PAGE TRANSITIONS ── */
#page-container {
  animation: pageFade 0.4s ease both;
}

@keyframes pageFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── EMPTY PAGE STYLES ── */
.empty-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.empty-page-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 50%),
    var(--black);
}

.empty-page-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.empty-page-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 200px 56px 80px;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.page-badge-line {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
}

.page-badge-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

.empty-page-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.empty-page-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.empty-page-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(242,236,216,0.45);
  letter-spacing: 0.5px;
  font-style: italic;
}

/* Decorative corner ornaments */
.ornament {
  position: absolute;
  width: 120px;
  height: 120px;
  opacity: 0.12;
}

.ornament-tl { top: 120px; left: 56px; }
.ornament-br { bottom: 80px; right: 56px; transform: rotate(180deg); }

/* ── CONTENT PAGE ── */
.content-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.content-page-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 200px 56px 60px;
  text-align: center;
}

.content-lead {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(242,236,216,0.9);
  margin-bottom: 24px;
}

.content-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(242,236,216,0.65);
  margin-bottom: 56px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  text-align: left;
  margin-top: 8px;
}

.content-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 36px 40px;
  transition: background 0.3s;
}

.content-card:hover {
  background: rgba(201,168,76,0.05);
}

.content-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.content-card-divider {
  width: 28px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: 20px;
}

.content-list {
  list-style: none;
  padding: 0;
}

.content-list li {
  font-size: 16px;
  font-weight: 300;
  color: rgba(242,236,216,0.72);
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding-left: 16px;
  position: relative;
}

.content-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-size: 12px;
}

.content-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.content-card-desc {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(242,236,216,0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.content-card-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}

.content-card-note {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: rgba(242,236,216,0.4);
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

/* ── SECTION DIVIDERS (for long pages like O Pasmi) ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
  margin: 56px 0 48px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  text-align: left;
}

.section-heading::before,
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.2);
}

.section-heading-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── NAŠA ZGODBA ── */
.zgodba-inner { max-width: 1000px; }

.zgodba-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  text-align: left;
  align-items: start;
}

.zgodba-img {
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}

.zgodba-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
}

.zgodba-img:hover img { transform: scale(1.03); }

.zgodba-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 2px solid var(--gold-dim);
}

.zgodba-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}

/* ── KONTAKT ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 700px;
  margin: 0 auto;
}

.kontakt-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 40px 36px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.kontakt-card:hover {
  background: rgba(201,168,76,0.06);
  border-color: rgba(201,168,76,0.3);
}

.kontakt-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  margin-bottom: 4px;
}

.kontakt-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.kontakt-value {
  font-size: 17px;
  font-weight: 300;
  color: rgba(242,236,216,0.8);
  line-height: 1.6;
}

/* ── DOG PROFILES ── */
.dog-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  align-items: start;
}

.dog-profile-reverse {
  direction: rtl;
}

.dog-profile-reverse > * {
  direction: ltr;
}

.dog-profile-img {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
}

.dog-profile-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.95);
  transition: transform 0.6s ease;
}

.dog-profile-img:hover img {
  transform: scale(1.03);
}

.dog-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.dog-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.dog-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.dog-parents {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dog-parents p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(242,236,216,0.75);
  line-height: 1.5;
}

.dog-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-right: 6px;
}

.dog-titles {
  font-size: 13px;
  color: rgba(242,236,216,0.45);
}

.dog-health {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.dog-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 5px 12px;
}

.dog-achievements {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 20px 24px;
}

/* ── GALLERY TABS ── */
.gallery-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 24px;
  justify-content: center;
}

.gallery-tab {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,236,216,0.5);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 12px 36px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-tab:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.05);
}

.gallery-tab.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.gallery-category {
  display: none;
}

.gallery-category.active {
  display: block;
}

/* ── GALLERY ── */
.gallery-inner {
  max-width: 1200px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 8px;
  text-align: left;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: var(--dark2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,6,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid rgba(201,168,76,0);
  transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  border-color: rgba(201,168,76,0.4);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,5,3,0.96);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}

.lightbox-close:hover { background: rgba(201,168,76,0.15); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 22px;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(201,168,76,0.15); }

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV DROPDOWN ── */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8,7,4,0.97);
  backdrop-filter: blur(16px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,236,216,0.75);
  text-decoration: none;
  padding: 18px 40px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: color 0.3s;
}
.nav-mobile-menu a:first-of-type { border-top: 1px solid rgba(201,168,76,0.08); }
.nav-mobile-menu a.active, .nav-mobile-menu a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

/* ── PRIHODNJE LEGLO PAGE ── */
.mladici-page { position: relative; }
.mladici-bg {
  position: absolute;
  inset: 0;
  background: url('DAKARinNESS_nezna.jpg') center/cover no-repeat;
  filter: sepia(30%) brightness(0.35);
  z-index: 0;
}
.mladici-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,8,0.6) 0%, rgba(10,10,8,0.75) 100%);
  z-index: 1;
}
.mladici-page .content-page-inner { position: relative; z-index: 2; }
.mladici-page .empty-page-title,
.mladici-page .content-lead,
.mladici-page .content-body { color: #fff; }
.mladici-page .content-card {
  background: rgba(10,10,8,0.55);
  border-color: rgba(201,168,76,0.2);
  backdrop-filter: blur(6px);
}
.mladici-page .section-divider {
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
}
.leglo-box {
  background: rgba(10,10,8,0.6);
  border: 1px solid rgba(201,168,76,0.25);
  backdrop-filter: blur(8px);
  padding: 48px 56px;
  text-align: center;
}
.leglo-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}
.leglo-parents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.leglo-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 32px;
  border: 1px solid rgba(201,168,76,0.3);
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(201,168,76,0.05);
  cursor: pointer;
}
.leglo-parent:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.leglo-parent-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.leglo-parent-name { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: #fff; }
.leglo-parent-arrow { font-size: 14px; color: var(--gold); }
.leglo-x { font-family: 'Cinzel', serif; font-size: 28px; color: var(--gold-dim); line-height: 1; }
.leglo-desc { font-size: 18px; font-weight: 300; font-style: italic; color: rgba(242,236,216,0.75); margin-bottom: 32px; }
.leglo-cta { display: flex; flex-direction: column; align-items: center; }
.leglo-urgent { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════════════════════
   MOBILE RESPONSIVE — max-width: 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  nav { padding: 12px 20px; position: fixed; background: rgba(10,10,8,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(201,168,76,0.12); }
  .logo-img { height: 80px; }
  .hero { align-items: center; text-align: center; min-height: 100svh; }
  .hero-content { padding: 120px 24px 60px; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-desc { font-size: 16px; max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .features { grid-template-columns: 1fr; }
  .feature-card { padding: 48px 28px; }
  .panels { grid-template-columns: 1fr; }
  .panel { min-height: 320px; }
  .panel-content { padding: 32px 24px; }
  .panel-title { font-size: 26px; }
  footer { grid-template-columns: 1fr 1fr; padding: 32px 24px; gap: 28px; }
  .content-page-inner { padding: 110px 20px 60px; max-width: 100%; }
  .empty-page-content { padding: 120px 24px 60px; }
  .empty-page-title { font-size: clamp(28px, 8vw, 48px); }
  .content-grid, .content-grid-3, .zgodba-values { grid-template-columns: 1fr; }
  .dog-profile, .dog-profile-reverse { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .dog-profile-img img { height: 320px; }
  .dog-name { font-size: 24px; }
  .zgodba-layout { grid-template-columns: 1fr; gap: 32px; }
  .zgodba-img img { height: 280px; }
  .kontakt-grid { grid-template-columns: 1fr; max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tabs { flex-wrap: wrap; }
  .gallery-tab { padding: 10px 20px; flex: 1; text-align: center; }
  .section-heading-text { font-size: 18px; letter-spacing: 2px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .btn-primary, .btn-outline { padding: 14px 22px; font-size: 10px; }
  .leglo-box { padding: 32px 20px; }
  .leglo-parents { flex-direction: column; gap: 16px; }
  .leglo-x { transform: rotate(90deg); }
}

@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}
