/* === Global Styles === */
body {
  font-family: 'Baloo 2', cursive;
  margin: 0;
  padding: 0;
  background: #fff8f0;
  color: #333;
  font-size: 16px;
}

.title-text {
  font-size: 28px;
  color: #fff8f0;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
}

/* === Header and Navigation === */
header {
  background-color: #ff6f00;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* === Footer === */
footer {
  background-color: #ff6f00;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}


/* Events Page: Festival Calendar Section */
.calendar-styled {
  max-width: 800px;
  margin: 40px auto;
  background: linear-gradient(to right, #e0c3fc, #8ec5fc);
  padding: 0 8px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease;
}

h1 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: rgba;
}

.calendar-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 400px;
  border: none;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}