/* ================================
   ROOT COLORS & VARIABLES
================================ */
:root {
  --saffron: #E8751A;
  --saffron-light: #F5A142;

  --gold: #C8922A;
  --gold-light: #F0C060;

  --maroon: #7B1C2A;
  --maroon-dark: #4A0E14;

  --cream: #FDF6E8;
  --white: #ffffff;

  --text-dark: #2A1506;
  --text-light: #8B6040;

  --border-gold: rgba(200,146,42,0.3);
}

/* ================================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================
   SECTION SPACING
================================ */
section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  background: #F0C060 !important;
  border-bottom: 2px solid var(--gold);
}

.navbar .nav-link {
    color: var(--maroon-dark) !important;
    font-size: 0.85rem;
    font-weight: 700 !important;
}

.navbar .nav-link:hover {
    color: var(--maroon-dark) !important;
}

/* ================================
   BUTTONS
================================ */
.btn-primary-temple {
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary-temple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,117,26,0.4);
  color: #fff;
}

.btn-outline-temple {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline-temple:hover {
  background: var(--gold);
  color: #fff;
}

/* ================================
   SECTION TITLES
================================ */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--maroon-dark);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: auto;
}

/* ================================
   GOLD LINE DECORATION
================================ */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  margin: 12px auto;
  border-radius: 2px;
}

/* ================================
   ANNOUNCEMENT BAR
================================ */
.announce-bar {
  background: var(--maroon-dark);
  color: var(--gold-light);
  padding: 6px 0;
  font-size: 0.85rem;
}

.announce-bar span {
  margin-right: 20px;
}

/* ================================
   STATS SECTION
================================ */
.stats-strip {
  background: var(--maroon-dark);
  color: white;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: bold;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* ================================
   FESTIVAL CARDS
================================ */
.festival-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: 0.3s;
  height: 100%;
}

.festival-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(92,51,23,0.15);
}

.festival-card-header {
  background: var(--maroon);
  color: var(--gold-light);
  padding: 15px;
}

.festival-card-body {
  padding: 15px;
  color: var(--text-light);
}

/* ================================
   GALLERY
================================ */
.gallery-item img {
  width: 100%;
  border-radius: 4px;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
  background: var(--gold);
  color: #000;
  text-align: center;
}

.cta-section h3 {
  font-weight: 700;
}

/* ================================
   FOOTER
================================ */
footer {
  background: var(--maroon-dark);
  color: white;
}

footer p {
  margin: 0;
  font-size: 0.85rem;
}

/* ================================
   UTILITIES
================================ */
.mt-4 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1rem; }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .section-title {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

}