body {
  background-color: #0f0f0f;
}

/* Image grid */

.image-section {
  padding: 4rem 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.image-grid img {
  width: 100%;
  display: block;
}

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

.gallery-section {
  padding: 4rem 0;
  background-color: #0f0f0f;
}

.gallery-section h2 {
  margin-bottom: 5rem;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  color: #fafafa;
}

.gallery-section .container {
  max-width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.gallery-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  overflow-y: hidden;

  padding: 0 60px 1rem 60px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-scroll img {
  flex: 0 0 auto;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;

  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(209, 209, 209, 0.55);
}

.gallery-scroll::-webkit-scrollbar {
  height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: #0f0f0f;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 6px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
  background: #d1d1d1;
}

.info-minimal {
  padding: 4rem 0;
  background-color: #d1d1d1;
  display: flex;
  justify-content: center;
}

.info-minimal h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #0f0f0f;
}

.info-list {
  list-style: none;
  max-width: 600px;
}

.info-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #0f0f0f;
  font-size: 1.1rem;
  color: #0f0f0f;
}

.info-list li a {
  color: #0f0f0f;
  text-decoration: none;
  font-weight: 600;
}

.info-list li a:hover {
  text-decoration: underline;
}