@charset "UTF-8";
/* ========================================
   veda-guru.ai — Vedic Theme Overrides
   Inspired by the colours of Vedic tradition
   ======================================== */
/* --- Base --- */
body {
  background: #fef9ef;
  color: #3e2723;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Palatino", "Georgia", serif;
  color: #c0392b;
  letter-spacing: 0.02em;
}

h1 {
  border-bottom: 2px solid #e67e22;
  padding-bottom: 0.3em;
}

a {
  color: #c0392b;
  border-bottom: 1px dotted #e67e22;
}
a:hover {
  color: #e67e22;
  border-bottom-style: solid;
}

/* --- Header --- */
header {
  background: linear-gradient(135deg, #e67e22 0%, #c0392b 100%);
  padding: 1.5em 0;
  text-align: center;
  border-bottom: 4px solid #d4a017;
}
header .header-logo {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 0.3em;
}
header .header-logo-link {
  border: none;
}
header p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0.3em 0 0;
}

/* --- Hero logo --- */
.hero-logo {
  display: block;
  max-width: 200px;
  margin: 0 auto 1em;
}

/* --- Nav --- */
nav {
  background: #3e2723;
  padding: 0.6em 1em;
  text-align: center;
}
nav a {
  color: #fef9ef;
  border: none;
  margin: 0 0.8em;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
nav a:hover {
  color: #d4a017;
}

/* --- Om symbol accent --- */
.om-symbol {
  font-size: 3em;
  color: #e67e22;
  text-align: center;
  display: block;
  margin: 0.5em 0;
  opacity: 0.6;
}

/* --- Hero section --- */
.hero {
  text-align: center;
  padding: 3em 1em;
  background: linear-gradient(180deg, #f5e6cc 0%, #fef9ef 100%);
}
.hero h2 {
  font-size: 2em;
  color: #3e2723;
}
.hero p {
  font-size: 1.15em;
  max-width: 36em;
  margin: 1em auto;
}

.hero-cta {
  display: inline-block;
  background: #e67e22;
  color: #fff !important;
  padding: 0.7em 2em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  border: none !important;
  transition: background 0.2s;
}
.hero-cta:hover {
  background: rgb(191.3536585366, 101.3048780488, 21.6463414634);
}

/* --- Cards --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
  margin: 2em 0;
}

.card {
  background: #fff;
  border: 1px solid rgb(251.6, 234.6, 200.6);
  border-top: 4px solid #e67e22;
  padding: 1.5em;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.card h3 {
  margin-top: 0;
  color: #c0392b;
}

/* --- Feature list --- */
.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  padding: 0.6em 0;
  border-bottom: 1px solid rgb(252.2, 238.2, 210.2);
}
.feature-list li::before {
  content: "✦ ";
  color: #d4a017;
}

/* --- Code blocks --- */
pre, code {
  font-family: "Consolas", "Monaco", monospace;
  background: rgb(252.8, 241.8, 219.8);
  color: #3e2723;
}

pre {
  border-left: 3px solid #e67e22;
  padding: 1em;
}

/* --- Blockquotes --- */
blockquote {
  border-left: 4px solid #e67e22;
  background: rgba(230, 126, 34, 0.06);
  padding: 0.5em 1em;
  margin: 1em 0;
  font-style: italic;
  color: rgb(45.7010309278, 28.7474226804, 25.7989690722);
}

/* --- Footer --- */
footer {
  background: #3e2723;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 1.5em 0;
  margin-top: 3em;
  font-size: 0.9em;
}
footer a {
  color: #d4a017;
  border-color: #d4a017;
}

/* --- Page title --- */
.page-title {
  text-align: center;
  margin: 2em 0 1em;
  font-size: 1.8em;
}

/* --- Responsive --- */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.6em;
  }
  nav a {
    display: inline-block;
    margin: 0.4em;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */