



/* =========================
   Fonts
========================= */

@font-face {
  font-family: lexend;
  src: url(../font/Lexend/LexendZetta-Light.ttf);
}
@font-face {
  font-family: mrs_saint;
  src: url(../font/Mrs_Saint_Delafield/MrsSaintDelafield-Regular.ttf);
}

@font-face {
    font-family: noto-sans;
    src: url(../font/Noto_Sans/noto-sans-latin-400-normal.woff2);
    font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
    font-family: noto-serif;
    src: url(../font/noto-serif-latin/noto-serif-latin-regular.woff2);
    font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================
   Variables
========================= */

:root {
  --color-bg: #faf7f0;
  --color-bg-soft: #fffdf8;
  --color-bg-blue: #ddeaf6;

  --color-text: #2f2f2f;
  --color-muted: #6f7477;
  --color-heading: #382b26;

  --color-gold: #d8b35a;
  --color-gold-dark: #b88a2a;
  --color-gold-hover: #9f7620;
  --color-gold-soft: #f2e4bc;
  --color-link: #8f6420;
  --color-link-hover: #6f4a10;

  --color-white: #ffffff;
  --color-border: rgba(184, 138, 42, 0.22);

  --font-heading: "noto-serif", Georgia, serif;
  --font-body: "noto-sans", Arial, sans-serif;

  --container: 1180px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 10px 28px rgba(65, 50, 22, 0.08);
  --shadow-md: 0 18px 48px rgba(65, 50, 22, 0.12);
  --shadow-lg: 0 28px 80px rgba(65, 50, 22, 0.16);

  --transition: 180ms ease;
}


/* =========================
   Reset
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 179, 90, 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(221, 234, 246, 0.7), transparent 32%),
    linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-soft) 50%, #f7efe0 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}


/* =========================
   Typography
========================= */

h1,
h2,
h3 {
  color: var(--color-heading);
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.25rem, 4.8vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.2rem;
  color: var(--color-gold-hover);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.2em;
  word-spacing: .4em;
}

p {
  color: var(--color-text);
}

.lead {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.25vw, 1.1875rem);
  line-height: 1.75;
}


/* =========================
   Layout helpers
========================= */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--small {
  padding: 64px 0;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex {
  display: flex;
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}


/* =========================
   Buttons
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: scale(1.03);
}

.btn-primary {
  background: var(--color-gold-dark);
  color: var(--color-white);
  box-shadow: 0 18px 36px rgba(184, 138, 42, 0.26);
}

.btn-primary:hover {
  background: var(--color-gold-hover);
  box-shadow: 0 24px 44px rgba(184, 138, 42, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-heading);
  border-color: rgba(38, 50, 56, 0.12);
}

.btn-secondary:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.62);
  color: var(--color-heading);
  border-color: rgba(184, 138, 42, 0.35);
}

.btn-ghost:hover {
  border-color: var(--color-gold-dark);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}



.donate {
  background: linear-gradient(to bottom, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0.12) 100%),
              linear-gradient(to right, var(--color-gold) 0%, var(--color-gold-dark) 50%, var(--color-gold) 100%);
  background-position: 0 0;
  background-size: 200% 100%;
  border-radius: var(--radius-sm);
  color: var(--color-bg-soft);
  padding: 13px 60px 13px 32px;
  text-shadow: 0 1px 3px rgba(100, 65, 0, 0.4);
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(184, 138, 42, 0.26);
  -webkit-transition: all 800ms;
  transition: all 800ms;
}

.donate:hover {
  background-position: -100% 0;
}

.hero-cards {
    display: flex;
    gap: 1rem;
  perspective: 1000px;
}
.hero-cards .hero-card {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: var(--radius-sm);
    border: solid 2px var(--color-bg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(65, 50, 22, 0.18);
    transition: .5s;
    animation: jump 3s forwards linear;
    transform-style: preserve-3d;
}
@keyframes jump {
    0% {
        transform: translateY(0);
    }
    10% {
        transform: translateY(-20px);
    }
    20% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
.hero-cards .hero-card:nth-child(1) {
    animation-delay: 3s;
}
.hero-cards .hero-card:nth-child(2) {
    animation-delay: 3.1s;
}
.hero-cards .hero-card:nth-child(3) {
    animation-delay:3.2s;
}
.hero-cards .hero-card:hover {
  animation: none;
    transform: rotateY(360deg);
}
   .sparkles {
      position: absolute;
      top: 172px;
      left:35%;
      z-index: 8;
      color: var(--color-gold-hover);
      opacity: 0.9;
    }
   .quote {
      position: absolute;
      right: 34px;
      bottom: 3%;
      z-index: 10;
      width: 160px;
      color: #5f584c;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.22;
      font-style: italic;
      text-align: center;
    }

    .quote::before,
    .quote::after {
      position: absolute;
      color: rgba(196, 154, 58, 0.72);
      font-size: 66px;
      line-height: 1;
      font-style: normal;
    }

    .quote::before {
      content: "“";
      left: -26px;
      top: -14px;
    }

    .quote::after {
      content: "”";
      right: -14px;
      bottom: -36px;
    }

    .quote__line {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 20px auto 0;
    }

    .quote__line::before,
    .quote__line::after {
      content: "";
      width: 42px;
      height: 1px;
      background: rgba(196, 154, 58, 0.65);
    }

    .quote__line span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(196, 154, 58, 0.8);
    }

    .sparkles svg {
      width: 92px;
      height: 92px;
      animation: puls 8s infinite ease-in-out;
    }
    @keyframes puls {
        0% {
            transform: scale(1) translate(0);
        }
        50% {
            transform: scale(1.3) translate(40px, 20px);
        }
        100% {
            transform: scale(1) translate(0);
        }
    }
/* =========================
   Cards
========================= */

.card {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.card-padding {
  padding: 28px;
}


/* =========================
   Forms
========================= */

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(38, 50, 56, 0.14);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  padding: 12px 14px;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 4px rgba(216, 179, 90, 0.18);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* =========================
   Contact Page
========================= */

.contact-hero {
  position: relative;
  min-height: clamp(410px, 58vh, 620px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 41, 56, 0.75) 0%, rgba(29, 41, 56, 0.28) 50%, rgba(29, 41, 56, 0.1) 100%);
  z-index: 0;
}

.contact-hero__media,
.contact-hero__media picture,
.contact-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero__media img {
  object-fit: cover;
  object-position: center;
}

.contact-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  color: var(--color-bg-soft);
  padding-top: 6rem;
  padding-bottom: 2rem;
}

.contact-hero__eyebrow {
  color: var(--color-gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.contact-hero h1 {
  color: var(--color-bg-soft);
  max-width: 18ch;
}

.contact-hero p {
  color: rgba(255, 253, 248, 0.92);
  max-width: 56ch;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-page {
  padding-top: 4.5rem;
}

.contact-page__intro {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.contact-page__grid {
  align-items: stretch;
}

.contact-page__faq {
  margin-top: 2.5rem;
}

.contact-card {
  display: grid;
  gap: 1rem;
  height: 100%;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-sm);
}

.contact-card--info {
  grid-template-rows: auto auto auto 1fr;
}

.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-card__list a {
  color: var(--color-gold-dark);
}

.contact-card__meta {
  display: grid;
  gap: 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(184, 138, 42, 0.2);
}

.contact-card__media {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(184, 138, 42, 0.22);
  height: 100%;
  min-height: 210px;
}

.contact-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form .btn {
  justify-self: start;
}

label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-heading);
  font-weight: 600;
}
.map {
    margin-top: 50px;
}
.map iframe {
    border-radius: var(--radius-sm);
}

/* =========================
   Accessibility
========================= */

:focus-visible {
  outline: 3px solid rgba(184, 138, 42, 0.55);
  outline-offset: 4px;
}

::selection {
  background: var(--color-gold-soft);
  color: var(--color-heading);
}


/* =========================
   Header
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: linear-gradient(90deg, #6f4a10 0%, rgba(236, 220, 201, 0.96) 28%, rgba(250, 247, 240, 0.97) 62%, rgba(255, 253, 248, 0.97) 100%);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header__logo img {
    width: 100px;
  filter: drop-shadow(0 -10px 18px rgba(78, 54, 3, 0.607));
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-heading);
  letter-spacing: 0.01em;
  transition: color var(--transition), background var(--transition);
}

.site-header__nav a:hover {
  color: var(--color-gold-dark);
  background: rgba(216, 179, 90, 0.1);
}

.site-header__nav a[href="donacija.html"] {
  background: var(--color-gold-dark);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 0.4rem 1.1rem;
  margin-left: 0.5rem;
}

.site-header__nav a[href="donacija.html"]:hover {
  background: var(--color-gold-hover);
  color: var(--color-white);
}

/* Burger — mobil */
.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform 300ms, opacity 300ms;
}

.site-header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__lang {
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-heading);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 4rem;
}

.site-header__lang:hover {
  background: rgba(216, 179, 90, 0.1);
  color: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}


/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-color: transparent;
  background-position: center;
  background-size: cover;
}


.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: center;
}

.hero-text {
  position: relative;
  z-index: 2;
  width: min(100%, 40rem);
  margin-left: clamp(1rem, 4vw, 4rem);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 3.5rem 0;
}
.hero-buttons {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.hero-buttons .more {
    margin-left: 1.5rem;
    letter-spacing: 1px;
    border: solid 1px var(--color-gold-hover);
    color: var(--color-gold-hover);
    padding: 8.4px 60px 8.4px 32px;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: .4s;
}
.hero-buttons .more .btn-icon {
    color: var(--color-gold-hover);
}

.hero-buttons .more:hover .btn-icon {
    transform: scaleX(1.8);
    transform-origin: center left;
}
.hero-buttons .more:hover  {
    transform: scaleX(1.02);
    transform-origin: center left;
}
.hero-buttons .donate .btn-icon {
    color: var(--color-white);
    top: 24%;
}
.hero-buttons .donate:hover .btn-icon {
    color: var(--color-bg-soft);
}
.hero-buttons a {
    position: relative;
}
.hero-buttons a .btn-icon {
    margin-left: 1rem;
    position: absolute;
    right: 2rem;
    transition: .5s;
}

/* =========================
   About Home
========================= */

.about-home {
  padding-top: 5.25rem;
  padding-bottom: 5.25rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(216, 179, 90, 0.16), transparent 36%),
    linear-gradient(160deg, rgba(255, 253, 248, 0.9), rgba(247, 239, 224, 0.72));
}
.about-home .container {
    display: flex;
}

.about-home__grid {
  align-items: center;
  gap: 2.25rem;
}

.about-home__content {
  display: grid;
  gap: 1rem;
}
.width60 {
  width: 60%;
}
.about-home__content--float-wrap {
  display: block;
}

.about-home__content--float-wrap > * + * {
  margin-top: 1rem;
}

.about-svg {
    width: 300px;
    transform: translateY(20px);
    padding: 2rem;
    border-bottom: 1px solid grey;
}
.about-home2 .container {
    display: flex;
    gap: 150px;
}
.about-home2 .about-svg {
    transform: translateY(0);
}
.about-svg-float {
    float: right;
    width: 200px;
    padding: 1rem;
  margin: 0 0 1rem 1rem;
    border-bottom: 1px solid grey;
}

.about-home__content h2 {
  margin-bottom: 0.3rem;
}

.about-home__list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin: 0.3rem 0 0.6rem;
  padding: 0;
}

.about-home__list li {
  position: relative;
  padding-left: 1.2rem;
}

.about-home__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-gold-dark);
  box-shadow: 0 0 0 4px rgba(184, 138, 42, 0.16);
}

.about-home__content .btn {
  justify-self: start;
}

.about-home__media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-home__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* =========================
   Transparency
========================= */

.transparency {
  background:
    radial-gradient(circle at 86% 22%, rgba(216, 179, 90, 0.18), transparent 34%),
    linear-gradient(165deg, rgba(255, 253, 248, 0.98), rgba(221, 234, 246, 0.55));
}

.transparency__inner {
  display: grid;
  gap: 2rem;
}

.transparency__head {
  display: grid;
  gap: 0.8rem;
}

.transparency__grid {
  gap: 1rem;
}

.transparency__card {
  height: 100%;
  display: grid;
  gap: 0.65rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.transparency__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.transparency__card h3 {
  line-height: 1.2;
}

.transparency__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* =========================
   Impact
========================= */

.impact {
  background:
    radial-gradient(circle at 86% 20%, rgba(216, 179, 90, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(247, 239, 224, 0.85));
}

.impact__inner {
  display: grid;
  gap: 1.75rem;
}

.impact__head {
  display: grid;
  gap: 0.8rem;
}

.impact__grid {
  gap: 1rem;
}

.impact__card {
  height: 100%;
  display: grid;
  gap: 0.6rem;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(255, 253, 248, 0.93);
  box-shadow: var(--shadow-sm);
}

.impact__value {
  color: var(--color-gold-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1;
}

.impact__card h3 {
  line-height: 1.2;
}

.impact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* =========================
   Impact Breakdown
========================= */

.impact-breakdown {
  background: linear-gradient(135deg, rgba(250, 247, 240, 0.98) 0%, rgba(219, 231, 243, 0.5) 100%);
  padding: 4.5rem 0;
}

.impact-breakdown__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.impact-breakdown__head {
  margin-bottom: 1rem;
}

.impact-breakdown__head h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.impact-breakdown__head p {
  font-size: 1.05rem;
  color: var(--color-dark-soft);
  max-width: 100%;
}

.impact-breakdown__grid {
  gap: 2rem;
}

.impact-breakdown__card {
  background: white;
  border-radius: 0.8rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 280ms ease, box-shadow 280ms ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.impact-breakdown__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.impact-breakdown__icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.impact-breakdown__card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-dark);
}

.impact-breakdown__card p {
  font-size: 0.95rem;
  color: var(--color-dark-soft);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.impact-breakdown__percent {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(142, 172, 199, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
}

/* =========================
   Reports
========================= */

.reports {
  background: white;
  padding: 4.5rem 0;
}

.reports__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.reports__head h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.reports__head p {
  font-size: 1.05rem;
  color: var(--color-dark-soft);
  max-width: 100%;
}

.reports__list {
  gap: 2rem;
}

.reports__item {
  background: linear-gradient(135deg, rgba(250, 247, 240, 0.6) 0%, rgba(219, 231, 243, 0.4) 100%);
  border: 1px solid rgba(142, 172, 199, 0.2);
  border-radius: 0.8rem;
  padding: 2rem;
  transition: all 280ms ease;
}

.reports__item--featured {
  border: 1px solid rgba(184, 138, 42, 0.45);
  background:
    radial-gradient(circle at 100% 0%, rgba(184, 138, 42, 0.2), transparent 40%),
    linear-gradient(140deg, rgba(255, 251, 242, 0.98), rgba(246, 240, 225, 0.95));
  box-shadow: 0 18px 38px rgba(20, 18, 14, 0.14);
}

.reports__item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.reports__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.reports__year {
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--color-primary);
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
}

.reports__type {
  font-size: 0.85rem;
  color: var(--color-dark-soft);
  background: rgba(142, 172, 199, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
}

.reports__badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5a3f08;
  background: rgba(184, 138, 42, 0.18);
  border: 1px solid rgba(184, 138, 42, 0.35);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.reports__item h3 {
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.reports__item p {
  color: var(--color-dark-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.reports__stats {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.reports__stats li {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(142, 172, 199, 0.2);
  border-radius: 0.55rem;
  padding: 0.65rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.reports__stats li span {
  color: var(--color-dark-soft);
  font-size: 0.82rem;
}

.reports__stats li strong {
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 1.15;
}

.reports__source {
  margin-bottom: 1.2rem;
  font-size: 0.82rem;
  color: #5c564a;
}

.reports__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 760px) {
  .reports__stats {
    grid-template-columns: 1fr;
  }
}

.reports__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 220ms ease;
}

.reports__link:hover {
  color: var(--color-primary-dark);
  gap: 1rem;
}

.reports__link::after {
  content: '→';
}

.reports__link--external {
  color: #5a3f08;
  border: 1px solid rgba(184, 138, 42, 0.5);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(184, 138, 42, 0.12);
}

.reports__link--external:hover {
  color: #3f2c06;
  background: rgba(184, 138, 42, 0.2);
}

/* =========================
   Donation Chronicle
========================= */

.donation-chronicle {
  background:
    radial-gradient(circle at 8% 16%, rgba(242, 228, 188, 0.38), transparent 34%),
    radial-gradient(circle at 92% 78%, rgba(216, 179, 90, 0.2), transparent 30%),
    linear-gradient(160deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 224, 0.85));
}

.donation-chronicle__inner {
  display: grid;
  gap: 1.65rem;
}

.donation-chronicle__head {
  display: grid;
  gap: 0.7rem;
  max-width: 80ch;
}

.donation-chronicle__eyebrow {
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.donation-chronicle__head p {
  color: #4f463d;
}

.donation-chronicle__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.donation-chronicle__item {
  position: relative;
  padding: 1rem 1rem 1rem 2.4rem;
  border: 1px solid rgba(184, 138, 42, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-sm);
  color: #3b332b;
  line-height: 1.55;
}

.donation-chronicle__item::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.1rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-gold-dark);
  box-shadow: 0 0 0 4px rgba(184, 138, 42, 0.16);
  transform: translateY(5px);
}

@media (max-width: 900px) {
  .donation-chronicle__list {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Help CTA Section
========================= */

.help-cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgba(142, 172, 199, 0.85) 100%);
  padding: 4rem 0;
  color: white;
}

.help-cta__inner {
  max-width: 100%;
}

.help-cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.help-cta-section p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.help-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.help-cta__buttons .btn {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.help-cta__buttons .btn--primary {
  background: white;
  color: var(--color-primary);
}

.help-cta__buttons .btn--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.help-cta__buttons .btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.help-cta__buttons .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================
   How Help
========================= */

.how-help {
  background:
    radial-gradient(circle at 12% 24%, rgba(184, 138, 42, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(250, 247, 240, 0.96), rgba(255, 253, 248, 0.98));
}

.how-help__inner {
  display: grid;
  gap: 1.8rem;
}

.how-help__head {
  display: grid;
  gap: 0.8rem;
}

.how-help__grid {
  gap: 1rem;
}

.how-help__card {
  height: 100%;
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.how-help__card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 138, 42, 0.4);
  box-shadow: var(--shadow-md);
}

.how-help__card h3 {
  line-height: 1.2;
}

.how-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* =========================
   Volunteer
========================= */

.volunteer {
  background:
    radial-gradient(circle at 84% 16%, rgba(221, 234, 246, 0.72), transparent 28%),
    radial-gradient(circle at 10% 14%, rgba(216, 179, 90, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(250, 247, 240, 0.96));
}

.volunteer__inner {
  display: grid;
  gap: 1.5rem;
}

.volunteer__head {
  display: grid;
  gap: 0.65rem;
  max-width: 70ch;
}

.volunteer__eyebrow {
  color: var(--color-gold-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.volunteer__lead {
  max-width: 66ch;
}

.volunteer__cards {
  gap: 1rem;
}

.volunteer__card {
  position: relative;
  overflow: hidden;
}

.volunteer__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-gold), rgba(216, 179, 90, 0.18));
}

.volunteer__cta {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 138, 42, 0.22);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(242, 228, 188, 0.38));
  box-shadow: var(--shadow-sm);
}

.volunteer__cta-label {
  color: var(--color-gold-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.volunteer__cta h3 {
  margin-bottom: 0.55rem;
}

.volunteer__cta p {
  max-width: 68ch;
  color: var(--color-muted);
}

.volunteer__call-link {
  color: var(--color-gold-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.volunteer__call-link:hover,
.volunteer__call-link:focus-visible {
  color: var(--color-gold);
}

.volunteer__cta-link {
  justify-self: start;
  white-space: nowrap;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  color: var(--color-bg);
  background: linear-gradient(to right, var(--color-gold) 0%, var(--color-gold-dark) 50%, var(--color-gold) 100%);
}

@media (min-width: 760px) {
  .volunteer__cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem;
  }
}

/* =========================
   Donate CTA
========================= */

.donate-cta {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background:
    radial-gradient(circle at 24% 22%, rgba(242, 228, 188, 0.25), transparent 36%),
    linear-gradient(150deg, #3f2f22 0%, #4b3827 46%, #5b422d 100%);
}

.donate-cta__inner {
  border: 1px solid rgba(242, 228, 188, 0.34);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  text-align: left;
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.02));
  box-shadow: var(--shadow-lg);
}

.donate-cta__eyebrow {
  color: var(--color-gold-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.8rem;
}

.donate-cta h2 {
  color: var(--color-bg-soft);
  margin-bottom: 1rem;
}
.donate-cta p {
    color: var(--color-bg-soft);
}

.donate-cta .lead {
  color: rgba(255, 253, 248, 0.9);
  max-width: 62ch;
  margin-inline: 0;
}

.donate-cta__actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.donate-cta .btn-ghost {
  background: rgba(255, 253, 248, 0.1);
  color: var(--color-bg-soft);
  border-color: rgba(242, 228, 188, 0.44);
}

.donate-cta .btn-ghost:hover {
  background: rgba(255, 253, 248, 0.2);
  border-color: rgba(242, 228, 188, 0.7);
}

/* =========================
   FAQ
========================= */

.faq {
  padding: 5rem 0 4rem;
  background: var(--color-bg-soft);
}

.faq__inner h2 {
  text-align: left;
  margin-bottom: 2.8rem;
}

.faq__list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  transition: color var(--transition), background var(--transition);
}

.faq__question::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b88a2a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] {
  color: var(--color-gold-dark);
}

.faq__question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq__question:hover {
  background: rgba(216, 179, 90, 0.07);
}

.faq__answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms ease, opacity 180ms ease;
  margin: 0;
  padding: 0;
}

.faq__answer.is-open {
  max-height: 360px;
  opacity: 1;
}

.faq__answer > p {
  padding: 0 1.4rem 1.3rem;
  line-height: 1.7;
  margin: 0;
}

/* =========================
   Donacija stranica
========================= */
.donacija {
    padding: 90px 0;
}
.donacija h2 {
    margin-bottom: 1rem;
}
.problem {
    padding: 20px 0;
}
/* =========================
   Donation Payment Section
========================= */
.donation-payment {
    background: radial-gradient(circle at 86% 22%, rgba(216, 179, 90, 0.18), transparent 34%), linear-gradient(165deg, rgba(255, 253, 248, 0.98), rgba(221, 234, 246, 0.55));
}
.donation-payment__inner > h2 {
  margin-bottom: 0.75rem;
}

.donation-payment__inner > p {
  max-width: 680px;
  margin-bottom: 2rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.donacija p a,
.donation-payment__inner > p a,
.transparency p a,
.impact p a,
.how-help p a,
.faq__answer a,
.problem a {
  color: var(--color-link);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
}

.donacija p a:hover,
.donation-payment__inner > p a:hover,
.transparency p a:hover,
.impact p a:hover,
.how-help p a:hover,
.faq__answer a:hover,
.problem a:hover {
  color: var(--color-link-hover);
}
.donation-payment__inner .problem {
  max-width:unset;
  margin-top: 1rem;
  margin-bottom: 0;
}

.donation-payment__box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
  background: var(--color-bg-soft);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.donation-payment__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.donation-payment__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.donation-payment__row:first-child {
  border-top: 1px solid var(--color-border);
}

.donation-payment__row dt {
  font-weight: 600;
  color: var(--color-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.15rem;
}

.donation-payment__row dd {
  margin: 0;
  color: var(--color-heading);
  font-size: 1rem;
  line-height: 1.5;
}

.donation-payment__account {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.1rem !important;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--color-gold-dark) !important;
}

.donation-payment__qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.donation-payment__qr img {
  width: 180px;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: block;
}

.donation-payment__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.donation-payment__correspondent {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--color-border);
}

.donation-payment__correspondent > p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: var(--color-muted);
}

.donation-payment__corr-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.donation-payment__corr-table thead {
  position: sticky;
  top: 0;
}

.donation-payment__corr-table th,
.donation-payment__corr-table td {
  border: 1px solid var(--color-border);
  padding: 0.55rem 0.85rem;
  text-align: left;
  color: var(--color-text);
  vertical-align: middle;
}

.donation-payment__corr-table th {
  background: var(--color-gold-soft);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-heading);
  white-space: nowrap;
}

.donation-payment__corr-table tbody tr:first-child td {
  background: rgba(216, 179, 90, 0.06);
}

.donation-payment__corr-table tbody tr:hover td {
  background: rgba(216, 179, 90, 0.1);
  transition: background 140ms ease;
}

/* Responsive table — stack rows on small screens */
@media (max-width: 600px) {
  .donation-payment__corr-table thead {
    display: none;
  }

  .donation-payment__corr-table,
  .donation-payment__corr-table tbody,
  .donation-payment__corr-table tr,
  .donation-payment__corr-table td {
    display: block;
    width: 100%;
  }

  .donation-payment__corr-table tbody tr {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    overflow: hidden;
  }

  .donation-payment__corr-table td {
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.45rem 0.85rem;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
  }

  .donation-payment__corr-table td:last-child {
    border-bottom: none;
  }

  .donation-payment__corr-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
  }
}

.donation-payment__note {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

@media (max-width: 700px) {
  .donation-payment__box {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .donation-payment__qr {
    align-items: flex-start;
  }

  .donation-payment__qr img {
    width: 140px;
  }

  .donation-payment__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .donation-payment__row dt {
    font-size: 0.8rem;
  }
}

/* =========================
   Footer
========================= */

.site-footer {
  position: relative;
  margin-top: 4rem;
  padding-top: 3.5rem;
  color: var(--color-bg-soft);
  background:
    radial-gradient(circle at 15% 20%, rgba(242, 228, 188, 0.15), transparent 35%),
    radial-gradient(circle at 90% 0%, rgba(216, 179, 90, 0.22), transparent 32%),
    linear-gradient(160deg, #2f241d 0%, #3b2b20 45%, #4a3321 100%);
  border-top: 1px solid rgba(242, 228, 188, 0.28);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 1rem;
}

.site-footer__logo img {
  height: 80px;
  width: auto;
}

.site-footer__brand p {
  max-width: 34ch;
  color: rgba(255, 253, 248, 0.88);
}

.site-footer__cta {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(242, 228, 188, 0.45);
  color: var(--color-bg-soft);
  background: linear-gradient(90deg, rgba(216, 179, 90, 0.22), rgba(184, 138, 42, 0.28));
  transition: var(--transition);
}

.site-footer__cta:hover {
  transform: scale(1.03);
  background: linear-gradient(90deg, rgba(216, 179, 90, 0.36), rgba(184, 138, 42, 0.4));
  border-color: rgba(242, 228, 188, 0.7);
}
.social_net {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-footer__col {
  display: grid;
  gap: 0.9rem;
}

.site-footer__col h5 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--color-gold-soft);
}

.site-footer__links,
.site-footer__meta {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  transition: .5s;
}
.site-footer__meta li a:hover, .site-footer__links a:hover {
  color: var(--color-gold-dark);
}

.site-footer__links a {
  color: rgba(255, 253, 248, 0.9);
  transition: color var(--transition), transform var(--transition);
}




.site-footer__links .legal a {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.88rem;
}

.site-footer__links .legal a:hover {
  color: var(--color-gold-soft);
}

.site-footer__meta li {
  color: rgba(255, 253, 248, 0.88);
}

.site-footer__meta span {
  color: var(--color-gold-soft);
  font-weight: 700;
}


.copyright {
  border-top: 1px solid rgba(179, 161, 132, 0.3);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}
.copyright span {
  color: var(--gold);
  font-family: var(--body-font);
  font-size: 0.85rem;
}
.copyright .designed11 {
  font-size: 12px;
  font-family: lexend;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -2px;
  color: turquoise;
  margin: 0;
  transition: 0.5s;
}
.copyright .designed11:hover {
  transform: scale(0.95);
}
.copyright .designed11 span {
  font-size: 30px;
  font-family: mrs_saint;
  text-align: center;
  color: gold;
  transition: 0.5s;
}
.copyright .designed11:hover span {
  transform: scale(0.95);
}
/* Google Maps Embed */
.google-map-embed {
  width: 100%;
  height: 200px;
  border: 0;
}
/* =========================
   Responsive
========================= */

@media (max-width: 1550px) {
 .hero {
  align-items: flex-end;
}
}
@media (max-width: 1000px) {
 
  .quote {
   color: var(--color-white);
  }
  .hero-cards .hero-card {
    background: rgba(54, 40, 13, 0.092);
    border: solid 1px var(--color-gold);
  }
.hero-buttons .more {
    border: solid 1px var(--color-gold);
    color: var(--color-gold);
}

    .site-header {
        backdrop-filter: none;
    }
  .site-header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 220ms ease;
  }

  .site-header__burger span {
    background: #ffffff;
    transform-origin: center;
    transition: transform 320ms ease, opacity 220ms ease, background-color 220ms ease;
  }

  .site-header.scrolled .site-header__burger span {
    background: #1f1f1f;
  }

  .site-header__burger[aria-expanded="true"] {
    transform: rotate(90deg);
  }

  .site-header__burger[aria-expanded="true"] span {
    background: #1f1f1f;
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header__nav {
    display: block;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    background: rgba(250, 247, 240, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 1.25rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 280ms ease, transform 320ms ease, max-height 360ms ease, visibility 320ms ease;
  }

  .site-header__nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    height: 95vh;
    max-height: 100vh;
    box-shadow: 0 18px 38px rgba(20, 18, 14, 0.18);
    display: flex;
    align-items: center;
    justify-content: left;
  }

  .site-header__nav.open {
    overflow-y: auto;
  }

  body.nav-open,
  html.nav-open {
    overflow: hidden;
  }

  .site-header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    transform: translateY(-10%);
  }

  .site-header__nav li {
    width: 100%;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 260ms ease, transform 300ms ease;
  }

  .site-header__nav.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .site-header__nav.open li:nth-child(1) { transition-delay: 40ms; }
  .site-header__nav.open li:nth-child(2) { transition-delay: 80ms; }
  .site-header__nav.open li:nth-child(3) { transition-delay: 120ms; }
  .site-header__nav.open li:nth-child(4) { transition-delay: 160ms; }
  .site-header__nav.open li:nth-child(5) { transition-delay: 200ms; }
  .site-header__nav.open li:nth-child(6) { transition-delay: 240ms; }

  .site-header__nav a {
    width: 100%;
    padding: 0.6rem 0.75rem;
  }

  .site-header__nav a[href="donacija.html"] {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }
  .site-header__lang {
  margin-left: 0;
  background-color: var(--color-gold-dark);
  color: var(--color-bg-soft);
}
.site-header__logo img {
    height: 70px;
    width: auto;
}
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.54) 45%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  .hero-text,
  .hero-text h1,
  .hero-text h4,
  .hero-text p {
    color: var(--color-bg-soft);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  }

  .hero-buttons .more {
    color: var(--color-bg-soft);
    border-color: rgba(255, 255, 255, 0.7);
  }

  .hero-buttons .more .btn-icon {
    color: var(--color-bg-soft);
  }
}
@media (max-width: 900px) {
 body {
        font-size: 0.9rem;
    }

  .site-footer {
    margin-top: 2.8rem;
    padding-top: 2.8rem;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.4rem;
  }

  blockquote,
  .quote {
    display: none;
  }
  .sparkles {
      top: 20%;
      right: 15%;
      left: auto;
      color: var(--color-gold-soft);
    }

  .hero-text {
    width: min(100%, 34rem);
    padding: 2.75rem 0;
    padding-right: 1rem;
  }

  .section {
    padding: 72px 0;
  }

  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .width60 {
    width: unset;
  }
}

@media (max-width: 600px) {
    .about-home .container {
        flex-direction: column;
        gap: 1rem;
    }
    .about-home2 .container {
    flex-direction: column-reverse;
    gap: 1rem;
}
.about-svg {
    width: 100%;
}
}
@media (max-width: 560px) {
    body {
        font-size: 0.85rem;
    }

  .contact-hero {
    min-height: 430px;
  }

  .contact-hero__content {
    padding-top: 6.8rem;
  }

  .contact-hero h1 {
    max-width: 100%;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__signature {
    margin-left: 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand p {
    max-width: none;
  }

  .site-footer__bottom p {
    font-size: 0.85rem;
  }

  .hero-text {
    width: 100%;
    gap: 1rem;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(1.9375rem, 11vw, 2.75rem);
  }

  .faq__inner h2 {
    text-align: left;
  }
  .faq__question {
    padding: 1.15rem .8rem;
  }
  .faq__answer p {
    padding: 0 .2rem 1.3rem .8rem;
  }
  
  .contact-hero::after {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.66) 0%,
      rgba(0, 0, 0, 0.54) 45%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }
  .btn {
    width: 100%;
  }

  .donation-payment__qr {
    width: 100%;
  }

  .donation-payment__qr img {
    width: 100%;
  }

  .sparkles {
    display: none;
  }
}
@media (max-width: 450px) {
    .hero-cards .hero-card {
        font-size: 11.2px;
        padding: 1rem .7rem;
    }
    .hero-buttons .more {
        padding: 8px 45px 8px 15px;
    }
    .hero-buttons .donate {
        padding: 12px 45px 12px 15px;
    }
    .hero-buttons a .btn-icon {
        right: 15%;
    }
    .hero-text h4 {
        font-size: 1rem;
    }
}

