/* Font and base setup */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #cfd8dc; /* blue-grey */
  color: #000;
}

/* Navigation bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #37474f;
  color: #fff;
  padding: 1em 2em;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-title {
  font-weight: bold;
}

.hamburger {
  font-size: 1.5em;
  cursor: pointer;
}

.nav-links {
  display: none;
  flex-direction: column;
  background: #455a64;
  position: absolute;
  top: 60px;
  right: 20px;
  padding: 1em;
  border-radius: 4px;
  width: 150px;
  z-index: 999;
}

.nav-links.open {
  display: flex;
}

.nav-links li {
  margin-bottom: 0.5em;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1em;
}
/* Content formatting */
.content {
  height: 100vh; /* Use full screen height */
  box-sizing: border-box;
  padding: 3vh 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertical centering */
  align-items: center;     /* Horizontal centering */
  overflow: hidden;        /* Hide anything that spills */
}


.content h1 {
  margin-top: 0;
}

@media screen and (max-height: 700px) {
  .nav-links li {
    font-size: 0.9em;
    margin-bottom: 0.3em;
  }
}


  .hamburger {
    display: none;
  }
  .photo-gallery {
  margin-top: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.gallery-grid figcaption {
  text-align: center;
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #555;
}

}
