/* Base styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0d0d2b; /* deep dreamy night sky */
  color: #f0e6fa; /* soft text */
}

/* Navigation */
#nav {
  background-color: #1a1334;
  padding: 15px;
}

#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

#nav ul li a {
  text-decoration: none;
  color: #f0e6fa;
  font-weight: bold;
  transition: color 0.3s, text-shadow 0.3s;
}

#nav ul li a:hover {
  color: #a362ff;
  text-shadow: 0 0 8px #a362ff;
}

/* Header */
.header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(120deg, #1a1334, #0d0d2b);
}

.header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #a362ff;
  text-shadow: 0 0 10px #a362ff;
}

.intro {
  font-size: 1.3rem;
  color: #f0e6fa;
  line-height: 1.6;
}

/* Journal cards */
.journals, .team {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
}

.journal-card {
  background-color: #1a1334;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.journal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(163, 98, 255, 0.5);
}

.journal-card h3 {
  margin-top: 0;
  color: #a362ff;
}

.date {
  font-size: 0.9rem;
  color: #d4c2f0;
}

.excerpt {
  margin: 12px 0;
  line-height: 1.6;
}

.actions span {
  margin-right: 20px;
  cursor: pointer;
  transition: color 0.3s, text-shadow 0.3s;
}

.actions span:hover {
  color: #ff79c6;
  text-shadow: 0 0 6px #ff79c6;
}

/* Team Section */
.team h2 {
  color: #a362ff;
  margin-bottom: 12px;
}

.team ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}
