
.festivals-section.hidden {
  display: none;
}
.festivals-header {
  text-align: center;
  border-radius: 16px;
}
.festivals-header h1 {
  font-size: 2.5rem;
  margin: 0;
  background:#cf5914;
}
.festivals-header p {
  margin: 0.5rem 0 0;
}
.festival-search {
  display: flex;
  justify-content: center; 
  align-items: center;
  margin: 20px 0;
  gap: 10px;
  width: 100%;
}
.festival-search input {
  width: 50%; 
  max-width: 400px;
  padding: 12px 18px;
  border-radius: 25px;
  border: 1px solid #cf5914;
  outline: none;
  font-size: 1rem;
  text-align: center; 
}
.festival-search button {
  padding: 12px 25px;
  background-color: #cf5914;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.festival-search button:hover {
  background-color: #b04610;
}
.festival-search {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
  gap: 10px;
}
.festival-search input {
  width: 60%;
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #cf5914;
  outline: none;
  font-size: 1rem;
}
.festival-search button {
  padding: 10px 20px;
  background-color: #cf5914;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.festival-search button:hover {
  background-color: #b04610;
}
.month-filter {
  text-align: center;
  margin: 2rem 0;
}
.months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.months button {
  background:#cf5914;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}
.months button:hover {
  background:#cf5914;
  transform: scale(1.05);
}
.country-section {
  text-align: center;
}
.country-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.country-list li {
  padding: 10px 18px;
  border-radius: 12px;
  background:#cf5914;
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.country-list li:hover {
  background:#cf5914;
  transform: scale(1.1);
}
.festival-display {
  margin: 2rem auto;
  max-width: 800px;
  padding: 20px;
  border-radius: 16px;
  background:#cf5914;
}
.festival-content {
  margin-top: 1rem;
}
.festival-item {
  margin-bottom: 1rem;
  padding: 10px;
  border-left: 4px solid #333;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
}
#festivals {
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  color: #fff; 
}
#festivals button {
  background:#cf5914;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}
#festivals button:hover {
  background:#cf5914;
  transform: scale(1.05);
}

