body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #222;
}

header {
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  color: white;
  text-align: center;
  padding: 15px 0;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}


.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  border-radius: 10px;
}

#captionTitle, #captionText {
  text-align: center;
  color: #f1f1f1;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff6600;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}

.gallery-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  border-radius: 10px;
}

footer {
  background: #ff6600;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}