body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f9f9f9;
  color: #333;
}

.header {
  background: #222;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.gallery {
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  margin-bottom: 40px;
}

.gallery-item img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item.bio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.gallery-item.bio img {
  width: 300px;
  max-width: 100%;
}

.bio-text {
  flex: 1;
}

.featured img {
  border: 4px solid #ff9900;
}

.caption {
  margin-top: 10px;
  font-style: italic;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .gallery-item.bio {
    flex-direction: column;
    text-align: center;
  }
}/* Navbar */
.navbar {
  background-color: #222;
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  color: #ff9900;
  text-decoration: none;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ff9900;
}

/* Responsive (Optional if you want a hamburger later) */
@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

