
body {
  font-family: "Montserrat", "Segoe UI", "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  overflow-y: scroll;
}

header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

h1 {
  color: #444;
}

.intro {
  background-color: white;
  padding: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.intro-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #f0f4ff;
  flex-shrink: 0;
}

.intro-text {
  flex: 1 1 300px;
  min-width: 220px;
}

.gallery {
  column-count: 2;
  column-gap: 22px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .gallery {
    column-count: 1;
  }
}

.gallery-item {
  display: block;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  margin-bottom: 22px;
  break-inside: avoid;
}

.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 6px 18px rgba(44, 62, 80, 0.13);
}

/* Remove old aspect-ratio rules */

/* Remove caption styling since captions are not used */

footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #777;
}

/* Lightbox styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 0 0;
}

.site-name {
  font-family: "Montserrat", "Segoe UI", "Arial", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2a3a5e;
  letter-spacing: 2px;
}

.about-link {
  font-family: "Montserrat", "Segoe UI", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2a3a5e;
  background: none;
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #2a3a5e;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.about-link:hover {
  background: #f0f4ff;
  color: #1a2540;
  border: 1px solid #1a2540;
}

.main-title {
  color: #444;
  font-family: "Montserrat", "Segoe UI", "Arial", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 1px;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border: 3px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-btn {
  position: absolute;
  top: -40px;
  right: -10px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-btn:hover {
  color: #ccc;
}
