/* Cross-browser resets & mobile touch optimizations */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  min-width: 0 !important;
  overflow-x: hidden;
}
* {
  -webkit-tap-highlight-color: rgba(121, 193, 87, 0.25);
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
  min-width: 0 !important;
  width: 100% !important;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Page & Header Background */
body,
#art-main {
  background: #488950 url("../../images/page.jpeg") top center no-repeat fixed !important;
  background-size: cover;
}
@media (max-width: 820px) {
  body, #art-main {
    background-attachment: scroll !important;
  }
}

#art-main {
  overflow-x: hidden !important;
  padding-bottom: 45px !important;
}
.art-sheet {
  max-width: 960px !important;
  width: 100% !important;
  margin: 0 auto 35px !important;
  box-sizing: border-box !important;
}
@media (max-width: 600px) {
  .art-sheet {
    border-radius: 0 !important;
    margin-bottom: 20px !important;
  }
}

/* Header Banner & Safe Areas */
.vpr-site-header {
  width: 100%;
  margin: 0;
  padding-top: max(4px, env(safe-area-inset-top));
  padding-left: max(4px, env(safe-area-inset-left));
  padding-right: max(4px, env(safe-area-inset-right));
  font-family: 'Century Gothic', Arial, 'Arial Unicode MS', Helvetica, sans-serif;
}
.vpr-header-banner {
  text-align: center;
  padding: 8px 10px 6px;
  background: transparent;
}
.vpr-header-img {
  max-width: 440px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* Sticky Navbar */
.vpr-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: transparent;
  box-shadow: none;
  padding-left: max(0px, env(safe-area-inset-left));
  padding-right: max(0px, env(safe-area-inset-right));
}
.vpr-navbar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  min-height: 44px;
}
.vpr-nav-left {
  display: flex;
  align-items: center;
}
.vpr-home-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(43, 76, 28, 0.75);
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.vpr-home-btn:hover {
  background: rgba(121, 193, 87, 0.85);
  color: #262626;
}

/* Desktop Navigation */
.vpr-desknav {
  display: none;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  padding: 0 8px;
}
@media (min-width: 820px) {
  .vpr-desknav { display: flex; }
  .vpr-burger { display: none !important; }
  .vpr-mobnav { display: none !important; }
}
.vpr-desknav > .vdi {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: -8px;
}
.vpr-desknav > .vdi > a,
.vpr-desknav > .vdi > .vd-title {
  display: block;
  background: rgba(43, 76, 28, 0.75);
  border: none;
  outline: none;
  border-radius: 20px;
  padding: 0 16px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transition: background .15s, color .15s;
}
.vpr-desknav > .vdi > a:hover,
.vpr-desknav > .vdi:hover > .vd-title,
.vpr-desknav > .vdi.vpr-open > .vd-title {
  background: rgba(121, 193, 87, 0.85);
  color: #262626;
}
.vpr-desknav > .vdi > .vd-title::after {
  content: " \25BE";
  font-size: 11px;
  margin-left: 4px;
  color: #c2e5b0;
}
.vpr-desknav > .vdi:hover > .vd-title::after,
.vpr-desknav > .vdi.vpr-open > .vd-title::after {
  color: #262626;
}

/* Dropdown menu */
.vpr-desknav > .vdi > .vd-drop {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: rgba(28, 52, 20, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(121,193,87,0.25);
  padding: 8px 0;
  z-index: 10000;
  margin-top: 4px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease, visibility 0s .45s;
}
.vpr-desknav > .vdi > .vd-drop::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.vpr-desknav > .vdi:hover > .vd-drop,
.vpr-desknav > .vdi.vpr-open > .vd-drop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s 0s;
}
.vpr-desknav > .vdi > .vd-drop a {
  display: block;
  padding: 8px 18px;
  color: #e5f3dd;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .3px;
  transition: background .12s, color .12s, padding-left .12s;
}
.vpr-desknav > .vdi > .vd-drop a:hover {
  background: rgba(121, 193, 87, 0.35);
  color: #fff;
  padding-left: 22px;
}

/* Nav Right & Social */
.vpr-nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vpr-social-hdr {
  display: flex;
  align-items: center;
  gap: 2px;
}
.vpr-social-hdr a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  touch-action: manipulation;
}
.vpr-social-hdr a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  transition: transform .15s;
}
.vpr-social-hdr a:hover img {
  transform: scale(1.15);
}

/* Burger Button */
.vpr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  background: rgba(43, 76, 28, 0.75);
  border: none;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
  touch-action: manipulation;
}
.vpr-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.vpr-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.vpr-burger.open span:nth-child(2) { opacity: 0; }
.vpr-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Navigation Panel */
.vpr-mobnav {
  display: none;
  background: rgba(28, 52, 20, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  border: none;
  outline: none;
  margin: 6px 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.vpr-mobnav.open { display: block; }
@media (min-width: 820px) {
  .vpr-mobnav { display: none !important; }
}
.vpr-mobnav-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 6px;
}
.vpr-mi > a,
.vpr-mg-title {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  border-radius: 12px;
  transition: background .12s, color .12s;
  border: none;
  outline: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  box-sizing: border-box;
  touch-action: manipulation;
}
.vpr-mi > a:hover,
.vpr-mg-title:hover {
  background: rgba(121, 193, 87, 0.3);
  color: #ffffff;
}
.vpr-mg-title::after {
  content: " \25B6";
  font-size: 10px;
  color: #79c157;
  margin-left: auto;
  transition: transform .2s;
  display: inline-block;
}
.vpr-mg.open .vpr-mg-title::after {
  transform: rotate(90deg);
}
.vpr-msub {
  display: none;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  margin: 4px 6px 8px;
  padding: 4px;
}
.vpr-mg.open .vpr-msub {
  display: block;
}
.vpr-msub a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  color: #c2e5b0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: background .12s, color .12s;
  touch-action: manipulation;
}
.vpr-msub a:hover {
  background: rgba(121, 193, 87, 0.35);
  color: #fff;
}

/* Lightbox Modal */
.vpr-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
}
.vpr-lb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 18, 8, 0.95);
}
.vpr-lb-content {
  position: relative;
  z-index: 10;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vpr-lb-img-wrap {
  text-align: center;
}
#vpr-lb-img {
  max-width: 88vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  display: block;
  margin: 0 auto;
}
.vpr-lb-caption {
  color: #e5f3dd;
  font-family: 'Century Gothic', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  text-align: center;
  letter-spacing: .5px;
}
.vpr-lb-close, .vpr-lb-prev, .vpr-lb-next {
  background: rgba(43, 76, 28, 0.85);
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  transition: background .2s, transform .2s;
  text-align: center;
}
.vpr-lb-close:hover, .vpr-lb-prev:hover, .vpr-lb-next:hover {
  background: #79c157;
  color: #262626;
  transform: scale(1.1);
}
.vpr-lb-close {
  position: fixed;
  top: 18px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 44px;
}
.vpr-lb-prev, .vpr-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 26px;
  line-height: 50px;
}
.vpr-lb-prev:hover, .vpr-lb-next:hover {
  transform: translateY(-50%) scale(1.1);
}
.vpr-lb-prev { left: max(20px, env(safe-area-inset-left)); }
.vpr-lb-next { right: max(20px, env(safe-area-inset-right)); }
@media (max-width: 600px) {
  .vpr-lb-prev { left: max(6px, env(safe-area-inset-left)); width: 44px; height: 44px; font-size: 22px; line-height: 44px; touch-action: manipulation; }
  .vpr-lb-next { right: max(6px, env(safe-area-inset-right)); width: 44px; height: 44px; font-size: 22px; line-height: 44px; touch-action: manipulation; }
  .vpr-lb-close { top: max(12px, env(safe-area-inset-top)); right: max(12px, env(safe-area-inset-right)); width: 44px; height: 44px; font-size: 26px; line-height: 44px; touch-action: manipulation; }
  #vpr-lb-img { max-width: 95vw; max-height: 80vh; }
}

/* Multi-Column Gallery Grid */
form.bwg-hidden {
  visibility: visible !important;
  display: block !important;
}
div.bwg-container-0,
div.bwg-container,
div.bwg_thumbnails,
div.bwg-standard-thumbnails {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  visibility: visible !important;
  opacity: 1 !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 10px 0 !important;
  box-sizing: border-box !important;
}
.bwg-item {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  width: 220px !important;
  max-width: calc(25% - 12px) !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}
.bwg-item0 {
  width: 100% !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: rgba(0, 0, 0, 0.25) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.bwg-item0:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5) !important;
}
.bwg-item1 {
  position: relative !important;
  width: 100% !important;
  padding-top: 68% !important;
  overflow: hidden !important;
}
.bwg-item2 {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}
.bwg-item1 img,
.bwg-item2 img,
img.bwg_standart_thumb_img_0,
.bwg-standard-thumbnails img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}
@media (max-width: 960px) {
  .bwg-item {
    width: calc(33.333% - 10px) !important;
    max-width: calc(33.333% - 10px) !important;
  }
}
@media (max-width: 680px) {
  .bwg-item {
    width: calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
}
@media (max-width: 320px) {
  .bwg-item {
    width: 100% !important;
    max-width: 100% !important;
  }
}
.bwg_loading_div_1, .bwg_loading_div_2, .bwg_loading_div_3,
.bwg_spider_ajax_loading, .bwg_spider_popup_loading, div[id^="loading_div_"],
#spider_popup_wrap, #spider_popup_overlay_0, .spider_popup_overlay, div[id^="spider_popup_"] {
  display: none !important;
}
.bwg-title1, .bwg-title2 {
  display: none !important;
}

/* Streaming Links & Buttons */
.vpr-streaming-block {
  margin: 25px 0 15px;
  padding: 15px 0;
  border-top: 1px solid rgba(121, 193, 87, 0.2);
  border-bottom: 1px solid rgba(121, 193, 87, 0.2);
}
.vpr-streaming-title {
  color: #e5f3dd;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .5px;
}
.vpr-streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
@media (min-width: 600px) {
  .vpr-streaming-links {
    flex-wrap: nowrap;
  }
}
.vpr-stream-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 76, 28, 0.85);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all .2s ease;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.vpr-stream-btn:hover {
  background: #79c157;
  color: #262626 !important;
  transform: translateY(-2px);
}

/* Singles Grid Styles */
.vpr-singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 25px 0 40px;
}
@media (max-width: 480px) {
  .vpr-singles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.vpr-single-card {
  background: rgba(28, 52, 20, 0.65);
  border: 1px solid rgba(121, 193, 87, 0.25);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-sizing: border-box;
}
.vpr-single-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  border-color: rgba(121, 193, 87, 0.6);
}
.vpr-single-cover {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  margin-bottom: 14px;
}
.vpr-single-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px 0;
  line-height: 1.3;
}
.vpr-single-artist {
  font-size: 13px;
  color: #c2e5b0;
  margin: 0 0 4px 0;
  line-height: 1.3;
}
.vpr-single-year {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.vpr-single-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

/* Footer Reconstruction Note (outside content block) */
.vpr-footer-reconstruction {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Century Gothic', Arial, 'Arial Unicode MS', Helvetica, sans-serif;
  font-size: 13px;
  padding: 16px 12px max(28px, env(safe-area-inset-bottom));
  margin: 0 auto;
  letter-spacing: 0.5px;
  max-width: 960px;
}

/* Diskografija Grid & CD Albums Layout */
.vpr-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 25px 0 35px;
  clear: both;
}
@media (max-width: 520px) {
  .vpr-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.vpr-gallery-grid .wp-caption {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
  box-sizing: border-box !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(121, 193, 87, 0.25) !important;
  border-radius: 10px !important;
  padding: 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transition: transform .2s, box-shadow .2s;
}
.vpr-gallery-grid .wp-caption:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45) !important;
}
.vpr-gallery-grid .wp-caption img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  display: block !important;
}
.vpr-gallery-grid .wp-caption .wp-caption-text {
  color: #e5f3dd !important;
  font-size: 13px !important;
  text-align: center !important;
  margin: 8px 0 2px !important;
  font-weight: 500 !important;
}

.vpr-cd-albums-title {
  clear: both !important;
  font-size: 22px !important;
  color: #1e3a10 !important;
  margin: 30px 0 15px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(121, 193, 87, 0.3) !important;
}

.vpr-cd-albums-list {
  clear: both !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 30px !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 8px 16px !important;
}
@media (max-width: 480px) {
  .vpr-cd-albums-list {
    grid-template-columns: 1fr !important;
  }
}
.vpr-cd-albums-list li {
  padding: 10px 14px !important;
  background: rgba(43, 76, 28, 0.12) !important;
  border-left: 3px solid #79c157 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  color: #1a330e !important;
  line-height: 1.4 !important;
}
.vpr-cd-albums-list li a {
  color: #a81c1c !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}
.vpr-cd-albums-list li a:hover {
  text-decoration: underline !important;
  color: #d12323 !important;
}

