/* Algemene reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  overflow: hidden;
  height: 100vh;
}

/* Menu */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #fff;
  color: #000;
  z-index: 1001;
  display: flex;
  align-items: center;
  border-bottom: 0px solid #ccc;
}

.menu-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-weight: normal;
  color: #404040;
  font-size: 14px;
}

nav li a {
  text-decoration: none;
  font-weight: normal;
  color: #404040;
  font-size: 14px;
  transition: color 0.3s;
}

nav li a:hover {
  color: #ff9000;
}

/* Afbeelding */
.display-area {
  position: fixed;
  top: 70px;
  bottom: 80px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Thumbnails */
.thumbnail-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px;
  justify-items: center;
  align-items: center;
  background: #fff;
}

.thumbnail-container img {
  width: 150px;
  height: 185px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
  border-radius: 4px;
}

.thumbnail-container img:hover {
  border-color: #FF9000;
}

/* Info-balk onderaan */
.info-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: #fff;
  border-top: 0px solid #ccc;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-bar-inner {
  max-width: 750px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Info links */
.info-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.compact-line {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

#tags-container span,
#location {
  color: #000;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}


/* Zorg voor spaties tussen tags */
#tags-container span {
  margin-right: 2px;
}

/* Info rechts */
.info-right {
  display: flex;
  gap: 8px;
}

button {
  padding: 6px 10px;
  font-size: 18px;
  cursor: pointer;
  background: #FFF;
  color: black;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  user-select: none;
}

button:hover {
  background: #ff9000;
}
