/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ---------- Body / Background ---------- */
body {
  background: linear-gradient(
    135deg,
    #2a174c,   /* lighter warm purple */
    #4b1f6f,   /* reddish violet */
    #3a2a75    /* soft blue-purple */
  );
  color: #f3edff;
  min-height: 100vh;
  display: flex;
}

/* ---------- Sidebar ---------- */
.sidebar {
  width: 220px;
  background: rgba(120, 76, 180, 0.9); /* warm reddish purple */
  padding: 30px 20px;
  display: flex;
  flex-direction: column;

  /* Depth */
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.35);
}

.sidebar h1 {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Sidebar links */
.sidebar a {
  text-decoration: none;
  color: #f1e8ff;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.sidebar a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

/* ---------- Main Content ---------- */
.content {
  flex: 1;
  padding: 60px;
}

/* Page headings */
.content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Paragraphs */
.content p {
  max-width: 720px;
  line-height: 1.7;
  opacity: 0.92;
}

/* ---------- Cards ---------- */
.card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

/* Card titles */
.card h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

/* ---------- Buttons ---------- */
button {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  border: none;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  opacity: 0.88;
}
