/** 
 * Theme for novaGallery - https://novagallery.org
 * Theme: "sieciwod"
 * Author: maclews
 * License: AGPL-3.0 
 **/
:root {
  --bg-color: var(--bs-light);
  --text-color: #333;
  --link-color: #333;
  --link-color-hover: rgba(0, 0, 0, 0.9);
  --link-color-muted: #6c757d;
  --link-color-muted-hover: #6c757d;
  --lightbox-bg: var(--bs-light);
  --lightbox-color: #333;
}


body {
  background-color: var(--bg-color);
  padding: 0;
  margin: 0;
  color: var(--text-color);
}

.topbar {
  background-color: var(--bs-white);
}

.navbar {
  background-color: var(--bs-gray-200);
}

.navbar-brand {
  /* font-size: 1.5rem; */
  /* font-weight: bold; */
  /* letter-spacing: 0.3rem; */
  text-align: center;
  width: 100%;
}

a,
a:visited {
  color: var(--link-color);
  text-decoration: none;
}

a:hover,
a:active {
  color: var(--link-color-hover);
}

.text-muted a,
.text-muted a:visited {
  color: var(--link-color-muted);
  text-decoration: none;
}

.text-muted a:hover,
.text-muted a:active {
  color: var(--link-color-muted-hover);
}

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

@media (hover: hover) and (pointer: fine) {
  main .cover-image {
    transition: transform .4s;
  }

  main .cover-image:hover {
    transform: scale(1.02);
  }
}

/** Lightbox **/
.sl-overlay {
  background: var(--lightbox-bg);
}

.sl-wrapper .sl-image .sl-caption {
  font-size: 1rem;
  opacity: 0.9 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button,
.sl-wrapper .sl-counter {
  color: var(--lightbox-color);
  opacity: 1;
  text-shadow: 0 0 1px white, 0 0 2px white, 0 0 3px white, 0 0 4px white, 0 0 5px white, 0 0 6px white, 0 0 7px white, 0 0 8px white, 0 0 9px white, 0 0 10px white;
}