html{
  overflow-x: auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #d97706 #0f172a;
}
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f8fafc;
  color: #1e293b;
  overflow-x:hidden;
}
*{
      scrollbar-width: thin;
  scrollbar-color: #d97706 #0f172a;

}
.container {
  margin: auto;
  padding: 20px;
}

/* Chrome, Edge, Opera, Safari (WebKit browsers) */
::-webkit-scrollbar {
  width: 14px;
  height: 14px; /* za horizontalni scrollbar */
}

::-webkit-scrollbar-track {
  background: #0f172a;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f59e0b, #d97706);
  border-radius: 999px;
  border: 3px solid #0f172a; /* daje "padding" efekat */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #d97706, #b45309);
}

::-webkit-scrollbar-corner {
  background: #0f172a; /* kad ima i horizontalni i vertikalni */
}
/* HEADER */
/* ================= HEADER ================= */

.header {
  background: #0f172a;
  color: white;
  position: relative;
}

/* Accent lines */
.header-accent-top,
.header-accent-bottom {
  height: 6px;
  background: linear-gradient(to right, transparent, #f59e0b, transparent);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-bar {
  width: 6px;
  height: 64px;
  background: linear-gradient(to bottom, #fbbf24, #d97706);
  border-radius: 999px;
}

.header-title {
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

.header-subtitle {
  margin-top: 6px;
  font-size: 18px;
  color: #94a3b8;
}

/* RIGHT */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* TIME CARD */
.time-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(30, 41, 59, 0.8);
  backdrop-filter: blur(6px);
  padding: 20px 30px;
  border-radius: 12px;
  border: 1px solid rgba(51, 65, 85, 0.6);
}

.time-icon {
  width: 26px;
  height: 26px;
  color: #f59e0b;
}

.time-separator {
  width: 1px;
  height: 40px;
  background: #475569;
}

.time-text {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 2px;
}

/* DATE CARD */
.date-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d97706, #b45309);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.date-day {
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.4);
  text-align: center;
}

.date-day div {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.date-info {
  display: flex;
  flex-direction: column;
}

.date-week {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fde68a;
}

.date-month {
  font-size: 14px;
  margin-top: 4px;
  color: #fffbeb;
}

/* SEARCH */
.search-wrapper {
  margin:0 20px 30px 20px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid #cbd5e1;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 18px;
  width: 100%;
  background-color:transparent;
}

/* ================= STREET VIEW ================= */

.streetview-wrapper{
    display:flex;
    justify-content:center;
  margin:0 20px 30px 20px;
}

.streetview-btn{

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 24px;

    border-radius:14px;

    font-size:16px;
    font-weight:600;

    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:white;

    border:2px solid #334155;

    cursor:pointer;

    transition:all 0.25s ease;

    box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

.streetview-icon i{
    width:20px;
    height:20px;
    color:#f59e0b;
}

.streetview-btn:hover{

    transform:translateY(-2px);

    border-color:#f59e0b;

    box-shadow:0 15px 30px rgba(0,0,0,0.35);

}

.streetview-btn:active{
    transform:translateY(0);
}

/* mobile */

@media(max-width:768px){

.streetview-btn{
    width:100%;
    justify-content:center;
}

}

/* ================= STREET VIEW FULLSCREEN OVERLAY ================= */

.streetview-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(4px);
    z-index: 999999;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.streetview-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.streetview-fullscreen-map {
    width: 100%;
    height: 100%;
}

/* CLOSE BUTTON */
.streetview-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000000;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;

    border-radius: 14px;
    border: 2px solid #334155;

    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: all 0.25s ease;

    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.streetview-close-btn i {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.streetview-close-btn:hover {
    transform: translateY(-2px);
    border-color: #f59e0b;
    box-shadow: 0 15px 30px rgba(0,0,0,0.45);
}

.streetview-close-btn:active {
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
    .streetview-close-btn {
        top: 12px;
        right: 12px;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 12px;
    }

    .streetview-close-btn span {
        display: none; /* na telefonu samo X ikonica */
    }
}
/* ================= MAP INFO CARD ================= */

.map-info-card {
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);
  border: 2px solid #334155;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  margin: 0 15px 40px 15px;
}

/* GRID LAYOUT */
.map-info-grid {
  display: grid;
  grid-template-columns: 150px 1fr 280px;
  align-items: center;
  gap: 30px;
}

/* LEFT ICON */
.map-info-icon {
  background: #d97706;
  color:white;
  padding: 20px;
  border-radius: 14px;
  width: fit-content;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.map-info-icon i {
  width: 32px;
  height: 32px;
  color: white;
}

/* CENTER */
.map-info-center {
  text-align: center;
}

.map-info-center h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 8px;
}

.map-info-center p {
  color: #94a3b8;
  font-size: 16px;
}

/* RIGHT SIDE */
.map-info-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

/* Stats */
.map-info-stats {
  text-align: center;
}

.stats-label {
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.stats-number {
  font-size: 28px;
  color: white;
  font-weight: 600;
}

/* Badge */
.map-info-badge {
  background: linear-gradient(to bottom right, #f59e0b, #d97706);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: 0.3s;
  text-align:center;
}

.map-info-badge:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* MAP */
.map-wrapper {
  background: white;
  padding: 15px;
  border: 5px solid #f59e0b;
  border-radius: 15px;
}

.map-container {
  position: relative;
  height:100%;
      width: 100%;

}

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

#markers {
  position: absolute;
  inset: 0;
}

.marker {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  transform: translate(-50%, -50%);
}

.red-block {
  margin-bottom: 30px;
}

.red-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.grob {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
}
.grob-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-grafika {
  width: 80%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* TOOLTIP */

.grob-item {
  position: relative;
  cursor: pointer;
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #0f172a;
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border:1px solid #d97706;

}


/* Active stanje */
.grob-item.active .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.matrix {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.matrix-row {
  display: flex;
  width: 100%;
  gap: 8px;
}

.corner,
.cell,
.header-cell {
  flex: 1;
  position: relative; /* ðŸ‘ˆ samo dodaj, ne briÅ¡i flex */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-weight: bold;
    transition: transform 0.3s ease, z-index 0.3s ease;

}
@media(max-width:1600px){
    .header-cell{
        font-size:12.1px;
    }
}
.cell.active {
  transform: scale(1.3);
  z-index: 10;
}
/* ================= FOOTER ================= */




.footer {
  background: #0f172a;
  color: white;
  position: relative;
  margin-top: 80px;
}

/* Top amber gradient */
.footer-top-line {
  height: 6px;
  background: linear-gradient(to right, #b45309, #f59e0b, #b45309);
}

/* Main content */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
}

/* Grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer section */
.footer-section {
  text-align: center;
}

/* Heading */
.footer-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-heading h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Text */
.footer-section p {
  color: #cbd5e1;
  font-size: 16px;
  margin: 6px 0;
  line-height: 1.6;
}

.footer-strong {
  color: #cbd5e1;
}

/* Optional smaller helper text */
.footer-small {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

/* Icon box */
.footer-icon-box {
  padding: 8px;
  background: rgba(217, 119, 6, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon-box i {
  width: 20px;
  height: 20px;
  color: #f59e0b;
}

/* ================= FOOTER LINKS / BRZA NAVIGACIJA ================= */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #f59e0b;
  transform: translateY(-1px);
}

.footer-links a:focus {
  outline: none;
  color: #f59e0b;
}

.footer-links a:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.45);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Bottom copyright */
.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid #1e293b;
  text-align: center;
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.6;
}

/* Bottom subtle gradient */
.footer-bottom-line {
  height: 2px;
  background: linear-gradient(to right, transparent, #334155, transparent);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .footer-grid {
    gap: 30px;
  }

  .footer-content {
    padding: 45px 30px;
  }
}

@media (max-width: 640px) {
  .footer {
    margin-top: 60px;
  }

  .footer-content {
    padding: 35px 20px;
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 30px;
  }

  .footer-heading h3 {
    font-size: 17px;
  }

  .footer-section p,
  .footer-links a {
    font-size: 15px;
  }

  .footer-bottom {
    font-size: 14px;
    padding-top: 20px;
  }
}

/* ================= NAV TABS ================= */

.nav-tabs-wrapper {
  padding: 40px 20px 0 20px;
  display: flex;
  justify-content: center;
}

.nav-tabs {
  background: white;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  width: 100%;
}

.nav-tab {
  padding: 28px 0;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-tab i {
  width: 20px;
  height: 20px;
}

/* ACTIVE TAB */
.nav-tab.active {
  background: #0f172a;
  color: white;
}


/* ================= GRAVE GRID ================= */

.grave-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(32, 1fr);
  grid-template-rows: repeat(3, 1fr);
  pointer-events: none;
}

/* Each grave svg */
.grave-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.9;
}




/* ================= PRELOADER ================= */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 20px;
}

.preloader-logo {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(14px);
  padding: 10px;
  box-sizing: border-box;
}

.preloader-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.preloader-spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255,255,255,0.18);
  border-top: 3px solid #f8fafc;
  border-radius: 50%;
  animation: preloaderSpin 0.9s linear infinite;
}

.preloader-box p {
  margin: 0;
  font-size: 15px;
  color: #e5e7eb;
  letter-spacing: 0.2px;
  font-weight: 500;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}
/*istorijat*/


/* HEADER */
.history-headerr {
  text-align: center;
  margin-bottom: 60px;
}

.history-headerr h1 {
  font-size: 48px;
  font-weight: 800;
}

.underline {
  width: 120px;
  height: 6px;
  background: #d97706;
  margin: 15px auto;
}

.history-headerr p {
  color: #64748b;
  font-size: 18px;
}

.history-card {
  width: 85%;
  margin: 30px auto;
}

.history-card-inner {
  background: #ffffff;
  border: 2px solid #0f172a;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.history-card-inner:hover {
  border-color: #d97706;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transform: translateY(-4px);
}

.history-card-inner.active {
  border-color: #d97706;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.history-card-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

.history-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.history-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.history-icon {
  min-width: 48px;
  height: 48px;
  background: #0f172a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
}

.history-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.history-year {
  display: inline-block;
  background: #d97706;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
}

.history-text h3 {
  margin: 0;
  color: #0f172a;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.history-description {
  margin: 14px 0 10px 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.history-details {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

.history-badge {
  display: inline-block;
  width: fit-content;
  background: #0f172a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.history-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #0f172a;
  display: block;
}

.history-quote-wrap {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.history-quote {
  background: linear-gradient(to right, #fef3c7, rgba(254, 243, 199, 0.45));
  border-left: 4px solid #d97706;
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
}

.history-quote p {
  margin: 0;
  color: #0f172a;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}

.history-actions {
  margin-top: 16px;
}

.history-btn {
  color: #0f172a; /* тамно плава/слично као текст */
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block; /* потребно за transform */
}

.history-btn:hover {
  color: #d97706; /* amber/narandzasta */
  transform: translateY(-1px);
}

.history-btn:active {
  transform: translateY(0);
  color: #b45309; /* тамнија нарandзаста за кликање */
}

/* Responsive */
@media (max-width: 900px) {
  .history-card-inner {
    grid-template-columns: 1fr;
  }

  .history-card-image img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .history-card-inner {
    padding: 18px;
    border-radius: 12px;
  }

  .history-header {
    flex-direction: column;
    gap: 12px;
  }

  .history-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
  }

  .history-text h3 {
    font-size: 22px;
  }

  .history-description {
    font-size: 15px;
  }

  .history-details {
    font-size: 14px;
  }

  .history-card-image img {
    height: 190px;
  }

  .history-quote p {
    font-size: 14px;
  }
}






/* kraj istorijat*/


/*poglavlje*/
/* =========================================================
   П О Г Л А В Љ Е  /  N H P
   Визуелно усклађено са istorijat.php
   Потпуно изоловане класе (nhp-)
   Српски (ијекавица, ћирилица)
========================================================= */

/* =========================================================
   ОМОТАЧ / ОСНОВНА СТРУКТУРА
========================================================= */
.nhp-shell {
  padding: 40px 20px 80px;
  background: transparent;
  color: #1e293b;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nhp-container {
  max-width: 1450px;
  margin: 0 auto;
}

.nhp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* =========================================================
   LUCIDE ИКОНЕ (опште класе)
   Користи: <i data-lucide="map-pinned"></i>
========================================================= */
.nhp-icon,
.nhp-meta-item i[data-lucide],
.nhp-backlink i[data-lucide],
.nhp-block-title i[data-lucide],
.nhp-doc-btn i[data-lucide],
.nhp-anchor-link i[data-lucide],
.nhp-sidecard-title i[data-lucide] {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
  flex-shrink: 0;
  vertical-align: middle;
}

.nhp-meta-item i[data-lucide] {
  width: 16px;
  height: 16px;
}

.nhp-doc-btn i[data-lucide] {
  width: 16px;
  height: 16px;
}

.nhp-backlink i[data-lucide] {
  width: 16px;
  height: 16px;
}

/* =========================================================
   ГОРЊА ТРАКА / НАЗАД ЛИНК
========================================================= */
.nhp-topbar {
  margin-bottom: 22px;
}

.nhp-backlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nhp-backlink:hover {
  color: #d97706;
  transform: translateY(-1px);
}

.nhp-backlink:active {
  color: #b45309;
  transform: translateY(0);
}

/* =========================================================
   HERO СЕКЦИЈА
   НАПОМЕНА: Ако касније будеш стављао динамичку слику из PHP-а,
   background URL из ове класе избаци и стави inline style у HTML.
========================================================= */
.nhp-hero {
  position: relative;
  overflow: hidden;
  border: 2px solid #0f172a;
  border-radius: 22px;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  margin-bottom: 32px;
  isolation: isolate;
}

.nhp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.88) 10%,
    rgba(15, 23, 42, 0.45) 55%,
    rgba(15, 23, 42, 0.12) 100%
  );
}

.nhp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 34px 34px 30px;
}

.nhp-hero-badge {
    color:white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nhp-hero-badge i {
  width: 28px;
  height: 28px;
  color: #fbbf24;
}

.nhp-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.28);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nhp-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  max-width: 980px;
}

.nhp-subtitle {
  margin: 16px 0 0;
  max-width: 850px;
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.75;
}

.nhp-short-description {
  margin: 16px 0 0;
  max-width: 880px;
  color: rgba(248, 250, 252, 0.92);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.nhp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.nhp-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   ГЛАВНИ САДРЖАЈ
========================================================= */
.nhp-main {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* =========================================================
   БЛОКОВИ / КАРТИЦЕ
========================================================= */
.nhp-block {
  background: #ffffff;
  border: 2px solid #0f172a;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.nhp-block:hover {
  border-color: #d97706;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transform: translateY(-2px);
}

.nhp-block-head {
  margin-bottom: 18px;
}

.nhp-block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.nhp-block-subtitle {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   ГЛАВНА ФОТОГРАФИЈА
========================================================= */
.nhp-featured-media {
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #0f172a;
  background: #f8fafc;
}

.nhp-featured-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================================================
   ТЕКСТ ЧЛАНКА / САДРЖАЈ ПОГЛАВЉА
========================================================= */
.nhp-article {
  color: #334155;
  font-size: 17px;
  line-height: 1.95;
}

.nhp-article p {
  margin: 0 0 18px;
}

.nhp-article p:last-child {
  margin-bottom: 0;
}

.nhp-lead {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 2;
  color: #1e293b;
  font-weight: 500;
}

.nhp-article-heading {
  margin: 28px 0 12px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  padding-left: 16px;
}

.nhp-article-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 4px;
  border-radius: 999px;
  background: #d97706;
}
/* Ако будеш користио наслове унутар текста */
.nhp-article h2,
.nhp-article h3,
.nhp-article h4 {
  margin: 28px 0 14px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.25;
}

.nhp-article h2 {
  font-size: 28px;
}

.nhp-article h3 {
  font-size: 24px;
}

.nhp-article h4 {
  font-size: 20px;
}

/* Листе */
.nhp-article ul,
.nhp-article ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.nhp-article li {
  margin-bottom: 8px;
}

/* Линкови у тексту */
.nhp-article a {
  color: #b45309;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nhp-article a:hover {
  color: #92400e;
}

/* =========================================================
   ЦИТАТ / ИЗДВОЈЕНИ НАВОД
========================================================= */
.nhp-quote-box {
  position: relative;
  padding: 24px 22px;
  border-radius: 16px;
  background: linear-gradient(to right, #fef3c7, rgba(254, 243, 199, 0.42));
  border-left: 5px solid #d97706;
  border-top: 1px solid rgba(217, 119, 6, 0.18);
  border-right: 1px solid rgba(217, 119, 6, 0.12);
  border-bottom: 1px solid rgba(217, 119, 6, 0.12);
}

.nhp-quote-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  font-style: italic;
  color: #0f172a;
  font-weight: 500;
}

/* =========================================================
   ГАЛЕРИЈА
========================================================= */
.nhp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  gap: 16px;
  justify-content: center;
}

.nhp-gallery-card {
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease;
  appearance: none;
}

.nhp-gallery-card:hover {
  transform: translateY(-3px);
}

.nhp-gallery-card:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.35);
  outline-offset: 3px;
}

.nhp-gallery-img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #0f172a;
  background: #f8fafc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nhp-gallery-card:hover .nhp-gallery-img {
  border-color: #d97706;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

/* =========================================================
   УГРАЂЕНИ САДРЖАЈИ (VIDEO / 3D / IFRAME)
========================================================= */
.nhp-embed-shell {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #0f172a;
  background: #f8fafc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nhp-embed-shell:hover {
  border-color: #d97706;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.nhp-embed-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.nhp-embed-ratio-tall {
  padding-top: 62%;
}

.nhp-embed-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   ДОКУМЕНТ / PDF
========================================================= */
.nhp-doc-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nhp-doc-frame {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #0f172a;
  background: #f8fafc;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.nhp-doc-frame:hover {
  border-color: #d97706;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.nhp-doc-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.nhp-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nhp-doc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  background: #d97706;
  color: #ffffff;
  border: 2px solid #d97706;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.nhp-doc-btn:hover {
  background: #b45309;
  border-color: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(180, 83, 9, 0.22);
}

.nhp-doc-btn-alt {
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.nhp-doc-btn-alt:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* =========================================================
   БОЧНА ТРАКА (ОПЦИОНО, ако касније додаш)
========================================================= */
.nhp-sidebar {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nhp-sidecard {
  background: #ffffff;
  border: 2px solid #0f172a;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nhp-sidecard:hover {
  border-color: #d97706;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
}

.nhp-sidecard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.nhp-side-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nhp-side-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #cbd5e1;
}

.nhp-side-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nhp-side-label {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nhp-side-value {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

.nhp-anchor-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nhp-anchor-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nhp-anchor-link:hover {
  color: #d97706;
  transform: translateX(2px);
}

.nhp-side-text {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   LIGHTBOX / ПРЕГЛЕД СЛИКЕ
========================================================= */
.nhp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.92);
}

.nhp-lightbox.is-open {
  display: flex;
}

.nhp-lightbox-image {
  max-width: min(92vw, 1500px);
  max-height: 86vh;
  border-radius: 16px;
  border: 2px solid rgba(245, 158, 11, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  background: #ffffff;
}

.nhp-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  background: rgba(245, 158, 11, 0.18);
  color: #ffffff;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nhp-lightbox-close:hover {
  background: rgba(245, 158, 11, 0.3);
  transform: rotate(90deg);
}

/* =========================================================
   FOCUS / ACCESSIBILITY
========================================================= */
.nhp-backlink:focus-visible,
.nhp-doc-btn:focus-visible,
.nhp-anchor-link:focus-visible,
.nhp-lightbox-close:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.35);
  outline-offset: 3px;
}



/* =========================================================
   VIDEO BLOK - LOKALNI VIDEO (SEO / INFO PANEL SAFE)
   Dodatak za nove klase iz video sekcije
========================================================= */

.nhp-local-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: #000000;
  object-fit: cover;
}

/* WebKit video kontrole - malo uredniji prikaz */
.nhp-local-video::-webkit-media-controls-panel {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.72)
  );
}

.nhp-local-video::-webkit-media-controls-current-time-display,
.nhp-local-video::-webkit-media-controls-time-remaining-display {
  color: #f8fafc;
  font-weight: 600;
}

/* Meta opis ispod videa */
.nhp-video-meta {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.nhp-video-meta-title {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.nhp-video-meta-text {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

/* =========================================================
   RESPONSIVE - VIDEO META
========================================================= */
@media (max-width: 768px) {
  .nhp-video-meta {
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 12px;
  }

  .nhp-video-meta-title {
    font-size: 17px;
  }

  .nhp-video-meta-text {
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 520px) {
  .nhp-video-meta {
    padding: 12px 12px;
  }

  .nhp-video-meta-title {
    font-size: 16px;
  }

  .nhp-video-meta-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1180px) {
  .nhp-layout {
    grid-template-columns: 1fr;
  }

  .nhp-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nhp-shell {
    padding: 24px 14px 50px;
  }

  .nhp-hero {
    min-height: 360px;
    border-radius: 18px;
    margin-bottom: 24px;
  }

  .nhp-hero-content {
    padding: 22px 18px 20px;
  }

  .nhp-title {
    line-height: 1.12;
  }

  .nhp-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .nhp-meta-item {
    font-size: 13px;
    padding: 9px 12px;
  }

  .nhp-main {
    gap: 20px;
  }

  .nhp-block {
    padding: 18px;
    border-radius: 16px;
  }

  .nhp-block-title {
    font-size: 22px;
  }

  .nhp-article {
    font-size: 16px;
    line-height: 1.85;
  }

  .nhp-quote-box {
    padding: 18px 16px;
    border-radius: 14px;
  }

  .nhp-quote-text {
    font-size: 16px;
    line-height: 1.8;
  }

  .nhp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .nhp-gallery-img {
    height: 220px;
  }

  .nhp-doc-frame {
    height: 420px;
  }



  .nhp-doc-actions {
    flex-direction: column;
  }
  .nhp-hero-badge {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 16px;
}

.nhp-hero-badge i {
  width: 24px;
  height: 24px;
}

.nhp-lead {
  font-size: 17px;
  line-height: 1.9;
}

.nhp-article-heading {
  font-size: 20px;
  margin-top: 22px;
}
}

@media (max-width: 520px) {
  .nhp-topbar {
    margin-bottom: 16px;
  }

  .nhp-backlink {
    font-size: 14px;
  }

  .nhp-hero {
    min-height: 310px;
  }

  .nhp-kicker {
    font-size: 11px;
    padding: 7px 12px;
  }

  .nhp-title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .nhp-subtitle {
    margin-top: 12px;
  }

  .nhp-meta {
    gap: 8px;
  }

  .nhp-meta-item {
    width: 100%;
    justify-content: flex-start;
  }

  .nhp-featured-media,
  .nhp-gallery-img,
  .nhp-embed-shell,
  .nhp-doc-frame,
  .nhp-lightbox-image {
    border-radius: 14px;
  }
}

/* =========================================================
   КРАЈ - ПОГЛАВЉЕ
========================================================= */
/* ================= MOBILE SEARCH RESULTS ================= */

.mobile-search-results {
  display: none;
  margin-top: 16px;
  gap: 12px;
  flex-direction: column;
}

.mobile-result-card {
  background: #ffffff;
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-left: 4px solid #d97706;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.mobile-result-person {
  margin-bottom: 10px;
}

.mobile-result-person:last-child {
  margin-bottom: 0;
}

.mobile-result-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0f172a;
}

.mobile-result-dates {
  font-size: 14px;
  color: #475569;
}

.mobile-result-divider {
  border: 0;
  border-top: 1px solid rgba(217, 119, 6, 0.25);
  margin: 10px 0;
}

.mobile-result-meta {
  margin-top: 10px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.mobile-empty-state {
  display: none;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  color: #64748b;
  text-align: center;
  margin-top: 12px;
}

/* ================= MOBILE BEHAVIOR ================= */

@media (max-width: 600px) {
  .desktop-map-content {
    display: none !important;
  }

  .mobile-search-results {
    display: flex;
  }
}

/* ================= MOBILE SEARCH PLACEHOLDER ================= */

.mobile-search-placeholder {
  display: none;
  background: #ffffff;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.mobile-search-placeholder-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
}

.mobile-search-placeholder h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #0f172a;
}

.mobile-search-placeholder p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

/* samo na mobitelu */
@media (max-width: 600px) {
  .mobile-search-placeholder {
    display: block;
  }
}

/*PANEL*/
/* ================= HEADER PANEL 1080 ================= */
/* ================= HEADER PANEL 1080 - SAME ROW ================= */
@media (max-width: 1080px) {
  .header-container {
    max-width: 100%;
    padding: 24px 22px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 18px;
  }

  /* LEFT */
  .header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }

  .header-bar {
    width: 5px;
    height: 50px;
    flex-shrink: 0;
  }

  .header-title {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin: 0;
    word-break: break-word;
  }

  .header-subtitle {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.35;
  }

  /* RIGHT */
  .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }

  /* TIME CARD */
  .time-card {
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .time-icon {
    width: 18px;
    height: 18px;
  }

  .time-separator {
    height: 24px;
  }

  .time-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;
  }

  /* DATE CARD */
  .date-card {
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
  }

  .date-day {
    padding-right: 12px;
  }

  .date-day div {
    font-size: 24px;
    line-height: 1;
  }

  .date-week {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .date-month {
    font-size: 12px;
    margin-top: 2px;
  }
}
/* ================= NAV TABS PANEL 1080 ================= */
@media (max-width: 1080px) {
  .nav-tabs-wrapper {
    padding: 24px 18px 0 18px;
  }

  .nav-tabs {
    max-width: 100%;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  }

  .nav-tab {
    padding: 20px 0;
    border-radius: 8px;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
  }

  .nav-tab i {
    width: 18px;
    height: 18px;
  }

  .nav-tab span {
    line-height: 1.2;
  }
}

/* ================= SEARCH PANEL 1080 ================= */
@media (max-width: 1080px) {
  .search-wrapper {
    margin: 0 18px 28px 18px;
  }

  .search-box {
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .search-box input {
    font-size: 16px;
  }
}

/* ================= MAP INFO CARD PANEL 1080 ================= */
@media (max-width: 1080px) {
  .map-info-card {
    padding: 28px 20px;
    margin: 0 12px 30px 12px;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  }

  /* GRID LAYOUT */
  .map-info-grid {
    grid-template-columns: 120px 1fr 220px;
    gap: 18px;
  }

  /* LEFT ICON */
  .map-info-icon {
    padding: 16px;
    border-radius: 12px;
  }

  .map-info-icon i {
    width: 28px;
    height: 28px;
  }

  /* CENTER */
  .map-info-center h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .map-info-center p {
    font-size: 14px;
  }

  /* RIGHT SIDE */
  .map-info-right {
    gap: 16px;
  }

  /* Stats */
  .stats-label {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .stats-number {
    font-size: 24px;
  }

  /* Badge */
  .map-info-badge {
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.32);
  }

  .map-info-badge:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.42);
  }
}

/* ================= MAP PANEL 1080 ================= */
@media (max-width: 1080px) {

  .map-wrapper {
    padding: 12px;
    border-width: 4px;
    border-radius: 12px;
  }

  .map-container {
    height: 100%;
  }

  .map-container img {
    object-fit: cover;
  }

  #markers .marker {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .red-block {
    margin-bottom: 20px;
  }

  .red-row {
    gap: 6px;
  }

  .grob {
    width: 36px;
    height: 36px;
    font-size: 12px;
    border-radius: 5px;
  }

  .grob-img {
    width: 100%;
    height: auto;
  }

  /* TOOLTIP */
  .tooltip {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
  }

  .matrix {
    gap: 3px;
  }

  .matrix-row {
    gap: 6px;
  }

  .corner,
  .cell,
  .header-cell {
    font-size: 9px;
  }

  .cell.active {
    transform: scale(1.2);
  }
}
@media (max-width: 520px) {
    .header-right{
        display:none;
    }
  }