@charset "UTF-8";
/* CSS Document */

    h1 {
      margin: 0;
      font-size: 1.4em;
    }
   /* main {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }*/

section {
  	margin: 0 auto 40px auto;
  	max-width: 1000px;
  	padding: 20px 10px;
  	display: block;
	background-color: #2b2b2a;
}
section.header{
  	margin: 10px auto 10px auto;
  	max-width: 960px;
  	padding: 10px 10px;
  	display: block;
	justify-content: center;
	align-content: center;
	text-align: center;
	background-color: #B49931;
}
    h2 {
      color: #cab470;
      font-size: 1.4em;
      margin-top: 40px;
    }
    p {
      font-size: 0.8em;
      line-height: 1.2em;
		color: #ffffff;
    }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  cursor: pointer;
  border: 1px solid #444;
  background-color: #1a1a19;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  text-align: center;
  margin-top: 5px;
  color: #cab470;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  cursor: pointer;
  border: 1px solid #444;
  background-color: #1a1a19;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  text-align: center;
  margin-top: 5px;
  color: #cab470;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 9999;
}

.lightbox-overlay.hidden {
  display: none;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 0 15px #cab470;
  margin-bottom: 10px;
}

.lightbox-caption {
  font-size: 1rem;
  color: #cab470;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  color: #cab470;
  background: none;
  border: none;
  cursor: pointer;
}

