body {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #fffaf0;
  color: #4b2e2e;
  margin: 0;
}

.hidden-form {
  display: none;
  margin-top: 1rem;
}

form input, form textarea {
  padding: 10px;
  margin: 5px 0;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form .btn {
  background-color: #7b3f00;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  margin-top: 10px;
}



a {
  color: #7b3f00;
  text-decoration: none;
}

.navbar {
  background: #e0b589;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Baloo Bhai 2', cursive;
}

.navbar nav a {
  margin-left: 1rem;
  font-weight: 600;
}

.navbar nav a.active {
  color: #5e2e00;
  border-bottom: 2px solid #5e2e00;
}


.container {
  padding: 2rem;
}

.yaatra-card {
  background: #fff;
  border: 1px solid #e8d8b8;
  border-radius: 10px;
  margin-bottom: 3rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.yaatra-card h2 {
  margin-bottom: 1rem;
  font-family: 'Baloo Bhai 2', cursive;
}

.poster {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.details ul {
  list-style: none;
  padding-left: 0;
}

.details li {
  margin: 0.5rem 0;
}
.past-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.past-gallery img {
  width: 200px; /* Or any desired size */
  height: 140px;
  object-fit: cover; /* This crops excess part to maintain aspect ratio */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.register form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

input, textarea {
  padding: 0.7rem;
  font-size: 1rem;
  border: 1px solid #d3c0a3;
  border-radius: 4px;
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.btn {
  background: #7b3f00;
  color: #fff;
  border: none;
  padding: 0.7rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.btn:hover {
  background: #5e2e00;
}

.footer {
  background: #4b2e2e;
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer a {
  color: #ffdfba;
  margin: 0 0.3rem;
}


