/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Garamond", Georgia, serif;
  color: #fff;
  background: #000; /* Pure black background */
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3, .section-title, nav li {
  font-family: "Candara", "Trebuchet MS", sans-serif;
}

/* STICKY NAVIGATION */
nav {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav li {
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

nav li::after {
  content: "";
  display: block;
  height: 3px;
  background: #ffd700;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  margin-top: 5px;
}

nav li:hover::after {
  transform: scaleX(1);
}

nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffd700;
}

/* HERO SECTION with Responsive Banner */
.hero {
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.hero-banner {
  width: 100%;
  height: auto;
  max-width: 100%; 
  display: block;
}

/* MAIN SECTIONS */
section {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  width: 100%;
}

h2.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2.section-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: #ffd700;
  margin: 0.5rem auto;
  border-radius: 2px;
}

/* ICON (Lantern) */
.icon-lantern {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5em;
  fill: #ffd700;
}

/* BLOG LIST & POST */
.blog-grid {
  display: grid;
  gap: 2rem;
}

.blog-list-item {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blog-list-item:hover {
  transform: scale(1.02);
}

.blog-list-item h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.blog-post {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* ABOUT / INSPIRATION */
.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-content blockquote {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #ffd700;
  font-style: italic;
  opacity: 0.9;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

/* CONTACT PAGE STYLES */
.contact-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

/* Introduction text above the form */
.contact-intro {
  font-family: "Garamond", Georgia, serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #ccc; /* Soft contrast against black background */
}

/* Container for form */
.contact-container {
  background: rgba(255, 255, 255, 0.07); 
  /* Slightly translucent box to stand out over black/gold background */
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  max-width: 600px;
}

/* Overall form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Form group styling */
.form-group {
  text-align: left; /* Labels and fields aligned left */
}

/* Labels */
.form-group label {
  display: block;
  font-family: "Candara", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ffd700; /* Gold label color */
  font-weight: bold;
}

.form-group label span {
  color: #ff6961; /* Asterisk color for required fields */
}

/* Inputs & Textareas */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: "Garamond", Georgia, serif;
  font-size: 1rem;
  color: #fff;
  background: rgba(0,0,0,0.7);
  border: 2px solid #ffd700;
  border-radius: 4px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

/* Submit Button */
.btn-submit {
  width: 120px;
  align-self: center;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-family: "Candara", "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
  background: #ffea80;
  transform: translateY(-2px);
}


footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  nav ul {
    gap: 1rem;
  }
  .hero {
    min-height: 150px;
  }
  h2.section-title {
    font-size: 1.5rem;
  }
}


#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* behind content */
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: gold;
  opacity: 0.9;
  animation: sparkleFade 1s forwards;
}

@keyframes sparkleFade {
  0%   { transform: translateY(0) scale(1); opacity: 0.9; }
  100% { transform: translateY(-20px) scale(0.5); opacity: 0; }
}

.vision-section {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.vision-content p {
  font-family: "Garamond", Georgia, serif;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #ddd;
}

.vision-content .excerpt {
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid #ffd700;
  padding: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  opacity: 0.9;
}

.chapter-progress-section {
  text-align: center;
  margin: 4rem auto;
}

.chapter-progress-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08); /* translucent panel ovr black background */
  padding: 1.5rem 2rem;
  border: 2px solid #ffd700; /* gold border */
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  /* Optionally widen it or set a max-width */
  max-width: 400px;
}

.chapter-progress-box p {
  font-family: "Garamond", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
  margin: 0; /* remove default paragraph margin for tighter look */
}

.chapter-progress-box strong {
  color: #ffd700; /* gold chapter number */
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.chapter-progress-box {
  animation: goldenGlow 3s infinite alternate;
}
@keyframes goldenGlow {
  0%   { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
  100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/****************************************
  ABOUT PAGE STYLES
****************************************/

.about-page {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.portrait-container {
  margin: 2rem auto;
  max-width: 300px;  /* or any size you prefer */
  text-align: center;
}

.author-portrait {
  width: 100%;
  height: auto;
  border: 4px solid #ffd700; /* gold border */
  border-radius: 8px; /* subtle rounding */
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.about-content {
  font-family: "Garamond", Georgia, serif;
  text-align: left; /* Or center, if you prefer */
  line-height: 1.6;
  color: #ddd; /* or #fff for higher contrast */
}

.about-content p {
  margin-bottom: 1.5rem;
}

.about-content blockquote {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffd700;
  padding: 1rem;
  margin: 2rem 0;
  font-style: italic;
  opacity: 0.9;
}

/* FOOTER (if needed) */
footer p {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ADDITIONAL COOLNESS */
.gradient-text {
  background: linear-gradient(to right, #ffd700, #ffea80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shimmer-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.shimmer-hover:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg, 
    rgba(255, 255, 255, 0), 
    rgba(255, 255, 255, 0.3) 50%, 
    rgba(255, 255, 255, 0) 80%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 100%; }
}


.glass-panel {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  z-index: -1;
}

/* GLOSSARY-SPECIFIC STYLES */

/* Container */
.glossary-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.glossary-section h1.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

.glossary-intro {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ddd;
}

/* Search Bar */
.search-bar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.search-bar label {
  font-weight: 600;
  color: #ffd700;
}

.search-bar input {
  width: 250px;
  padding: 0.5rem;
  border: 2px solid #ffd700;
  border-radius: 4px;
  background: #000;
  color: #fff;
  outline: none;
}

/* Alphabetical Nav */
.alphabet-nav {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

.alphabet-nav a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 0.25rem;
  transition: color 0.3s;
}

.alphabet-nav a:hover {
  color: #ffea80;
}

/* Glossary Groups */
.glossary-group {
  margin-bottom: 3rem;
}

.glossary-group h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-shadow: 0 0 4px rgba(255,215,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.5rem;
}

dl {
  margin-left: 1rem; /* slight indent */
}

/* Each Term + Definition */
.glossary-entry {
  margin-bottom: 1rem;
}

.glossary-entry dt {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff; /* or #ffd700 to highlight the term */
  text-shadow: 0 0 2px rgba(255,215,0,0.7);
}

.glossary-entry dd {
  margin-left: 1rem; 
  color: #ddd;
  line-height: 1.5;
}




/*:::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY & BACKGROUND */
body {
  font-family: "Garamond", Georgia, serif;
  color: #fff;
  background: #000; /* Pure black background */
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}


/* LARGE GOLD FLAKES LAYER */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -2;
  background-image:
    radial-gradient(rgba(218, 165, 32, 0.4) 4px, transparent 4px),
    radial-gradient(rgba(218, 165, 32, 0.25) 4px, transparent 4px),
    radial-gradient(rgba(218, 165, 32, 0.35) 3px, transparent 3px),
    radial-gradient(rgba(218, 165, 32, 0.2) 3px, transparent 3px);
  background-repeat: repeat;
  background-size: 80px 80px, 100px 100px, 120px 120px, 90px 90px;
  animation: goldFlickerLarge 20s infinite linear alternate;
}

/* SMALL GOLD FLAKES LAYER */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(rgba(218, 165, 32, 0.3) 2px, transparent 2px),
    radial-gradient(rgba(218, 165, 32, 0.15) 2px, transparent 2px),
    radial-gradient(rgba(218, 165, 32, 0.35) 2px, transparent 2px),
    radial-gradient(rgba(218, 165, 32, 0.25) 1.5px, transparent 1.5px);
  background-repeat: repeat;
  background-size: 60px 60px, 70px 70px, 50px 50px, 90px 90px;
  animation: goldFlickerSmall 25s infinite linear alternate;
}

/* KEYFRAMES - LARGE FLAKES */
@keyframes goldFlickerLarge {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.3;
  }
  20% {
    background-position: 40px 60px, -20px 20px, 30px 70px, 10px 10px;
    opacity: 0.4;
  }
  40% {
    background-position: -30px 40px, 20px 80px, 50px 0, -40px 20px;
    opacity: 0.2;
  }
  60% {
    background-position: 0 60px, 60px 20px, -40px 30px, 80px 40px;
    opacity: 0.35;
  }
  80% {
    background-position: 20px -20px, -30px 50px, 40px 60px, 60px -10px;
    opacity: 0.3;
  }
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.4;
  }
}

/* KEYFRAMES - SMALL FLAKES */
@keyframes goldFlickerSmall {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.25;
  }
  20% {
    background-position: 20px 30px, -15px 50px, 10px 40px, 40px 10px;
    opacity: 0.35;
  }
  40% {
    background-position: -20px 60px, 30px 70px, 20px -40px, -30px 10px;
    opacity: 0.2;
  }
  60% {
    background-position: 40px 20px, 60px 0, -10px 30px, 30px 60px;
    opacity: 0.3;
  }
  80% {
    background-position: 10px -20px, -20px 20px, 40px 60px, 0 40px;
    opacity: 0.4;
  }
  100% {
    background-position: 0 0, 0 0, 0 0, 0 0;
    opacity: 0.25;
  }
}

/* STICKY NAVIGATION */
nav {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap; /* Ensures nav wraps on small screens */
}
nav li {
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
nav li::after {
  content: "";
  display: block;
  height: 3px;
  background: #ffd700;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  margin-top: 5px;
}
nav li:hover::after {
  transform: scaleX(1);
}
nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #ffd700;
}

/* HERO SECTION */
.hero {
  position: relative;
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* MAIN SECTIONS */
section {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

/* SECTION TITLES */
h2.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
h2.section-title::after {
  content: '';
  display: block;
  width: 50%;
  height: 3px;
  background: #ffd700;
  margin: 0.5rem auto;
  border-radius: 2px;
}

/* BLOG LIST & POST */
.blog-grid {
  display: grid;
  gap: 2rem;
  /* optional: auto-responsive columns */
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.blog-list-item {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.blog-list-item:hover {
  transform: scale(1.02);
}
.blog-list-item h3 {
  color: #ffd700;
  margin-bottom: 0.5rem;
}
.blog-post {
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* ABOUT / INSPIRATION */
.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.about-content blockquote {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  margin: 1rem 0;
  border-left: 4px solid #ffd700;
  font-style: italic;
  opacity: 0.9;
}

/* CONTACT PAGE */
.contact-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}
.contact-intro {
  font-family: "Garamond", Georgia, serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #ccc;
}
.contact-container {
  background: rgba(255, 255, 255, 0.07);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  max-width: 600px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-group {
  text-align: left;
}
.form-group label {
  display: block;
  font-family: "Candara", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
  font-weight: bold;
}
.form-group label span {
  color: #ff6961; /* for required fields asterisk */
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: "Garamond", Georgia, serif;
  font-size: 1rem;
  color: #fff;
  background: rgba(0,0,0,0.7);
  border: 2px solid #ffd700;
  border-radius: 4px;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}
.btn-submit {
  width: 120px;
  align-self: center;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-family: "Candara", "Trebuchet MS", sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-submit:hover {
  background: #ffea80;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  text-decoration: underline;
}


/* RESPONSIVE TWEAKS (Mobile) */
@media (max-width: 600px) {
  nav ul {
    gap: 1rem;
    justify-content: center;
  }
  .hero {
    min-height: 150px;
  }
  h2.section-title {
    font-size: 1.5rem;
  }
}

/* CHAPTER PROGRESS */
.chapter-progress-section {
  text-align: center;
  margin: 4rem auto;
}
.chapter-progress-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  border: 2px solid #ffd700;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  max-width: 400px;
  animation: goldenGlow 3s infinite alternate;
}
.chapter-progress-box p {
  font-family: "Garamond", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
.chapter-progress-box strong {
  color: #ffd700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}
@keyframes goldenGlow {
  0%   { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); }
  100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* ABOUT PAGE */
.about-page {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  text-align: center;
}
.portrait-container {
  margin: 2rem auto;
  max-width: 300px; 
  text-align: center;
}
.author-portrait {
  width: 100%;
  height: auto;
  border: 4px solid #ffd700;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.about-content {
  font-family: "Garamond", Georgia, serif;
  text-align: left;
  line-height: 1.6;
  color: #ddd;
}
.about-content p {
  margin-bottom: 1.5rem;
}
.about-content blockquote {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffd700;
  padding: 1rem;
  margin: 2rem 0;
  font-style: italic;
  opacity: 0.9;
}

/* VISION SECTION */
.vision-section {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.vision-content p {
  font-family: "Garamond", Georgia, serif;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #ddd;
}
.vision-content .excerpt {
  background: rgba(255, 255, 255, 0.07);
  border-left: 4px solid #ffd700;
  padding: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  opacity: 0.9;
}

/* GLOSSARY PAGE */
.glossary-section {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.glossary-section h1.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  color: #ffd700;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}
.glossary-intro {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ddd;
}
/* Search Bar */
.search-bar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.search-bar label {
  font-weight: 600;
  color: #ffd700;
}
.search-bar input {
  width: 250px;
  padding: 0.5rem;
  border: 2px solid #ffd700;
  border-radius: 4px;
  background: #000;
  color: #fff;
  outline: none;
}
/* Alphabetical Nav */
.alphabet-nav {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}
.alphabet-nav a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 0.25rem;
  transition: color 0.3s;
}
.alphabet-nav a:hover {
  color: #ffea80;
}
/* Glossary Groups */
.glossary-group {
  margin-bottom: 3rem;
}
.glossary-group h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
  text-shadow: 0 0 4px rgba(255,215,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 0.5rem;
}
dl {
  margin-left: 1rem; /* slight indent */
}
.glossary-entry {
  margin-bottom: 1rem;
}
.glossary-entry dt {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0 0 2px rgba(255,215,0,0.7);
}
.glossary-entry dd {
  margin-left: 1rem;
  color: #ddd;
  line-height: 1.5;
}





/*SOCIAL ICONS*/
.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-icons img {
  width: 32px;
  height: auto; /* Ensures icons retain aspect ratio */
  object-fit: contain; /* Helps avoid distortion */
  transition: transform 0.2s, filter 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px gold);
}

/* Adjust icon size for smaller screens */
@media (max-width: 600px) {
  .social-icons img {
    width: 28px;
  }
}

