/* =====================================================
   LIGHT GOLD THEME – Designed by ABD-RAHMAN FOFANA
   Elegant, minimal, high-end styling
===================================================== */

/* ===== GLOBAL ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffdf9; /* soft ivory white */
  color: #1f1f1f;
  line-height: 1.7;
}

h1, h2, h3 {
  color: #2c1b47; /* rich navy purple */
  margin-top: 0;
}

a {
  text-decoration: none;
  color: #a36b00; /* muted gold link */
  transition: color 0.3s ease;
}

a:hover {
  color: #ffb300;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: #2c1b47;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

header h1 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a.active {
  background-color: #f5c13a; /* elegant gold */
  color: #2c1b47;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  color: #2c1b47;
  background-color: #f9f7f2;
  padding: 120px 20px;
  border-bottom: 3px solid #f5c13a;
  margin-bottom: 50px;
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.hero .intro-text {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #3a2f53;
}

.cta-btn {
  display: inline-block;
  background-color: #f5c13a;
  color: #2c1b47;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #ffda63;
  transform: translateY(-3px);
}

/* ===== ABOUT SECTION ===== */
.about {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.about h2 {
  text-align: center;
  color: #2c1b47;
  margin-bottom: 15px;
}

.about p {
  color: #333;
}

.about ul {
  list-style-type: square;
  padding-left: 35px;
}

.about li strong {
  color: #a36b00;
}

/* ===== TOPICS SECTION ===== */
.topics {
  background-color: #f9f7f2;
  padding: 60px 20px;
}

.topics h2 {
  text-align: center;
  color: #2c1b47;
  margin-bottom: 30px;
}

.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.topics article {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.topics article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.topics img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.topics h3 a {
  color: #2c1b47;
  font-size: 1.25rem;
}

.topics h3 a:hover {
  color: #f5c13a;
}

/* ===== QUOTE SECTION ===== */
.quote {
  background-color: #2c1b47;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  margin-top: 70px;
}

.quote blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.5;
}

.quote-author {
  margin-top: 15px;
  font-weight: bold;
  color: #f5c13a;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #1e1334;
  color: #fff;
  font-size: 0.9rem;
  border-top: 3px solid #f5c13a;
}

footer p {
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.7rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  nav ul {
    gap: 10px;
  }

  .topics {
    grid-template-columns: 1fr;
  }
}
