/* =========================
   Global Styles
   ========================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Times New Roman", Times, serif;
  background: white;
  color: black;
  line-height: 1.6;
}

/* =========================
   Dharma Chakra Background
   ========================= */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: url("dharma-chakra.png") no-repeat center;
  background-size: contain;
  opacity: 0.06; /* subtle watermark */
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* =========================
   Layout
   ========================= */
.container {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

/* =========================
   Navigation
   ========================= */
nav {
  border-bottom: 1px solid black;
  padding: 15px 0;
  text-align: center;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* =========================
   Headings
   ========================= */
h1, h2, h3 {
  font-weight: normal;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  margin-top: 50px;
}

h3 {
  font-size: 1.2rem;
}

/* =========================
   Sections
   ========================= */
section {
  margin-bottom: 50px;
}

/* =========================
   Lists
   ========================= */
ul {
  padding-left: 20px;
}

li {
  margin-bottom: 12px;
}

/* =========================
   Footer
   ========================= */
footer {
  border-top: 1px solid black;
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 80px;
}
/* =========================
   Page Structure
   ========================= */
html, body {
  height: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* =========================
   Footer (true page end)
   ========================= */
footer {
  border-top: 1px solid black;
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 60px;
  opacity: 0.85;
}
