/* ============================================================
   MATEJA MEMORIAL — style.css
   ============================================================ */

:root {
  --cream:      #FAF7F2;
  --blush:      #F2E8E0;
  --dusty-rose: #D4A5A0;
  --soft-gold:  #C9A96E;
  --dark-text:  #3A2F2A;
  --dark-bg:    #2A1F1A;
  --green-heart:#4a8c5c;
  --nav-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--dark-text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.2;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Toast obvestilo ── */
.toast {
  position: fixed; bottom: 6rem; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--dark-bg); color: var(--cream);
  padding: 0.85rem 1.75rem; border-radius: 4px;
  font-size: 0.88rem; letter-spacing: 0.03em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  opacity: 0; transition: opacity 0.3s, transform 0.3s;
  z-index: 5000; pointer-events: none; white-space: nowrap;
  max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 3px solid var(--soft-gold); }
.toast.error   { border-left: 3px solid var(--dusty-rose); }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
nav ul { list-style: none; display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; padding: 0 1.5rem; }
nav a  { font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-text); transition: color 0.3s; }
nav a:hover { color: var(--soft-gold); }

/* ── Hero ── */
#hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
  background: var(--cream);
}

.hero-photo {
  width: 234px; height: 234px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--soft-gold); margin-bottom: 1.75rem;
  background: var(--blush); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 40px rgba(58,47,42,0.1);
  animation: fadeDown 0.9s ease 0.1s both;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .photo-placeholder { font-size: 3rem; opacity: 0.35; }

.hero-name  { font-size: clamp(2.8rem,8vw,4.5rem); font-weight: 300; letter-spacing: 0.04em; margin-bottom: 0.35rem; animation: fadeUp 0.9s ease 0.3s both; }
.hero-born  { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--dusty-rose); margin-bottom: 1.5rem; animation: fadeUp 0.9s ease 0.45s both; }
.hero-dates { font-size: 1rem; letter-spacing: 0.12em; color: var(--dusty-rose); margin-bottom: 2.5rem; animation: fadeUp 0.9s ease 0.6s both; }
.hero-dates .star { color: var(--soft-gold); margin: 0 0.6rem; }

.hero-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem;
  max-width: 500px; margin: 0 auto 2.5rem; padding-left: 1.25rem;
  border-left: 3px solid var(--soft-gold); text-align: left;
  color: rgba(58,47,42,0.8); animation: fadeUp 0.9s ease 0.75s both;
}

.candle-counter { font-size: 0.88rem; letter-spacing: 0.06em; color: var(--dusty-rose); margin-bottom: 1.5rem; animation: fadeUp 0.9s ease 0.9s both; }

/* ── Gumbi ── */
.btn-candle {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: var(--soft-gold); color: #fff; border: none; border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: background 0.3s, opacity 0.3s, transform 0.2s;
  animation: fadeUp 0.9s ease 1.05s both;
}
.btn-candle:hover:not(:disabled) { background: #b8944f; transform: translateY(-1px); }
.btn-candle:disabled { opacity: 0.45; cursor: default; }
.btn-candle.is-inactive { opacity: 0.5; cursor: pointer; }
.btn-candle.is-inactive:hover { opacity: 0.7; transform: translateY(-1px); }

.btn-submit {
  align-self: flex-start; padding: 0.75rem 2rem;
  background: var(--dark-text); color: var(--cream); border: none; border-radius: 2px;
  font-family: 'Inter', sans-serif; font-size: 0.82rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s, transform 0.2s;
}
.btn-submit:hover:not(:disabled) { background: var(--soft-gold); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.5; cursor: default; }

.btn-outline {
  display: inline-block; padding: 0.8rem 2rem;
  border: 1px solid var(--soft-gold); color: var(--soft-gold);
  border-radius: 2px; font-family: 'Inter', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; background: transparent;
  transition: background 0.3s, color 0.3s, transform 0.2s; text-decoration: none;
}
.btn-outline:hover { background: var(--soft-gold); color: #fff; transform: translateY(-1px); }

/* ── Sekcije ── */
section { padding: 5rem 1.5rem; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-title    { font-size: clamp(2rem,5vw,2.8rem); text-align: center; margin-bottom: 0.75rem; }
.section-subtitle { text-align: center; font-size: 0.92rem; color: var(--dusty-rose); max-width: 580px; margin: 0 auto 3.5rem; line-height: 1.75; }

/* ── Časovnica ── */
#zgodba { background: var(--cream); }
.timeline { position: relative; max-width: 640px; margin: 0 auto; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0.55rem; top: 0.5rem; bottom: 0.5rem; width: 2px; background: linear-gradient(to bottom, var(--dusty-rose), var(--soft-gold), var(--dusty-rose)); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 3rem; opacity: 0; transform: translateX(-12px); transition: opacity 0.55s ease, transform 0.55s ease; }
.timeline-item.visible { opacity: 1; transform: none; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -2.5rem; top: 0.35rem; width: 14px; height: 14px; border-radius: 50%; background: var(--dusty-rose); border: 2px solid var(--cream); box-shadow: 0 0 0 2px var(--dusty-rose); }
.timeline-item:last-child .timeline-dot { background: var(--soft-gold); box-shadow: 0 0 0 2px var(--soft-gold); }
.timeline-year  { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--soft-gold); letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.timeline-label { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 0.4rem; }
.timeline-text  { font-size: 0.9rem; color: rgba(58,47,42,0.75); line-height: 1.75; }

/* ── Galerija ── */
#galerija { background: var(--blush); }
.gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; max-width: 560px; margin: 0 auto 2.5rem; }
.gallery-cell { aspect-ratio: 1; background: rgba(212,165,160,0.25); border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; position: relative; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-cell:hover { transform: scale(1.02); box-shadow: 0 6px 20px rgba(58,47,42,0.14); }
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell .ph { font-size: 1.5rem; opacity: 0.25; pointer-events: none; }
.gallery-cta { text-align: center; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(42,31,26,0.93); align-items: center; justify-content: center; padding: 1.5rem; flex-direction: column; gap: 1rem; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 78vh; object-fit: contain; border-radius: 2px; box-shadow: 0 24px 72px rgba(0,0,0,0.5); user-select: none; -webkit-user-select: none; }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.5rem; color: rgba(255,255,255,0.65); font-size: 2rem; cursor: pointer; background: none; border: none; line-height: 1; transition: color 0.2s; }
.lightbox-close:hover { color: #fff; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 3.1rem; height: 3.1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.28); background: rgba(0,0,0,0.22); color: rgba(255,255,255,0.78); font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.lightbox-nav:hover { background: rgba(201,169,110,0.22); color: #fff; border-color: rgba(201,169,110,0.65); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-counter { color: rgba(255,255,255,0.58); font-family: 'Inter', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: -0.3rem; }

.lightbox-card-btn { background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.5); color: var(--soft-gold); padding: 0.6rem 1.5rem; border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.lightbox-card-btn:hover { background: rgba(201,169,110,0.3); border-color: var(--soft-gold); }

/* ── Spominska knjiga ── */
#spominska-knjiga { background: var(--cream); }
.guestbook-form { max-width: 560px; margin: 0 auto 3.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.35rem; color: rgba(58,47,42,0.6); }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(201,169,110,0.4); border-radius: 2px; background: var(--blush); font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--dark-text); transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--soft-gold); background: #fff; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.76rem; color: rgba(58,47,42,0.45); line-height: 1.5; }
.guestbook-entries { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.25rem; }
.entry { display: flex; gap: 1rem; background: var(--blush); padding: 1.25rem 1.5rem; border-radius: 2px; border-left: 3px solid var(--soft-gold); }
.entry-avatar { flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--dusty-rose); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; }
.entry-body { flex: 1; min-width: 0; }
.entry-header { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 0.75rem; margin-bottom: 0.3rem; }
.entry-name     { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; }
.entry-relation { font-size: 0.8rem; color: var(--dusty-rose); font-style: italic; }
.entry-date     { font-size: 0.72rem; color: rgba(58,47,42,0.4); margin-left: auto; }
.entry-message  { font-size: 0.9rem; color: rgba(58,47,42,0.82); line-height: 1.7; }
.gb-empty { text-align: center; color: rgba(58,47,42,0.4); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; padding: 2.5rem 0; }
.guestbook-more { max-width: 640px; margin: 2rem auto 0; text-align: center; }

/* ── Svečke sekcija ── */
#svecke { background: var(--dark-bg); color: var(--cream); padding: 5rem 1.5rem 6rem; }
#svecke .section-title    { color: var(--cream); }
#svecke .section-subtitle { color: rgba(242,232,224,0.55); }

.candle-info-box { max-width: 560px; margin: 0 auto 4rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,169,110,0.2); border-radius: 4px; padding: 1.25rem 1.5rem; }
.candle-status { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; line-height: 1.55; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201,169,110,0.2); }
.candle-status-icon { flex-shrink: 0; font-size: 1.1rem; line-height: 1.4; }
.candle-status-text strong { display: block; margin-bottom: 0.1rem; font-weight: 500; }
.candle-status--pending .candle-status-text { color: rgba(242,232,224,0.65); }
.candle-status--ready   .candle-status-text { color: var(--soft-gold); }
.candle-status--blocked .candle-status-text { color: var(--dusty-rose); }
.candle-how-title { font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-bottom: 0.5rem; color: rgba(242,232,224,0.85); }
.candle-how-list { list-style: none; font-size: 0.82rem; color: rgba(242,232,224,0.55); line-height: 1.65; }
.candle-how-list li { position: relative; padding-left: 1rem; margin-bottom: 0.3rem; }
.candle-how-list li::before { content: '·'; position: absolute; left: 0; color: var(--soft-gold); font-weight: bold; }
.candle-location-note { margin-top: 0.6rem; font-size: 0.76rem; font-style: italic; color: rgba(242,232,224,0.35); }

.candle-wall { display: flex; flex-wrap: wrap; gap: 2rem 1.75rem; justify-content: center; max-width: 900px; margin: 0 auto; min-height: 120px; align-items: flex-end; }
.candle-wall-empty { text-align: center; color: rgba(242,232,224,0.35); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1rem; width: 100%; padding: 2rem 0; }
.candle-item { display: flex; flex-direction: column; align-items: center; }
.candle-item .candle-name { font-size: 0.78rem; text-align: center; margin-top: 0.5rem; color: rgba(242,232,224,0.85); line-height: 1.3; max-width: 80px; word-break: break-word; }
.candle-item .candle-date { font-size: 0.62rem; color: rgba(242,232,224,0.38); margin-top: 0.15rem; }
.candle-more { text-align: center; margin-top: 3.5rem; }
.btn-outline--light { border-color: rgba(201,169,110,0.7); color: var(--soft-gold); }
.btn-outline--light:hover { background: var(--soft-gold); color: var(--dark-bg); }
.candle-svg  { width: 36px; height: 72px; overflow: visible; }
.candle-wax  { fill: #F5EDE0; }
.candle-wick { stroke: #3A2F2A; stroke-width: 1.5; }
.flame-group { transform-origin: 18px 18px; animation: flameDance 1.8s ease-in-out infinite alternate; }
.flame-outer { fill: #E85D04; opacity: 0.7; }
.flame-mid   { fill: #F48C06; opacity: 0.85; }
.flame-inner { fill: #FFBA08; opacity: 0.95; }

/* ── Footer ── */
footer { background: var(--dark-bg); color: var(--cream); text-align: center; padding: 3.5rem 1.5rem; border-top: 1px solid rgba(201,169,110,0.12); }
.footer-heart { width: 34px; margin: 0 auto 1.1rem; color: var(--green-heart); animation: heartbeat 2.5s ease-in-out infinite; }
.footer-heart svg { width: 100%; height: auto; display: block; }
.footer-name    { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; margin-bottom: 0.2rem; }
.footer-born    { font-size: 0.88rem; font-style: italic; color: rgba(242,232,224,0.45); margin-bottom: 0.5rem; }
.footer-dates   { font-size: 0.8rem; letter-spacing: 0.1em; color: rgba(242,232,224,0.4); margin-bottom: 1rem; }
.footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--soft-gold); }
.footer-contact { margin: 1.75rem -1.5rem 0; padding: 1.5rem 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.5); text-align: center; }
.footer-contact a { font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(242,232,224,0.6); transition: color 0.3s; }
.footer-contact a:hover { color: var(--soft-gold); }

/* ── FAB ── */
.fab-candle {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  width: 81px; height: 81px; border-radius: 50%;
  background: var(--soft-gold); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(42,31,26,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  font-family: 'Inter', sans-serif;
}
.fab-candle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(42,31,26,0.4); }
.fab-candle.is-inactive { opacity: 0.5; }
.fab-candle.is-inactive:hover { opacity: 0.7; }
.fab-icon  { font-size: 1.75rem; line-height: 1; }
.fab-count { font-size: 0.78rem; font-weight: 500; margin-top: 2px; letter-spacing: 0.02em; }

/* ── Modali ── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(42,31,26,0.72); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.active { display: flex; }
.modal { background: var(--cream); border-radius: 4px; padding: 2.5rem 2rem; max-width: 420px; width: 100%; text-align: center; position: relative; box-shadow: 0 20px 60px rgba(42,31,26,0.3); animation: modalIn 0.25s ease; }
.modal-close { position: absolute; top: 0.75rem; right: 1rem; background: none; border: none; font-size: 1.5rem; color: rgba(58,47,42,0.35); cursor: pointer; line-height: 1; transition: color 0.2s; }
.modal-close:hover { color: var(--dark-text); }
.modal h3  { font-size: 1.8rem; margin-bottom: 0.4rem; }
.modal-desc { font-size: 0.88rem; color: rgba(58,47,42,0.6); margin-bottom: 1.5rem; line-height: 1.6; }
.modal input { width: 100%; padding: 0.75rem 1rem; border: 1px solid rgba(201,169,110,0.4); border-radius: 2px; background: #fff; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--dark-text); margin-bottom: 1rem; outline: none; transition: border-color 0.3s; }
.modal input:focus { border-color: var(--soft-gold); }
.modal-success { display: none; padding: 0.5rem 0; }
.modal-success.show { display: block; }
.modal-success p { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-style: italic; color: var(--soft-gold); }
.modal-form.hide { display: none; }
.modal-note { font-size: 0.75rem; color: rgba(58,47,42,0.45); margin-top: 0.75rem; line-height: 1.5; }

.info-modal-body { text-align: left; }
.info-modal-body p { margin-bottom: 0.85rem; font-size: 0.9rem; line-height: 1.65; color: rgba(58,47,42,0.82); }
.info-modal-body ul { list-style: none; font-size: 0.85rem; color: rgba(58,47,42,0.75); margin-bottom: 1rem; }
.info-modal-body ul li { position: relative; padding-left: 1.1rem; margin-bottom: 0.4rem; line-height: 1.55; }
.info-modal-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--soft-gold); font-weight: bold; }
.info-modal-location { font-size: 0.8rem; font-style: italic; color: rgba(58,47,42,0.5); padding-top: 0.75rem; border-top: 1px solid rgba(201,169,110,0.2); }
.info-modal-donate { font-size: 0.85rem; color: rgba(58,47,42,0.65); margin-top: 0.75rem; line-height: 1.6; }
.info-modal-donate button { background: none; border: none; padding: 0; font: inherit; color: var(--soft-gold); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.modal-btn-row { margin-top: 1.25rem; }

/* ── Animacije ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
@keyframes flameDance {
  0%   { transform: scaleX(1)    scaleY(1)    rotate(-1deg); }
  25%  { transform: scaleX(0.92) scaleY(1.06) rotate(1.5deg); }
  50%  { transform: scaleX(1.05) scaleY(0.94) rotate(-0.5deg); }
  75%  { transform: scaleX(0.96) scaleY(1.04) rotate(2deg); }
  100% { transform: scaleX(1.02) scaleY(0.97) rotate(-1.5deg); }
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.18); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.1); }
  56%       { transform: scale(1); }
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .gallery-grid { gap: 6px; }
}
@media (max-width: 600px) {
  .lightbox { padding: 1rem; }
  .lightbox img { max-width: 96vw; max-height: 72vh; }
  .lightbox-nav { display: none; }
  .lightbox-card-btn { max-width: calc(100vw - 2rem); padding: 0.6rem 1rem; }
  nav ul { gap: 0.85rem; }
  nav a  { font-size: 0.72rem; letter-spacing: 0.07em; }
  .hero-photo { width: 182px; height: 182px; }
  .hero-name  { font-size: clamp(2.2rem,10vw,3.5rem); }
  .timeline   { padding-left: 2rem; }
  .entry      { padding: 1rem 1.1rem; }
  .entry-date { margin-left: 0; }
  .fab-candle { bottom: 1.25rem; right: 1.25rem; width: 73px; height: 73px; }
  .modal      { padding: 2rem 1.5rem; }
  .candle-wall { gap: 1.5rem 1.25rem; }
}
@media (max-width: 400px) {
  nav ul { gap: 0.5rem; }
  nav a  { font-size: 0.67rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Donacijski gumb in modal ── */
.btn-donate {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.5);
  color: rgba(242,232,224,0.7);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  margin-top: 1rem;
}
.btn-donate:hover { border-color: var(--soft-gold); color: var(--soft-gold); }
.donate-hint {
  display: block;
  max-width: 460px;
  margin: 0.85rem auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(58,47,42,0.6);
}
.donate-hint button {
  background: none; border: none; padding: 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: var(--soft-gold); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
.donate-modal h3 { margin-bottom: 0.35rem; }
.donate-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.05rem;
  color: rgba(58,47,42,0.65); margin-bottom: 1.75rem; line-height: 1.65;
}
.shelter-list { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.shelter-item { background: var(--blush); border-radius: 2px; padding: 1rem 1.25rem; border-left: 3px solid var(--soft-gold); }
.shelter-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--dark-text); margin-bottom: 0.35rem; }
.shelter-details { font-size: 0.8rem; color: rgba(58,47,42,0.65); line-height: 1.7; }
.shelter-details a { color: var(--soft-gold); text-decoration: none; }
.shelter-details a:hover { text-decoration: underline; }
.shelter-sms { display: inline-block; margin-top: 0.4rem; font-size: 0.78rem; background: var(--soft-gold); color: #fff; padding: 0.25rem 0.65rem; border-radius: 2px; font-weight: 500; letter-spacing: 0.05em; }
.donate-footnote { font-size: 0.72rem; color: rgba(58,47,42,0.4); margin-top: 1.25rem; text-align: center; line-height: 1.5; }

.candle-donate { text-align: center; margin-top: 2.5rem; }
.candle-donate-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(242,232,224,0.6); margin-bottom: 0.75rem; }

/* ── Diskreten števec obiskov ── */
.visit-counter {
  position: fixed !important;
  bottom: 0.85rem;
  left: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  color: rgba(242,232,224,0.32);
  z-index: 950;
  pointer-events: none;
  user-select: none;
  margin: 0;
}
@media (max-width: 600px) {
  .visit-counter { font-size: 0.62rem; bottom: 0.65rem; left: 0.85rem; }
}
