/* =========================================
   SRI SRI MAA ANNAPURNA BRANDING SYSTEM
========================================= */

/* ===== Custom Fonts ===== */
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/Merriweather_120pt-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/Merriweather_120pt-SemiBold.ttf') format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/Merriweather_120pt-Bold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/Merriweather_120pt-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

/* ===== Brand Variables ===== */
:root {
  --brand-primary: #b98036;
  --brand-secondary: #823200;
  --brand-light: #fff8f0;
  --brand-dark: #2c2c2c;
  --brand-accent: #d4af37;
}

/* ===== Global Body ===== */
body {
  font-family: 'Merriweather', serif;
  background-color: var(--brand-light);
  color: var(--brand-dark);
  line-height: 1.6;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--brand-secondary);
}

.lead {
  color: var(--brand-dark);
}

/* ===== Links ===== */
a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--brand-secondary);
}

/* =========================================
   BOOTSTRAP BUTTON BRAND OVERRIDE
========================================= */

/* Primary Button = Temple Gold */
.btn-primary {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-primary:hover {
  background-color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

/* Custom Brand Button */
.btn-brand {
  background-color: var(--brand-secondary);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-brand:hover {
  background-color: var(--brand-primary);
  transform: translateY(-2px);
}

/* =========================================
   FORM BRANDING
========================================= */

.form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Merriweather', serif;
}

.form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(185, 128, 54, 0.25);
}

/* =========================================
   BACKGROUND UTILITIES
========================================= */

.bg-brand-primary {
  background-color: var(--brand-primary) !important;
  color: #fff;
}

.bg-brand-secondary {
  background-color: var(--brand-secondary) !important;
  color: #fff;
}

.text-brand-primary { color: var(--brand-primary) !important; }
.text-brand-secondary { color: var(--brand-secondary) !important; }
.text-brand-accent { color: var(--brand-accent) !important; }

/* =========================================
   CARD ENHANCEMENT
========================================= */

.card {
  border-radius: 12px;
  border: none;
}

.card.shadow-sm {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

/* =========================================
   FOOTER BRANDING
========================================= */

footer {
  font-size: 0.9rem;
}

footer a {
  font-weight: 600;
  color: var(--brand-primary);
}

footer a:hover {
  color: var(--brand-accent);
}

/* =========================================
   SUBTLE ANIMATION
========================================= */

.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
