/* =======================================================
   Global Reset
   ======================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =======================================================
   Body & Background
   ======================================================= */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2c2344;
  line-height: 1.8;
  max-width: 1000px;
  margin: 40px auto;
  padding: 40px;
  position: relative;
  z-index: 1;
  overflow-x: hidden;


  background: url("https://sjtx0898.leedsnewmedia.net/background.jpg") no-repeat center center fixed;
  background-size: cover;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: -1;
  backdrop-filter: blur(4px);
}

/* =======================================================
   Navigation Bar
   ======================================================= */
nav {
  background-color: rgba(240, 230, 255, 0.85);
  border-radius: 15px;
  padding: 14px 0;
  margin-bottom: 40px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(95, 61, 196, 0.15);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 10;
}

nav a {
  color: #5f3dc4;
  font-weight: 600;
  text-decoration: none;
  margin: 0 18px;
  transition: color 0.3s, transform 0.2s;
}

nav a:hover {
  color: #3d1fa3;
  transform: scale(1.1);
}

/* =======================================================
   Headings
   ======================================================= */
h1, h2, h3 {
  text-align: center;
  color: #4a2ca5;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.3em;
}

h2 {
  font-size: 1.6rem;
  margin-top: 2.2em;
  margin-bottom: 0.8em;
  border-bottom: 2px solid #d5c8f5;
  padding-bottom: 6px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.1rem;
  color: #7a6bb8;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

/* =======================================================
   Paragraphs
   ======================================================= */
p {
  max-width: 900px;
  margin: 1em auto;
  font-size: 1.05rem;
  text-align: justify;
  color: #2c2344;
}

/* =======================================================
   Images
   ======================================================= */
img {
  display: block;
  margin: 2rem auto;
  max-width: 92%;
  border: 3px solid #e2d7fa;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(95, 61, 196, 0.18);
}

/* =======================================================
   Horizontal Rule
   ======================================================= */
hr {
  border: none;
  border-top: 2px solid #d5c8f5;
  width: 80%;
  margin: 3em auto;
}

/* =======================================================
   Footer
   ======================================================= */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #7a6bb8;
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid #e2d7fa;
  opacity: 0.9;
}

/* =======================================================
   Smooth Scroll & Hover Links
   ======================================================= */
html {
  scroll-behavior: smooth;
}

a {
  color: #5f3dc4;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: underline;
}
