
html, body {
  max-width: 100vw;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  font-family: sans-serif;
  text-align: left;
  line-height: 1.5;
  position: relative;
}

h1 {
  margin-bottom: 0em; /* reduce spacing below h1 */
  padding: 6px 12px;
}

.subtitle {
  margin-top: 0; /* remove spacing above subtitle */
  margin-bottom: 1em;
  font-size: 1.2em; /* optional, for subtitle styling */
  color: #D3D3D3;
  padding: 6px 12px;/* optional, for tone */
}

.about{
  text-align: right;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.title {
  flex: 1;
  min-width: 200px;
}

.about {
  display: flex;
  gap: 1em;
  align-items: center;
  flex-shrink: 0;
}

.about a {
  color: black;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
}

.modal {
  display: block; /* Will be set to 'none' after load */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background: #222;
  color: #f7f6f3;
  margin: 10% auto;
  padding: 2em;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  font-family: sans-serif;
  line-height: 1.6;
  position: relative;
  text-align: left;
  overflow-y: auto;
}

.close-btn {
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 28px;
  cursor: pointer;
}


a:hover{
  color: magenta;
}

.map-container {
  position: relative;
}
.responsive-map {
  width: 100%;
  display: block;
}




.hotspot {
  position: absolute;
  width: 5%;
  height: 5%;
  display: block;
  animation: slideIn 0.6s ease-out forwards;
  opacity: 0;
  background-color: rgb(255, 255, 255, 0.05);
  cursor: pointer;
  outline: 2px solid blue;
}

@keyframes slideIn {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

.hotspot-image {
  outline: 2px solid cyan;
}

.hotspot-audio {
  outline: 2px solid orange;
}

.hotspot-video {
  outline: 2px solid magenta;
}

.hotspot-text {
  outline: 2px solid green;
}

.hotspot-red {
  outline: 2px solid red;
}

.hotspot:hover {
  outline: 2px solid blue;
}



img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lightbox {
  color: #f7f6f3;
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 2rem;
}

.lightbox:target {
  display: flex;
}

.lightbox-content {
  background: #222;
  padding: 2em;
  border-radius: 10px;
  max-width: 600px;
  max-height: 80vh;
  text-align: left;
  overflow-y: auto;
}
.lightbox video, .lightbox audio, .lightbox iframe {
  width: 100%;
}
.close {
  position: absolute;
  top: 1em;
  right: 2em;
  text-decoration: none;
  font-size: 2em;
  color: #fff;
}


.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio = 9 / 16 = 0.5625 */
  height: 0;
  overflow: hidden;
}

.responsive-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 70vh;
  overflow-y: auto;
}
