/*
Theme Name: Reading India
Theme URI: https://readingindia.in
Author: Reading India Team
Author URI: https://readingindia.in
Description: A literacy and reading promotion theme for Reading India — empowering communities through books, events, and education.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: readingindia
Tags: education, nonprofit, literacy, reading, community
*/

/* =========================================================
   THEME OVERRIDES (Tailwind handles the rest)
   ========================================================= */
.text-gradient-tricolor {
    background: linear-gradient(to right, #FF9933, #000080, #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bento-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card:hover {
    transform: translateY(-4px);
    border-color: #000080;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
/* =========================================================
   LEGACY — kept for non-home page templates
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:   #E8581A;   /* saffron orange */
  --secondary: #1A6E3C;   /* forest green */
  --accent:    #F5C518;   /* gold */
  --dark:      #1C1C1C;
  --gray:      #555555;
  --light-gray:#F4F4F4;
  --white:     #FFFFFF;
  --font-main: 'Noto Sans', 'Segoe UI', sans-serif;
  --font-head: 'Playfair Display', Georgia, serif;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --transition:0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.3;
  color: var(--dark);
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.4rem;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.section-title .title-line {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
}
.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-secondary:hover {
  background: transparent;
  color: var(--secondary);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* Tags */
.tag {
  display: inline-block;
  background: rgba(232,88,26,0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
