/* Base Page Styling */
body {
  margin: 0;
  background-color: #0b0c2a;
  color: #fff;
  font-family: 'Georgia', serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  overflow-x: hidden;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 2s forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero Image Styling */
.hero-container {
  margin-top: 40px;
  max-width: 90%;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/* Link Buttons */
.link-container {
  margin: 30px 0;
}

.link-container a {
  background-color: #d0bfff;
  color: #0b0c2a;
  text-decoration: none;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 30px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.link-container a:hover {
  background-color: #a98fd0;
  color: #fff;
  transform: scale(1.05);
}

/* Footer */
.footer {
  font-size: 0.9em;
  color: #ccc;
  margin-bottom: 20px;
  opacity: 0.8;
}
/* --- About Page Styling --- */
.about-container {
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.about-image {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
}

.about-text h1 {
  font-size: 2em;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.6;
  margin: 10px 0;
}
