/* ===== Maa Katyayani Theme Colors ===== */
:root {
  --saffron: #ff8c00;        /* divine saffron energy */
  --deep-maroon: #5b0b15;    /* devotion and power */
  --crimson: #b71c1c;        /* fierce courage */
  --golden: #ffcc70;         /* divine golden aura */
  --light-bg: #fff8f0;       /* soft saffron mist */
  --light-accent: #ffe6cc;   /* pale saffron tone */
  --dark-text: #3b2a2a;      /* earthy balance */
  --light-text: #fdf2f8;     /* gentle light */
}

/* ===== General Body ===== */
body {
  background-color: var(--light-bg);
  color: var(--dark-text);
  font-family: 'Newsreader', serif;
  margin: 0;
  padding: 0;
  transition: background-color 0.3s, color 0.3s;
  line-height: 1.6;
}


/* ===== Section Styling ===== */
section {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
section:nth-child(even) {
  background-color: var(--light-accent);
}

/* ===== Header Section ===== */
header#home {
  background: linear-gradient(to bottom, var(--light-bg), var(--light-accent));
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--saffron);
}

/* ===== Navbar & Footer Harmony ===== */
nav.navbar,
footer {
  background: linear-gradient(to right, var(--light-bg), var(--light-accent));
  box-shadow: 0 2px 6px rgba(183, 28, 28, 0.15);
}

/* ===== Decorative Divider (sacred aura) ===== */
.floral-border {
  width: 160px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--crimson), transparent);
  margin: 0.75rem auto 1rem;
  border-radius: 3px;
}

/* ===== Scroll to Top Button ===== */
#goTopBtn {
  background: var(--crimson);
  color: #fff;
}
#goTopBtn:hover {
  background: var(--deep-maroon);
  box-shadow: 0 0 12px rgba(183, 28, 28, 0.7);
}

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
  color: var(--crimson) !important;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* ===== Paragraphs ===== */
p {
  margin-bottom: 1rem;
}

/* ===== Links ===== */
a {
  color: var(--saffron);
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.lead-custom {
  font-weight: 500;
}

/* ===== Blockquotes (for Mantra) ===== */
blockquote {
  border-left: 4px solid var(--crimson);
  padding-left: 1rem;
  font-style: italic;
  color: var(--deep-maroon);
  background: rgba(183, 28, 28, 0.08);
  border-radius: 6px;
}

/* ===== Image Styling ===== */
img {
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* ===== Footer Text ===== */
footer p {
  margin: 0.25rem 0;
}
footer .highlight-kartik {
  font-weight: 700;
  text-shadow: 0 0 4px rgba(255, 140, 0, 0.4);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 12px;              /* scrollbar width */
}

::-webkit-scrollbar-track {
  background: #fff8f0;      /* soft saffron mist */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff8c00, #b71c1c); /* saffron → crimson */
  border-radius: 10px;
  border: 2px solid #fff8f0; /* gives a "pill" look */
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ffb84d, #800000); /* glowing saffron → deep maroon */
  box-shadow: 0 0 8px rgba(255, 140, 0, 0.6);
}

/* ===== Firefox Scrollbar ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: #b71c1c #fff8f0; /* thumb | track */
}
