/*==============================
   Solid & Beautiful Journal Info
===============================*/

/* Section Wrapper */
.journal-info-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 30px;
  background-color: #1e1e1e; /* solid dark background */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* Main Journal Info */
.journal-main {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 2px solid #ff6ec7;
}

.journal-main h1 {
  font-size: 2.8rem;
  color: #ff6ec7;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #ff6ec7, 0 0 30px #ff6ec7;
  animation: glow 2s ease-in-out infinite alternate;
}

.journal-main h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.journal-main p {
  font-size: 1.1rem;
  margin: 8px 0;
}

.journal-main a {
  color: #ffeb3b;
  text-decoration: underline;
  transition: 0.3s;
}

.journal-main a:hover {
  color: #ffd700;
}

/* Footer */
.journal-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #ff6ec7;
}

.journal-footer h3 {
  font-size: 1.6rem;
  color: #ff6ec7;
  margin-bottom: 12px;
  text-shadow: 0 0 10px #ff6ec7, 0 0 20px #ff6ec7;
  animation: glow 2s ease-in-out infinite alternate;
}

.journal-footer p, .journal-footer a {
  font-size: 1rem;
  margin: 5px 0;
  color: #ffffff;
}

/* Glow Animation */
@keyframes glow {
  0% { text-shadow: 0 0 10px #ff6ec7, 0 0 20px #ff6ec7; }
  100% { text-shadow: 0 0 30px #ff6ec7, 0 0 60px #ff6ec7; }
}
