* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Tahoma, sans-serif;
  background: #f5f3ee;
  color: #6F8FAF;
  line-height: 1.6;
}

/* ---------- NAVBAR ---------- */

.navbar {
  background: #6F8FAF;
  padding: 1rem;
  text-align: center;
}

.navbar-content {
  font-family: Tahoma, sans-serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.page {
  max-width: 1000px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

/* ---------- IMAGE COLLAGE ---------- */

.image-collage {
  margin-bottom: 3rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 170px;
  gap: 8px;
}

.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make some images taller to mimic the layout */
.collage-grid img.tall {
  grid-row: span 2;
}

/* ---------- ABOUT SECTION ---------- */

.about {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about h2 {
  font-family: Tahoma, sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #6F8FAF;
}

.about p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.divider {
  border: none;
  border-top: 1px solid #c8c4bd;
  margin: 2.5rem 0;
}

/* ---------- GALLERIES SECTION ---------- */

.galleries {
  display: flex;
  justify-content: center;
  gap: 4rem;
  text-align: center;
  flex-wrap: wrap;
}

.gallery-card h3 {
  font-family: Tahoma, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #6F8FAF;
}

.gallery-card .location {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  color: #6F8FAF;
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  border: 1px solid #6F8FAF;
  background: #6F8FAF;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: white;
  color: #6F8FAF;
}

/* ---------- FOOTER ---------- */

.footer {
  background: #6F8FAF;
  color: #fff;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 4rem;
}

.footer p {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .page {
    margin-top: 1.5rem;
  }
}

@media (max-width: 500px) {
  .collage-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .galleries {
    gap: 2rem;
  }
}
