/*
Theme Name: Vedic Sanatan Board
Theme URI: https://vedicsanatanboard.com
Author: Vedic Sanatan Board
Author URI: https://vedicsanatanboard.com
Description: A simple, informative WordPress theme for Vedic Sanatan Board.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: vedic-sanatan-board
*/

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-saffron: #FF6B35;
  --color-maroon: #8B0000;
  --color-gold: #DAA520;
  --color-cream: #FFF8DC;
  --color-brown: #3E2723;
  --color-white: #FFFFFF;
  --color-light-gold: #F5E6C8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-brown);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-saffron);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-maroon);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-maroon);
}

.site-header {
  background: var(--color-maroon);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  text-decoration: none;
}

.site-logo img {
  height: 45px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1.2;
}

.site-logo .logo-subtitle {
  font-size: 0.7rem;
  color: var(--color-light-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
}

.main-nav a {
  color: var(--color-cream);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--color-saffron);
  color: var(--color-white);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-maroon) 0%, #5C0000 50%, var(--color-brown) 100%);
  color: var(--color-white);
  padding: 80px 20px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(218, 165, 32, 0.08) 31%, rgba(218, 165, 32, 0.08) 32%, transparent 33%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(218, 165, 32, 0.06) 46%, rgba(218, 165, 32, 0.06) 47%, transparent 48%),
    radial-gradient(circle at 50% 50%, transparent 60%, rgba(218, 165, 32, 0.04) 61%, rgba(218, 165, 32, 0.04) 62%, transparent 63%),
    radial-gradient(circle at 50% 50%, transparent 75%, rgba(218, 165, 32, 0.03) 76%, rgba(218, 165, 32, 0.03) 77%, transparent 78%);
  opacity: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--color-cream));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-om {
  font-size: 4rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(218, 165, 32, 0.4);
}

.hero h1 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--color-light-gold);
  margin-bottom: 32px;
  font-weight: 300;
}

.hero .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-saffron);
  color: var(--color-white);
  border-color: var(--color-saffron);
}

.btn-primary:hover {
  background: #E55A25;
  border-color: #E55A25;
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-maroon);
}

.section {
  padding: 80px 20px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--color-maroon);
}

.section-header .divider {
  width: 80px;
  height: 3px;
  background: var(--color-saffron);
  margin: 16px auto;
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--color-maroon);
}

.about-text p {
  margin-bottom: 16px;
  color: #555;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 24px;
  background: var(--color-cream);
  border-radius: 8px;
  border-left: 4px solid var(--color-saffron);
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-saffron);
  display: block;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.initiatives-section {
  background: var(--color-cream);
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.initiative-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid transparent;
}

.initiative-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top-color: var(--color-saffron);
}

.initiative-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-saffron);
}

.initiative-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--color-maroon);
}

.initiative-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.events-section {
  background: var(--color-white);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--color-cream);
  border-radius: 8px;
  align-items: center;
  border-left: 4px solid var(--color-gold);
  transition: transform 0.2s;
}

.event-item:hover {
  transform: translateX(4px);
}

.event-date {
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}

.event-date .day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-saffron);
  line-height: 1;
}

.event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.event-details h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--color-maroon);
}

.event-details p {
  font-size: 0.9rem;
  color: #666;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-maroon) 0%, #5C0000 100%);
  color: var(--color-white);
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--color-light-gold);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-section .btn-primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-maroon);
}

.cta-section .btn-primary:hover {
  background: var(--color-saffron);
  border-color: var(--color-saffron);
  color: var(--color-white);
}

.cta-section .btn-outline {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.cta-section .btn-outline:hover {
  background: var(--color-cream);
  color: var(--color-maroon);
}

.site-footer {
  background: var(--color-brown);
  color: var(--color-light-gold);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand h3 {
  color: var(--color-gold);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #bbb;
}

.footer-links h4 {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-saffron);
}

.footer-contact h4 {
  color: var(--color-gold);
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 8px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #555;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 992px) {
  .initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-maroon);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }
  .main-nav a {
    display: block;
    padding: 12px 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .tagline {
    font-size: 1rem;
  }
  .initiatives-grid {
    grid-template-columns: 1fr;
  }
  .event-item {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
}

