body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: url('../other2/a016bcg.gif');
  color: #000;
  line-height: 1.6;
}

.site-header {
  text-align: center;
  padding: 1rem;
  background: #fff;
}

.logo {
  max-width: 100%;
  height: auto;
}

.main-content {
  padding: 1rem;
}

.intro p {
  max-width: 800px;
  margin: auto;
  background: #fff8dc;
  padding: 1rem;
  border-radius: 8px;
}

.gallery {
  margin: 2rem 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: auto;
}

.image-grid img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s;
}

.image-grid img:hover {
  transform: scale(1.03);
}

@media screen and (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 0.5rem 0;
}

.menu-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.menu-links img {
  max-width: 200px;
  height: auto;
}

.site-footer {
  text-align: center;
  background: #eee;
  padding: 1rem;
  font-size: 0.9rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border: 4px solid white;
  box-shadow: 0 0 15px #000;
}

.modal-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}