﻿body {
  font-family: "Georgia", serif;
  background-color: #f8f6f3;
  color: #4a4a4a;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Navigation container */
.gallery-nav {
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Buttons */
.gallery-nav button {
  background-color: #ffffff;
  border: 1px solid #d8d3cc;
  padding: 20px 30px;
  border-radius: 12px;
  width: 240px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Soft hover */
.gallery-nav button:hover {
  background-color: #f1ece6;
  transform: translateY(-3px);
}

/* Section title */
.section-title {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Section description */
.section-desc {
  display: block;
  font-size: 0.9rem;
  font-style: italic;
  color: #7a756e;
}

/* Gallery grid */
.gallery {
  display: grid;
  gap: 12px;
  padding: 20px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery-message {
  display: none;
  text-align: center;
  margin: 15px 0;
  font-style: italic;
  color: #666;
}