/* Reset i osnovni stilovi */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
}

/* Navigacija */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
}

.nav-left h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.nav-center,
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-center a,
.nav-right a {
  text-decoration: none;
  color: black;
}

/* Slideshow */
.slideshow {
  max-width: 90vw;
  max-height: 80vh;
  margin: 40px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.slideshow img {
  display: none;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.slideshow img.active {
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}

.image-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* About section */
.about-section {
  max-width: 800px;
  margin: 120px auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
}

.about-section-flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 60px 40px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.portrait {
  display: flex;
  align-items: flex-start;
}

.portrait img {
  width: 280px;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.about-text {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: -20px;
}

/* Exhibitions (i Contact koristi ovo) */
.exhibitions-section {
  max-width: 800px;
  margin: 120px auto;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.exhibitions-section h2 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

.exhibitions-section ul {
  list-style-position: inside;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 40px;
  text-align: left;
  display: inline-block;
}

.exhibitions-section p {
  margin-bottom: 20px;
}

/* General links */
a {
  color: black;
  text-decoration: underline;
  text-decoration-color: black;
}

a:hover {
  color: #555;
  text-decoration-color: #555;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  padding: 0 20px;
}

