/* === 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;
}

.about-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: rgba;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: justify;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}