:root {
    /* COLORS */
    --grey: #595754;
    --black-1: #0e0d0b;
    --black-2: #161718;
    --white: #fff;
    --white-opa-20: #ffffff33;
    --white-opa-10: #ffffff19;
    --black: #000;
    --black-opa-90: #000000E6;
    --black-opa-80: #000000CB;
    --black-opa-70: #000000B3;
    --black-opa-25: #00000040;
    --black-opa-15: #00000026;

    /* GRADIENT */
    --loading-text-grad: linear-gradient(90deg, transparent 0% 16.66%, var(--black-2) 33.33% 50%, transparent 66.66% 75%);
    --grad-1: linear-gradient(to top, var(--black-opa-90), var(--black-opa-70), transparent);

    /* TYPOGRAPHY */
    --font-forum: 'Forum', cursive;
    --font-dm_sans: 'DM Sans', sans-serif;

    --size-display: calc(1.3rem + 6.7vw);
    --size-headline-1: calc(2rem);
    --size-headline-2: calc(1.3rem + 2.4vw);
    --size-title-1: calc(1.6rem + 1.2vw);
    --size-title-2: 2.2rem;
    --size-title-3: 2.1rem;
    --size-title-4: calc(1.6rem + 0.5vw);
    --size-body-1: 2.4rem;
    --size-body-2: 1.6rem;
    --size-body-3: 1.8rem;
    --size-body-4: 1.6rem;
    --size-label-1: 1.4rem;
    --size-label-2: 1.2rem;

    --weight-reg: 400;
    --weight-bold: 700;

    --lineHeight-1: 1em;
    --lineHeight-2: 1.2em;
    --lineHeight-3: 1.5em;
    --lineHeight-4: 1.6em;
    --lineHeight-5: 1.85em;
    --lineHeight-6: 1.4em;

    --letterSpacing-1: 0.15em;
    --letterSpacing-2: 0.4em;
    --letterSpacing-3: 0.2em;
    --letterSpacing-4: 0.3em;
    --letterSpacing-5: 3px;

    /* SPACING */
    --section-space: 10px;

    /* SHADOW */
    --shadow: 0px 0px 25px 0px var(--black-opa-25);

    /* BORDER RADIUS */
    --radius-24: 24px;
    --radius-circle: 50%;

    /* TRANSITIONS */
    --transition-1: 250ms ease;
    --transition-2: 500ms ease;
    --transition-3: 1000ms ease;
}

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

li {
    list-style: none;
}

a, img, data, span, input, button, select, ion-icon, textarea {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    height: auto;
}

input, button, select, textarea {
    background: none;
    border: none;
    font: inherit;
}

input, select, textarea {
    width: 100%;
    outline: none;
}

button {
    cursor: pointer;
}

address {
    font-style: normal;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black-1);
    color: var(--white);
    font-family: var(--font-dm_sans);
    font-size: var(--size-body-4);
    font-weight: var(--weight-reg);
    line-height: var(--lineHeight-5);
    overflow: hidden;
}

body.loaded {
    overflow: overlay;
}

body.nav-active {
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--white-opa-20);
    border-radius: var(--radius-24);
}

.display-1, .headline-1, .headline-2, .title-1, .title-2, .title-3, .title-4 {
    color: var(--white);
    font-family: var(--font-dm_sans);
    font-weight: var(--weight-reg);
    line-height: var(--lineHeight-2);
}

.display-1 {
    font-size: var(--size-display);
    line-height: var(--lineHeight-1);
}

.headline-1 {
    font-size: var(--size-headline-1);
}

.headline-2 {
    font-size: var(--size-headline-2);
    line-height: var(--lineHeight-6);
}

.title-1 {
    font-size: var(--size-title-1);
}

.title-2 {
    font-size: var(--size-title-2);
}

.title-3 {
    font-size: var(--size-title-3);
}

.title-4 {
    font-size: var(--size-title-4);
}

.body-1 {
    font-size: var(--size-body-1);
    line-height: var(--lineHeight-6);
}

.body-2 {
    font-size: var(--size-body-2);
    line-height: var(--lineHeight-4);
}

.body-3 {
    font-size: var(--size-body-3);
}

.body-4 {
    font-size: var(--size-body-4);
}

.label-1 {
    font-size: var(--size-label-1);
}

.label-2 {
    font-size: var(--size-label-2);
}



.container {
    padding-inline: 16px;
}

.containerM {
    padding-inline: 16px;
    margin-bottom: 30px;
}

.hover-underline {
    position: relative;
    max-width: max-content;
}

.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 4px;
    border-block: 1px solid var(--grey);
    transform: scaleX(0.2);
    opacity: 0;
    transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
    transform: scaleX(1);
    opacity: 1;
}

.navbar-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 4px;
    border-block: 1px solid var(--grey);
    transform: scaleX(0.2);
    opacity: 0;
    transition: var(--transition-2);
}

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

.section-subtitle {
    position: relative;
    color: var(--grey);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-2);
    margin-block-end: 12px;
}

.btn {
    position: relative;
    color: var(--grey);
    font-size: var(--size-label-2);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-5);
    max-width: max-content;
    border: 2px solid var(--grey);
    padding: 12px 36px;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 200%;
    border-radius: var(--radius-circle);
    transition: var(--transition-2);
    z-index: -1;
}

.btn .text {
    transition: var(--transition-1);
}

.btn .text-2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: max-content;
    color: var(--white);
}

.btn:is(:hover, :focus-visible)::before {
    bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
    transform: translateY(-50px);
}

.btn:is(:hover, :focus-visible) .text-2 {
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn-secondary {
    color: var(--white);
}

.btn-secondary::before {
    background-color: var(--black-2);
}

.btn-secondary .text-2 {
    color: var(--white);
}

.has-before, .has-after {
    position: relative;
    z-index: 1;
}

.has-before::before, .has-after::after {
    content: "";
    position: absolute;
}

.section {
    position: relative;
    padding-block: var(--section-space);
    overflow: hidden;
    z-index: 1;
}

.bg-black-10 {
    background-color: var(--black-2);
}

.grid-list {
    display: grid;
    gap: 40px;
}

.btn-text {
    color: var(--orange);
    padding-block-end: 4px;
    margin-inline: auto;
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-3);
    font-weight: var(--weight-bold);
    transition: var(--transition-1);
}

.w-100 {
    width: 100%;
}

.has-bg-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.input-field {
    background-color: var(--black-1);
    color: var(--white);
    height: 56px;
    padding: 10px 20px;
    border: 1px solid var(--white-opa-10);
    margin-block-end: 20px;
    outline: none;
    transition: border-color var(--transition-2);
}

.input-field::placeholder {
    color: inherit;
}

.input-field:focus {
    border-color: var(--red);
}

.icon-wrapper {
    position: relative;
    margin-block-end: 20px;
}

.icon-wrapper .input-field {
    margin-block-end: 0;
    padding-inline-start: 40px;
    appearance: none;
    cursor: pointer;
}

.icon-wrapper ion-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    --ionicon-stroke-width: 50px;
    pointer-events: none;
}

.icon-wrapper ion-icon:first-child {
    left: 15px;
}

.icon-wrapper ion-icon:last-child {
    right: 10px;
}


 
.preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--black-2);
    z-index: 10;
    display: grid;
    place-content: center;
    justify-items: center;
    transition: var(--transition-2);
    display: none;
}

.preload > * {
    transition: var(--transition-1);
}

.preload.loaded > * {
    opacity: 0;
}

.preload.loaded {
    transition-delay: 250ms;
    transform: translateY(100%);
}

.circle {
    width: 112px;
    height: 112px;
    border-radius: var(--radius-circle);
    border: 3px solid var(--white);
    border-block-start-color: var(--black-1);
    margin-block-end: 45px;
    animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0); 
    }
    100% {
        transform: rotate(1turn);
    }
}



.header .btn {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: var(--black);
    z-index: 4;
    border-block-end: 1px solid var(--white-opa-10);
    transition: var(--transition-1);
}

.header.active {
    background-color: var(--black-2);
    border-color: var(--black-opa-15);
}

.header.hide {
    transform: translateY(-100%);
    transition-delay: 250ms;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.nav-open-btn {
    padding: 12px;
    padding-inline-end: 0;
}

.nav-open-btn .line {
    width: 30px;
    height: 2px;
    background-color: var(--white);
    margin-block: 4px;
}

.navbar {
    position: fixed;
    background-color: var(--black-1);
    top: 0;
    left: -360px;
    bottom: 0;
    max-width: 360px;
    width: 100%;
    padding-inline: 30px;
    padding-block-end: 50px;
    overflow-y: auto;
    visibility: hidden;
    z-index: 2;
    transform: var(--transition-2);
}

.navbar.active {
    visibility: visible;
    transform: translateX(360px);
}

.navbar .close-btn {
    color: var(--white);
    border: 1px solid currentColor;
    padding: 4px;
    border-radius: var(--radius-circle);
    margin-inline-start: auto;
    margin-block: 30px 20px;
}

.navbar .close-btn ion-icon {
    --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
    color: var(--grey);
}

.navbar .logo {
    max-width: max-content;
    margin-inline: auto;
    margin-block-end: 60px;
}

.logo img {
  height: 80px;
}

.navbar-list {
    border-block-end: 1px solid var(--white-opa-20);
    margin-block-end: 100px;
}

.navbar-item {
    border-block-start: 1px solid var(--white-opa-20);
}

.navbar-link {
    position: relative;
    font-size: var(--size-label-2);
    text-transform: uppercase;
    padding-block: 10px;
    max-width: unset;
}

.navbar-link::after {
    display: none;
}

.navbar-link .span {
    transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
    color: var(--white-opa-20);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator {
    opacity: 1;
}

.navbar-title {
    margin-block-end: 15px;
}

.navbar-text {
    margin-block: 10px;
}

.navbar .body-4 {
    color: var(--silver);
}

.sidebar-link {
    transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
    color: var(--red);
}

.navbar .text-center .separator {
    margin-block: 30px;
    margin-inline: auto;
}

.navbar .contact-label {
    margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
    background-color: var(--white-opa-10);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--black-opa-80);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-2);
    z-index: 1;
}

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

.back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--white);
    color: var(--black-2);
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    transition: var(--transition-1);
    opacity: 0;
    visibility: hidden;
    z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
    background-color: var(--grey);
    color: var(--white);
}

.back-top-btn.active {
    opacity: 1;
    visibility: visible;
}



.custom-slider {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 110px auto 0 auto;
  overflow: hidden;
  background-color: transparent;
  min-height: 230px;
  max-height: fit-content;
}

.slider-track {
  position: relative;
  background-color: transparent;
  width: 100%;
  height: 500px;
}

.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 36px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff8;
  border: 1px solid #fff;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}

.dot.active {
  background: var(--black);
  border-color: var(--white);
}

.title-wrapper {
    margin-block-end: 32px;
}

.title-wrapper.business-wrapper {
    margin-block-end: 0px;
}

.title-wrapper.don-wrapper {
    margin-block-end: 0px;
}

.img-holder {
    aspect-ratio: 585 / 390;
    background-color: transparent;
    overflow: hidden;
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card {
    max-width: 585px;
    border-radius: 18px;
    overflow: hidden;
    background-color: var(--black-2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.card:where(:hover, :focus-within) {
    box-shadow: 0 2px 30px rgba(199, 199, 199, 0.2);
}

.card:where(:hover, :focus-within) .img-cover {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.card-banner {
    position: relative;
}

.card-banner .img-cover {
    transition: transform 0.5s ease;
}

.card-content {
    padding: 12px 10px 15px;
}

.card-content-top {
    width: 100%;
    overflow: hidden;
}

.title-date {
    float: right;
    line-height: var(--lineHeight-2);
    font-size: var(--size-label-2);
    color: var(--silver);
}

.title-date.active {
    padding: 4px 8px;
    color: var(--white);
    border-radius: var(--radius-24);
    border: 1px solid var(--white);
}

.card-title {
    margin-block: 8px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-title:where(:hover, :focus-within) {
    text-decoration: underline;
}

.card-text {
    color: var(--silver);
    line-height: var(--lineHeight-4);
    max-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.akcije .section-title {
    margin-block: 8px 16px;
}

.akcije.main {
    margin-top: 120px;
}


.akcije-link {
    display: inline;
    color: var(--white);
}

.akcije-link:is(:hover, :focus) {
    color: var(--white-opa-20);
}

.title-date-akcije {
    position: relative;
    justify-self: flex-end;
    line-height: var(--lineHeight-2);
    font-size: var(--size-label-2);
    color: var(--white);
    margin-bottom: 20px;
}

.title-date-akcije.active {
    padding: 4px 8px;
    color: var(--white);
    border-radius: var(--radius-24);
    border: 1px solid var(--white);
}

.post-image {
    max-width: 80%;
    border-radius: var(--radius-24) var(--radius-24) 0 0;
    display: block;
    margin: 0 auto 10px;
}

.help-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 16px;
}


.title-large {
    font-size: var(--size-label-1);
    line-height: var(--lineHeight-2);
    float: left;
}

.title-small {
    font-size: var(--size-body-4);
}

.body-medium {
    font-size: var(--size-label-2);
}

.btn-link {
    color: var(--white);
    font-size: var(--size-label-2);
    font-weight: var(--fontWeight-500);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
}

.btn-link ion-icon {
    font-size: var(--size-label-2);
}

.btn-link:is(:hover, :focus) {
    color: var(--grey);
}

.about.main {
    margin-top: 120px;
    margin-bottom: 30px;
}

.about-content {
    margin-bottom: 50px;
}

.about .section-subtitle {
    margin-bottom: 10px;
}

.about .section-title {
    margin-bottom: 20px;
}

.about-text, .akcije-text {
    font-size: var(--size-label-1);
    line-height: var(--lineHeight-5);
    margin-bottom: 20px;
}

.about-list {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-item-icon {
    background: var(--summer-blue);
    color: var(--white-1);
    font-size: 26px;
    padding: 16px;
    border-radius: 50%;
    margin-top: 5px;
}

.about-item-title {
    color: var(--dark-gray);
    font-weight: var(--fontWeight-600);
    margin-bottom: 5px;
}

.section.donate {
    margin-bottom: 20px;
}

.donate-banner:where(:hover, :focus-within) {
    box-shadow: 0 4px 30px rgba(124, 124, 124, 0.1);
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.business.main {
    margin-top: 120px;
    margin-bottom: 30px;
}

.business-list-title {
    color: var(--white);
    font-size: var(--size-body-3);
    font-weight: var(--weight-bold);
    margin-top: 30px;
    margin-bottom: 10px;
}

.business-link {
    color: var(--white);
    font-size: var(--size-label-1);
    line-height: var(--lineHeight-5);
    padding-block: 2px;
}

.business .business-link:is(:hover, :focus) {
    color: var(--white-opa-20);
}

.donate.main {
    margin-top: 120px;
    margin-bottom: 30px;
}

.donate-subtitle {
    margin-bottom: 10px;
}

.donate .container .section-title {
    margin-bottom: 20px;
}

.donate-text {
    line-height: var(--lineHeight-4);
    margin-bottom: 20px;
}

.devizni {
    margin: 30px 0;
}

.donate-text.pp:is(:hover, :focus-visible) {
    color: grey
}

.footer {
    background-color: var(--black-2);
    color: var(--light-gray);
    padding-block: 40px;
}

.footer-top {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-list-title {
    color: var(--white);
    font-size: var(--size-body-3);
    font-weight: var(--weight-bold);
    margin-bottom: 10px;
}

.footer-link {
    color: var(--white);
    font-size: var(--size-label-1);
    padding-block: 2px;
}

.footer .footer-link:is(:hover, :focus) {
    color: var(--white-opa-20);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-brand .social-link {
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-1);
}

.social-list {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}

.social-link ion-icon {
    color: var(--white);
}

.social-link:is(:hover, :focus) ion-icon {
    color: var(--white-opa-20);
}

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

.footer-text {
    margin: 0; 
    font-size: var(--size-label-1);
    line-height: var(--lineHeight-1);
}

.footer-text.bold {
    font-weight: var(--weight-bold);
}

.copyright {
    font-size: var(--size-label-2);
    color: var(--grey);
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 260px;
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 5;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 0.4s ease;
  pointer-events: auto;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: grey;
}

/* Navigation */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}

.prev:hover, .next:hover {
  color: grey;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}




@media (max-width: 700px) {
    .section-title {
        font-size: 1.8rem;
    }
    .slider-track { height: 300px; }
    .slide-caption { padding: 14px 10px 22px 10px; }
    .slide-caption h2 { font-size: 1.2rem; }
    .slide-caption p { font-size: 0.9rem; }
    .slider-dots { bottom: 26px; left: 50%; transform: translateX(-50%); }
    .help-list { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 16px;
    }
    .donate-wrapper {
        width: 100%;
    }
    .donate-banner img {
        width: 100%;
    }

    .lightbox {
        flex-direction: column; /* stack vertically */
    }

    .prev, .next {
        font-size: 35px;
        padding: 5px;
    }

    .prev {
        left: 20px;
    }

    .next {
        right: 20px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-auto-rows: 150px;
    }

    .post-image {
        max-width: 100%;
    }
}

@media (max-width: 500px) {
  .slider-track { height: 80vw; }
  .slide-caption { padding: 14px 10px 22px 10px; }
  .slide-caption h2 { font-size: 1.2rem; }
  .slide-caption p { font-size: 0.9rem; }
  .slider-dots { bottom: 20px; left: 50%; transform: translateX(-50%); }
  .footer {
    justify-content: center;
    align-items: center;
  }
}




@media(min-width: 575px) {
    :root {
        --size-body-2: 2rem;
    }


    .header.active {
        top: 0;
    }

    .header .btn {
        display: block;
        margin-inline-start: auto;
    }


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

@media(min-width: 768px) {
    .container {
        max-width: 750px;
        margin-inline: auto;
    }

    .containerM {
        max-width: 750px;
        margin-inline: auto;
    }

    .grid-list {
        grid-template-columns: 1fr 1fr;
    }

    .navbar-list {
        margin-inline: 30px;
    }
}

@media(min-width: 992px) {
    :root {
        --section-space: 10px;
    }

    .container {
        max-width: 980px;
    }

    .containerM {
        max-width: 980px;
    }

    .header .container {
        max-width: 980px;
    }

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

    .about-content {
        margin-bottom: 0;
    }

    .donate-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        align-content: center;
    }

    .donate-banner {
        width: 600px;
    }

    .donate .dinarski {
        display: grid;
        grid-template-columns: 0.4fr 1fr;
        align-items: center;
    }
}

@media(min-width: 1200px) {
    :root {
        --size-title-2: 2.5rem;
    }



    .container {
        max-width: 1150px;
    }

    .containerM {
        max-width: 1150px;
    }

    .nav-open-btn, .navbar > *:not(.navbar-list), .header .overlay {
        display: none;
    }

    .header .container {
        max-width: 1150px;
    }

    .navbar, .navbar.active, .navbar-list {
        all: unset;
    }

    .navbar, .navbar.active {
        margin-inline: auto 20px;
    }

    .navbar-list {
        display: flex;
        gap: 30px;
    }

    .navbar-item {
        border-block-start: none;
    }

    .navbar .separator {
        display: none;
    }

    .navbar-link:is(:hover, :focus-visible, .active) .span {
        transform: unset;
    }

    .navbar-link {
        font-weight: var(--weight-bold);
        letter-spacing: var(--letterSpacing-1);
    }

    .navbar-link::after {
        display: block;
    }

    .navbar-link.active::after {
        transform: scaleX(1);
        opacity: 1;
    }

    .header .btn {
        margin-inline-start: 0;
    }
}