/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: pointer;
}

/* Gallery Section */
.gallery-section {
  padding: 40px 0;
  background: #222;
  color: #fff;
  text-align: center;
}

.gallery-section h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.gallery-grid img {
  width: 80vw;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  background: #333;
  object-fit: cover;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Responsive: for small screens, reduce width */
@media (max-width: 600px) {
  .gallery-grid img {
    width: 98vw;
    max-width: 100vw;
  }
}

/* Contact Form Section */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}