/* =========================================================
   MHRA WEBSITE – CLEAN iOS-LIKE LAYOUT
   ========================================================= */

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --mhra-navy: #0f172a;
  --mhra-orange: #f97316;
  --mhra-orange-soft: #fed7aa;
  --mhra-border: #e5e7eb;
  --mhra-text: #111827;
  --mhra-muted: #6b7280;
  --mhra-bg-noise: #fdfbf7;
  --mhra-card-bg: #ffffff;
}

/* BASE */
html {
  scroll-behavior: smooth;
}
/* HOME HERO BANNER
   --------------------------------------------------------- */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 0;              /* padding e bën inner wrapper-i */
  background: transparent; /* që të mos mbulohet banner-i */
  box-shadow: none;        /* opsionale: karta pa hijen standarde */
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/banner.png"); /* banner.png 1920x650 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.78); /* errëson pak që teksti të lexohet bukur */
  transform: scale(1.02);  /* pak zoom për efekt më “premium” */
}

/* kuti e bardhë transparent/ios-style mbi banner */
.home-hero__content {
  position: relative;
  padding: 3rem 3rem 3.5rem;
  border-radius: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

/* Home hero – imazhi në formë elipse, si landing modern */
.home-hero__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.home-hero__media img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.45);
  clip-path: ellipse(130% 100% at 100% 0%); /* pjesë rrethore sipër djathtas */
}


/* Ngjyra speciale për tekstin mbi foto */
.home-hero .hero__kicker {
  color: var(--mhra-orange-soft);
}

.home-hero .hero__title {
  color: #ffffff;
}

.home-hero .hero__subtitle {
  color: #e5e7eb;
}

.home-hero .hero__meta {
  color: #e5e7eb;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .home-hero__content {
    padding: 2.25rem 1.5rem 2.5rem;
    border-radius: 24px;
    margin-inline: 1rem;
  }
}
/* HERO bold text */
.hero__subtitle {
  font-weight: 600; /* bold */
}

.hero__meta span {
  font-weight: 700; /* extra bold */
}
/* White text for "Повеќе за нас" only inside hero */
.home-hero .btn--outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.home-hero .btn--outline:hover {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
  border-color: #ffffff;
}


body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--mhra-text);
  line-height: 1.6;
  background-color: var(--mhra-bg-noise);

  /* Noise texture si “paper” */
  background-image: url("../img/mhra_noise_paper.png");
  background-repeat: repeat;
  background-size: 400px 400px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* LAYOUT – iOS STYLE SECTIONS
   --------------------------------------------------------- */

/* Çdo section është një kartë e bardhë, e rrumbullakosur,
   në mes të faqes, me hapsirë gri/noise rreth saj. */

.section {
  padding: 0; /* padding kontrollohet nga .section-shell */
}

.section-shell {
  max-width: 1120px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  border-radius: 32px;
  background-color: var(--mhra-card-bg);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
}

/* Hero section pak më i madh */
.section-shell--hero {
  margin-top: 1.75rem;
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

/* Separator grafik midis section-eve */
.section-break {
  max-width: 1120px;
  margin: 1.5rem auto 1.5rem;
}

.section-break img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mund të kesh edhe variant më të vogël nëse do */
.section-break--small {
  max-width: 720px;
}

/* HEADER & NAV
   --------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(253, 251, 247, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.nav-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.nav__logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;             /* më shumë distancë mes linkeve */
}

.nav__link {
  font-size: 0.79rem;
  font-weight: 500;
  color: var(--mhra-muted);
  text-decoration: none;
  padding: 0.4rem 1rem;    /* më shumë “air” rreth tekst-it */
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}


.nav__link:hover {
  background-color: #e5e7eb;
}

.nav__link--active {
  background-color: var(--mhra-navy);
  color: #ffffff;
}

.nav__lang {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.75rem;
  font-size: 0.85rem;
  color: var(--mhra-muted);
}

.nav__cta {
  margin-left: 0rem;
}

/* Burger (mobile) */
.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav__toggle-bar {
  width: 16px;
  height: 2px;
  background-color: var(--mhra-text);
  border-radius: 999px;
  position: relative;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: var(--mhra-text);
  border-radius: 999px;
}

.nav__toggle-bar::before {
  top: -5px;
}

.nav__toggle-bar::after {
  top: 5px;
}


/* BUTTONS
   --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.18s, color 0.18s, transform 0.1s,
    box-shadow 0.18s;
}

.btn--primary {
  background-color: var(--mhra-orange);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.45);
}

.btn--primary:hover {
  background-color: #ea580c;
  transform: translateY(-1px);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid #d1d5db;
  color: var(--mhra-text);
}

.btn--outline:hover {
  background-color: #e5e7eb;
}

/* SECTION HEADER & GRID
   --------------------------------------------------------- */

.section__header {
  margin-bottom: 2rem;
}

.section__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 0.95rem;
  color: var(--mhra-muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* HERO
   --------------------------------------------------------- */

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mhra-orange);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--mhra-muted);
}

.hero__card {
  background: linear-gradient(135deg, #0f172a, #1f2937);
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: #e5e7eb;
}

/* CARDS
   --------------------------------------------------------- */

.card {
  background-color: var(--mhra-card-bg);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--mhra-border);
}

.card__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mhra-muted);
  margin-bottom: 0.35rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.card__meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.card__body {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background-color: #eff6ff;
  color: #1d4ed8;
}

/* FORMS
   --------------------------------------------------------- */

.form {
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  gap: 0.75rem;
}

.form__label {
  font-size: 0.85rem;
  font-weight: 500;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background-color: #ffffff;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

/* TABLES
   --------------------------------------------------------- */

.table-wrapper {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.table th,
.table td {
  border: 1px solid var(--mhra-border);
  padding: 0.5rem 0.75rem;
}

.table th {
  background-color: #f3f4f6;
  text-align: left;
}

/* FOOTER
   --------------------------------------------------------- */

.footer {
  margin-top: 3rem;
  padding: 2rem 0 1.5rem;
  background-color: var(--mhra-navy);
  color: #e5e7eb;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 1rem;
}

.footer__top {
  display: grid;
  gap: 1.5rem;
}

.footer__brand {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer__links a {
  color: #9ca3af;
}

.footer__links a:hover {
  color: #e5e7eb;
}

.footer__bottom {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    height: auto;
    padding-block: 0.35rem;
  }

  .nav__logo-img {
    height: 52px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    display: none;
    width: 100%;
  }

  .nav__menu.nav__menu--open {
    display: block;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.75rem 0.75rem 1rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  }

  .nav__menu.nav__menu--open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
  }

  .nav__links .nav__link {
    width: 100%;
    padding: 0.4rem 0.9rem;
    font-size: 0.95rem;
  }

  .nav__menu.nav__menu--open .nav__lang {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--mhra-border);
    font-size: 0.9rem;
  }

  .nav__menu.nav__menu--open .nav__cta {
    display: flex;
    width: 100%;
    margin-top: 0.75rem;
  }

  .nav__menu.nav__menu--open .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .section-shell,
  .section-shell--hero {
    margin-inline: 1rem;
    padding-inline: 1.25rem;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    padding-inline: 1rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FIX: Nuk lejojmë zoom / jump kur klikohet nav / butona
   ========================================================= */

/* Mbaj font-size 16px = pa auto-zoom në mobile dhe konsistent në desktop */
html,
body {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  
}

/* Burger button – asnjë animim/zoom në klik/focus */
.nav__toggle,
.nav__toggle:focus,
.nav__toggle:active {
  outline: none !important;
  border: 1px solid #d1d5db !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Shiritat e burgerit mos lëvizin/transformohen në klik */
.nav__toggle-bar,
.nav__toggle-bar::before,
.nav__toggle-bar::after {
  transform: none !important;
}

/* Butonët e gjuhës – bëji neutral që të mos shkaktojnë reflow/zoom */
.nav__lang-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

/* Mos lejo asnjë efekt në focus/active që mund të ndryshojë madhësinë */
.nav__lang-btn:focus,
.nav__lang-btn:active {
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Stili i gjuhës aktive (vetëm ngjyrë/font-weight, pa madhësi) */
.nav__lang-btn.nav__lang--active {
  font-weight: 600;
  color: var(--mhra-navy);
}

/* Horizontal decorative strip */
.h-strip {
  width: 100%;
  max-width: 1120px;
  margin: 2rem auto;
}

.h-strip img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Variant kompakt për section-shell (më pak hapsirë lart/poshtë) */
.section-shell--compact {
  margin-top: 0rem;
  margin-bottom: 0rem;
}


/* Strip horizontal shumë afër seksioneve */
.h-strip--tight {
  max-width: 1120px;
  margin: 0.25rem auto;   /* shumë pak hapsirë sipër/poshtë */
}

.h-strip--tight img {
  width: 100%;
  height: auto;
  display: block;
}

/* BLOG MODAL */
.blog-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.blog-modal--open {
  display: block;
}

.blog-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.blog-modal__content {
  position: relative;
  max-width: 720px;
  margin: 4rem auto;
  padding: 2rem 2rem 1.75rem;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
  z-index: 61;
}

.blog-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: #f9fafb;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
}

.blog-modal__category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.blog-modal__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.blog-modal__meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.blog-modal__body p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #374151;
}

.blog-modal__links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .blog-modal__content {
    margin: 3rem 1rem;
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

/* BLOG MODAL (READ MORE POPUP) */
.blog-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 60;
}

.blog-modal--open {
  display: block;
}

.blog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}

.blog-modal__content {
  position: relative;
  max-width: 720px;
  margin: 4rem auto;
  padding: 2rem 2.25rem;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
}

.blog-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

.blog-modal__meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-modal__body p {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #374151;
}


.blog__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .blog__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.blog-modal {
  display: none;
}

.blog-modal.is-visible {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
/* BLOG GRID RESPONSIVE */
.grid.grid--3 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* BLOG cards */
.card--blog {
  display: flex;
  flex-direction: column;
}

/* imazhi brenda kartës */
.card--blog .card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

/* tekst preview i kufizuar në disa rreshta */
.card__text--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* ~3 rreshta */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blog-modal {
  position: fixed;
  inset: 0;
  display: none;              /* fshehur default */
  z-index: 9999;
}

.blog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.blog-modal__dialog,
.blog-modal__content {
  position: relative;
  max-width: 720px;
  margin: 4rem auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  max-height: calc(100vh - 8rem);
  overflow-y: auto;
}

/* Teksti во модалот да се прекршува нормално */
.blog-modal__body,
#blog-modal-body {
  white-space: normal;
  word-wrap: break-word;   /* për shfletuesit më të vjetër */
  overflow-wrap: anywhere; /* për shfletuesit modernë */
}

/* Sponsor section */
.sponsor-card {
  width: 100%;
  max-width: 960px;
  margin: 60px auto;
  padding: 3px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ffd26f, #ff7b7b);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.sponsor-card__inner {
  border-radius: 24px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card__logo {
  width: 100%;
  max-width: 1000px;
  max-height: 360px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .sponsor-card__inner {
    padding: 18px 20px;
  }

  .sponsor-card__logo {
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .sponsor-card {
    margin: 40px auto;
  }

  .sponsor-card__inner {
    padding: 14px 16px;
  }

  .sponsor-card__logo {
    max-height: 200px;
  }
}


.blog-banner {
  width: 100%;
  max-width: 900px;
  margin: 32px auto 56px auto;
}

.blog-banner__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.16);
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-banner {
    max-width: 100%;
    padding: 0 14px;
    margin: 20px auto 36px auto;
  }

  .blog-banner__img {
    border-radius: 20px;
  }
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
  will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ========== MODERNE IMAGE SHAPES ========== */
.img-shape-blob {
  border-radius: 48% 52% 60% 40% / 40% 60% 50% 50%;
  overflow: hidden;
  object-fit: cover;
}

.img-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-hover-lift:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

/* HERO LAYOUT */
.home-hero {
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.home-hero__visual {
  position: relative;
  min-height: 260px;
}

.home-hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.7;
}
.home-hero__blob--primary {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, #f97316, #b91c1c);
  top: 0;
  right: 10%;
}
.home-hero__blob--secondary {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 70% 70%, #fed7aa, #f97316);
  bottom: 0;
  left: 5%;
}

.home-hero__photo-shell {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.3);
}

.home-hero__photo {
  width: 100%;
  height: auto;
  display: block;
}




/* SPONSOR CARD (qendruar) */
.sponsor-card {
  width: 100%;
  max-width: 960px;
  margin: 40px auto 60px auto;
  padding: 3px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ffd26f, #ff7b7b);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.sponsor-card__inner {
  border-radius: 24px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card__logo {
  width: 100%;
  max-width: 1000px;
  max-height: 360px;
  height: auto;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .home-hero__visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .sponsor-card {
    margin: 32px auto 40px auto;
  }
  .sponsor-card__inner {
    padding: 16px 18px;
  }
  .home-hero__photo-shell {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .sponsor-card__logo {
    max-height: 220px;
  }
}
/* ABOUT HERO LAYOUT */
.about-hero {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-hero__intro {
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
  color: #4b5563;
  line-height: 1.6;
}

.about-hero__cards {
  margin-top: 0.75rem;
}

/* Visual side */
.about-hero__visual {
  position: relative;
  min-height: 260px;
}

.about-hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.7;
}
.about-hero__blob--primary {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, #f97316, #b91c1c);
  top: 0;
  right: 5%;
}
.about-hero__blob--secondary {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 70% 70%, #fed7aa, #f97316);
  bottom: 0;
  left: 10%;
}

.about-hero__photo-shell {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.28);
}

.about-hero__photo {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-hero__visual {
    order: -1;
  }

  .about-hero__photo-shell {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .about-hero__intro {
    font-size: 0.9rem;
  }
}
/* Lista moderne për Е-Весник & Архива */
.list-modern {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-modern li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.95rem;
  color: #111827;
}

.list-modern li::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #b91c1c);
}

/* Gallery cards – pak më vizuale */
.gallery-card {
  position: relative;
  overflow: hidden;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background: radial-gradient(circle at 0 0, #f97316, transparent 55%),
    radial-gradient(circle at 100% 100%, #b91c1c, transparent 60%);
  pointer-events: none;
}

.gallery-note {
  max-width: 640px;
}


/* Full-width layout overrides */
.header,
.nav-wrapper,
.section,
.section-shell,
.footer {
  width: 100%;
}

.section-shell,
.nav-wrapper,
.footer__inner {
  max-width: 100%;
  margin: 0;
  padding-inline: 4vw; /* pak hapësirë nga skajet */
}
.section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.section-shell {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/* Base responsive tweaks */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section__grid,
.hero__grid,
.home-hero__grid,
.grid {
  width: 100%;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .hero__grid,
  .home-hero__grid,
  .section__grid,
  .grid {
    display: block;
  }

  .nav__menu {
    width: 100%;
  }

  .nav,
  .header {
    padding-inline: 4vw;
  }
}


/* ===============================
   UPCOMING EVENTS – SEMI-CIRCLE CAROUSEL
   =============================== */

.section--events {
  padding-block: 4rem;
}

.events-circle-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding-block: 2rem;
}

/* TRACK */
.events-circle-carousel__track {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  width: max-content;                /* prevents flex from shrinking */
  animation: eventsCircleScroll 13s linear infinite; /* desktop speed */
  will-change: transform;
}

/* pause on hover (desktop only, fine) */
.events-circle-carousel__track:hover {
  animation-play-state: paused;
}

/* ITEM */
.event-pill {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 190px;
  max-width: 210px;
  height: 180px;
  border-radius: 0 0 999px 999px;
  overflow: hidden;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;                    /* IMPORTANT: no shrinking */
}

/* Overlay */
.event-pill__overlay{
  position:absolute;
  inset:0;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.65),   /* poshtë – hije më e fortë */
    rgba(0,0,0,.25),
    rgba(0,0,0,.05),   /* lart – gati transparent */
    rgba(0,0,0,0)
  );
  color:#000000;
  z-index:2;
}


.event-pill__info {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-pill__type {
  opacity: 0.85;
}

.event-pill__title {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Date chip */
.event-pill__date{
  position:absolute;
  left:50%;
  bottom:1px;              /* ⬅️ më poshtë, tek fillimi i harkut */
  transform:translateX(-50%);
  width:58px;
  height:58px;
  border-radius:999px;
  background:rgba(17,24,39,.95);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 26px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  z-index:3;
}


.event-pill__month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.event-pill__day {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

/* INFINITE SCROLL
   Make sure the track has items duplicated (A B C A B C) */
@keyframes eventsCircleScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Hover tweak */
.event-pill:hover .event-pill__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.25)
  );
  transform: translateY(-2px);
}

/* MOBILE – keep YOUR speeds: 3s */
@media (max-width: 768px) {
  .events-circle-carousel__track {
    gap: 1.25rem;
    animation-duration: 13s;          /* your value */
  }

  .event-pill {
    min-width: 50vw;
    max-width: 50vw;
    height: 150px;
  }
}

/* === Informative posts modal & gallery === */

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.info-modal--open {
  display: block;
}

.info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}

.info-modal__dialog {
  position: relative;
  max-width: 960px;
  margin: 4rem auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: #fff;
  border-radius: 999px;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.15);
}

.info-modal__gallery {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #f3f4f6;
  padding: 0.25rem;
  display: none;
}

.info-modal__gallery[data-has-images="true"] {
  display: block;
}

.info-modal__viewport {
  overflow: hidden;
  border-radius: 16px;
}

.info-modal__track {
  display: flex;
  transition: transform 0.4s ease;
}

.info-modal__slide {
  min-width: 100%;
  max-height: 420px;
}

.info-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-modal__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-modal__arrow--left {
  left: 0.75rem;
}

.info-modal__arrow--right {
  right: 0.75rem;
}

.info-modal__content {
  padding-inline: 0.25rem;
}

.info-modal__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.info-modal__subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.info-modal__body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #111827;
}

.info-modal__body p + p {
  margin-top: 0.75rem;
}

.info-card__image-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.info-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.info-card__more {
  margin-top: 0.75rem;
  padding-inline: 0;
}

/* prevent body scroll when modal open */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .info-modal__dialog {
    margin: 3rem 1rem;
    padding: 1.25rem 1rem 1.5rem;
    max-height: calc(100vh - 3rem);
    overflow: auto;
  }

  .info-modal__slide {
    max-height: 260px;
  }
}

/* FIX – text overflow inside info modal */
.info-modal__body,
.info-modal__content,
.info-modal__text {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.info-modal__body p {
  white-space: normal;
}
.event-pill:empty { background-size: cover; background-position: center; }

/* ===============================
   SPONSORS – LOGO MARQUEE
   =============================== */

.section--sponsors { padding-block: 3.5rem; }

.sponsors-marquee{
  --duration: 40s; /* rrite për më ngadalë */
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.25rem 0;
}

.sponsors-marquee__track{
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: center;
  animation: sponsorsScroll var(--duration) linear infinite;
  will-change: transform;
}

.sponsors-marquee:hover .sponsors-marquee__track{ animation-play-state: paused; }

.sponsors-marquee__group{
  display: flex;
  gap: 2rem;
  align-items: center;
  flex: 0 0 auto;
}

.sponsor-logo{
  flex: 0 0 auto;
  height: 64px;
  width: 160px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.sponsor-logo img{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(10%);
  opacity: .95;
}

@keyframes sponsorsScroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px){
  .sponsors-marquee{ --duration: 55s; }
  .sponsors-marquee__track, .sponsors-marquee__group{ gap: 1rem; }
  .sponsor-logo{ width: 140px; height: 56px; border-radius: 14px; }
}

/* Sponsors override – no overlay, centered logo */
.section--sponsors .event-pill {
  align-items: center;
  justify-content: center;
}

.section--sponsors .event-pill__overlay {
  display: none;
}

.events-circle-carousel__track {
  animation-duration: 25s; /* rrite p.sh. 35s ose 45s */
}

/* SPONSORS – normalize logos */
.section--sponsors .event-pill{
  background-color:#fff;          /* gjithmonë e bardhë */
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;        /* logo të mos priten */
  padding:16px;                   /* hapësirë rreth logos */
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* Web */
.section--sponsors .event-pill{
  min-width:200px;
  max-width:200px;
  height:130px; /* më e ulët se events, më mirë për logo */
  border-radius:0 0 999px 999px; /* gjysmë-rreth poshtë */
}

/* Mobile */
@media (max-width:768px){
  .section--sponsors .event-pill{
    min-width:70vw;
    max-width:70vw;
    height:120px;
    padding:14px;
  }
}
.section--sponsors .event-pill__overlay{ display:none !important; }

.section--sponsors .sponsor-pill{
  background:#fff;
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.section--sponsors .sponsor-img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

/* nëse do më “uniform” edhe më shumë */
.section--sponsors .sponsor-pill{
  min-width:200px;
  max-width:200px;
  height:130px;
  border-radius:0 0 999px 999px;
}

@media (max-width:768px){
  .section--sponsors .sponsor-pill{
    min-width:70vw;
    max-width:70vw;
    height:120px;
    padding:14px;
  }
}

.section--sponsors .section-shell {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding-bottom: 1.5rem;
}
.section--sponsors .events-circle-carousel {
  margin-top: -1.25rem; /* e lidh vizualisht me titullin */
}


.section--sponsors .event-pill {
  height: 150px;
  min-width: 180px;
  max-width: 200px;
}

.section--sponsors .event-pill::after {
  opacity: 0.35; /* nëse ke shadow / border */
}

.section--sponsors .section__title {
  font-size: 1.6rem;
}

.section--sponsors .section__subtitle {
  max-width: 520px;
}

/* container */
.sponsors-header {
  display: flex;
  justify-content: flex-start;
  margin-left: 1.5rem; /* larg nga qoshi i majtë */
}

/* pill style */
.sponsors-pill {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px; /* pill i butë */
  background: linear-gradient(135deg, #ff8a00, #ff6a00);
  box-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
}

/* title */
.sponsors-pill .section__title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

/* subtitle */
.sponsors-pill .section__subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
}

/* SPONSORS: floating logos (no semi-arc, no card) */
.section--sponsors .sponsor-pill{
  min-width: 190px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;              /* no padding box */
  background: transparent; /* no white holder */
  border: 0;
  box-shadow: none;
  border-radius: 0;        /* removes semi-circle */
  overflow: visible;
}

.section--sponsors .sponsor-img{
  max-width: 210px;  /* control logo size */
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* mobile */
@media (max-width: 768px){
  .section--sponsors .sponsor-pill{
    min-width: 60vw;
    height: 80px;
  }
  .section--sponsors .sponsor-img{
    max-width: 220px;
    max-height: 60px;
  }
}
/* BIGGER READ MORE / OUTLINE BUTTONS */
.btn.btn--outline {
  padding: 0.75rem 1.5rem;     /* më të mëdha */
  font-size: 0.95rem;          /* tekst më i lexueshëm */
  border-width: 2px;
  border-radius: 999px;        /* më premium */
  min-height: 44px;            /* touch friendly */
}

/* edhe pak më të mëdha në mobile */
@media (max-width: 768px) {
  .btn.btn--outline {
    width: 100%;               /* full width në mobile */
    justify-content: center;
    font-size: 1rem;
  }
}

/* UPCOMING EVENTS – OLD LOOK */
.events-circle-carousel .event-pill{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;

  width: 220px;
  height: 260px;

  border-radius: 0 0 160px 160px;
  overflow: hidden;

  background: #e5e7eb;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  text-decoration: none;
  transform: translateZ(0);
}

.events-circle-carousel .event-pill__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  filter: saturate(1.05);
}

/* rrethi me daten */
.events-circle-carousel .event-pill__date{
  position: absolute;
  bottom: 92px;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  background: #0f172a;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

.events-circle-carousel .event-pill__day{
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.events-circle-carousel .event-pill__month{
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: .08em;
  opacity: .85;
}

/* titulli poshte rrethit */
.events-circle-carousel .event-pill__content{
  position: relative;
  width: 100%;
  padding: 14px 16px 18px;
  text-align: center;
}

.events-circle-carousel .event-pill__title{
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;

  /* mos dalë jashtë */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* placeholder pa tekst */
.events-circle-carousel .event-pill--empty .event-pill__bg{
  opacity: 1;
  filter: none;
}

/* hover */
@media (hover:hover){
  .events-circle-carousel .event-pill:hover{
    transform: translateY(-6px);
    transition: .25s ease;
  }
}

/* EVENT pill - background + shadow */
.event-pill{
  position: relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-width:190px;
  max-width:210px;
  height:180px;
  border-radius:0 0 999px 999px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 40px rgba(0,0,0,.10);
}

/* dark overlay like the screenshot */
.event-pill__overlay{
  position:absolute;
  inset:0;
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:linear-gradient(to top, rgba(0,0,0,.70), rgba(0,0,0,.15));
  color:#000000;
}

/* top text */
.event-pill__info{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.event-pill__type{
  font-size:12px;
  opacity:.9;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.event-pill__title{
  font-size:14px;
  font-weight:700;
  line-height:1.2;
  max-width:90%;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
}

/* DATE circle like the screenshot */
.event-pill__date{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  width:58px;
  height:58px;
  border-radius:999px;
  background:rgba(17,24,39,.92);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 28px rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.15);
}

.event-pill__month{
  font-size:11px;
  text-transform:uppercase;
  opacity:.9;
  line-height:1;
}
.event-pill__day{
  font-size:18px;
  font-weight:800;
  line-height:1.1;
}
