/* RESET I OSNOVNI STILOVI */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f4ecd8;
  color: #2b1e16;
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.6;
  background-image: radial-gradient(#dfd4b8 1px, transparent 0);
  background-size: 20px 20px;
}

/* ZAGLAVLJE */
.site-header {
  text-align: center;
  padding: 25px 15px 15px;
  background: #eae0c8;
  border-bottom: 3px double #8c6d46;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.header-decoration {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.site-header h1 {
  font-family: 'Special Elite', cursive, serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #8b0000;
  text-transform: uppercase;
}

.subtitle {
  font-style: italic;
  font-size: 0.95rem;
  color: #5c4731;
}

.pwa-btn {
  margin-top: 12px;
  background: #8b0000;
  color: #f4ecd8;
  border: 1px solid #4a0000;
  padding: 8px 16px;
  font-family: 'Courier Prime', monospace;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 2px 2px 0px #2b1e16;
}

/* KARTA */
.main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
}

.map-section {
  position: relative;
  margin-bottom: 30px;
  border: 3px solid #8c6d46;
  box-shadow: 6px 6px 0px #2b1e16;
}

#map {
  width: 100%;
  height: 400px;
  background: #e0d5ba;
}

.map-overlay-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1000;
  background: #fffdf5;
  color: #2b1e16;
  border: 2px solid #8c6d46;
  padding: 8px 12px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 2px 2px 0px #2b1e16;
}

/* POP-UP STILOVI NA KARTI */
.leaflet-popup-content-wrapper {
  background: #fffdf5 !important;
  border: 2px solid #8c6d46 !important;
  color: #2b1e16 !important;
  border-radius: 0px !important;
  font-family: 'Playfair Display', serif !important;
}

.popup-card {
  max-width: 250px;
}

.popup-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  color: #8b0000;
  font-weight: bold;
}

.popup-card h3 {
  font-size: 1.1rem;
  margin: 4px 0 8px;
  color: #2b1e16;
}

.popup-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border: 1px solid #8c6d46;
  filter: sepia(60%) contrast(110%);
  transition: filter 0.3s ease;
  margin-bottom: 8px;
}

.popup-img:hover {
  filter: sepia(0%);
}

.popup-prica {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.popup-oko {
  background: #e6dfcc;
  border-left: 3px solid #8b0000;
  padding: 6px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
}

/* POPIS LOKACIJA (CARDS) */
.section-title {
  font-family: 'Special Elite', cursive, serif;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #5c4731;
  border-bottom: 1px dashed #8c6d46;
  padding-bottom: 8px;
}

.location-card {
  background: #fffdf5;
  border: 2px solid #8c6d46;
  box-shadow: 5px 5px 0px #2b1e16;
  margin-bottom: 25px;
  padding: 18px;
  transition: transform 0.2s ease;
}

.card-tag {
  display: inline-block;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  font-weight: bold;
  color: #8b0000;
  background: #e6dfcc;
  padding: 2px 8px;
  margin-bottom: 8px;
  border: 1px solid #8c6d46;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #2b1e16;
}

.card-img-container {
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid #8c6d46;
}

.card-img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  display: block;
  filter: sepia(50%) contrast(105%) brightness(95%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.card-img:hover {
  filter: sepia(0%) contrast(100%) brightness(100%);
  transform: scale(1.02);
}

.card-prica {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #2b1e16;
}

/* ACCORDION (Za one koji žele više) */
.accordion-btn {
  width: 100%;
  background: #eae0c8;
  color: #2b1e16;
  border: 1px solid #8c6d46;
  padding: 10px;
  font-family: 'Courier Prime', monospace;
  font-weight: bold;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-btn:hover {
  background: #e0d5ba;
}

.accordion-content {
  display: none;
  background: #e6dfcc;
  border: 1px solid #8c6d46;
  border-top: none;
  padding: 12px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.accordion-content.active {
  display: block;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.8rem;
  color: #5c4731;
  border-top: 1px dashed #8c6d46;
  margin-top: 40px;
}
/* POPRAVAK I PRILAGODBA ZA MOBITELE */
.map-section.mobile-fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  margin: 0 !important;
  border: none !important;
}

.map-section.mobile-fullscreen #map {
  height: 100vh !important;
}

.gps-btn {
  top: 55px !important;
}

/* STIL ZA GPS STRELICU KORISNIKA */
.user-location-marker {
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-arrow {
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e88e5' stroke='%23ffffff' stroke-width='2'><path d='M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71z'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-out;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.4));
}