.homepage-sections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
  background-color: #f2f2f2;
}

.section-column {
  background: white;
  padding: 16px;
  border-radius: 10px;
}

.section-column h3 {
  background: navy;
  color: white;
  padding: 8px 12px;
  border-radius: 8px 8px 0 0;
  margin: -16px -16px 12px -16px;
}

.btn {
  display: block;
  padding: 12px;
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
}

/* Button colors */
.pink { background-color: #f5b7b1; color: #000; }
.red { background-color: #a93226; }
.yellow { background-color: #f7dc6f; color: #000; }
.green { background-color: #28b463; }
.teal { background-color: #117864; }
.blue { background-color: #3498db; }

.events-column .event {
  color: black;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}


.social-icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.social-icon a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  background: #333;
  border-radius: 50%; /* makes it a circle */
  text-decoration: none;
}


.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two per row */
  gap: 12px;
}

.photo-grid img {
  width: 80%;
  aspect-ratio: 1 / 1;            /* Makes image a perfect square */
  object-fit: cover;              /* Crops the image */
  object-position: top;           /* Align crop from the top */
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
}
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.3s ease;
}


/* Responsive */
@media (max-width: 1024px) {
  .homepage-sections {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .homepage-sections {
    grid-template-columns: 1fr;
  }
}
