/* ==========================================================================
   SHRI MOHANKHEDA TIRTH - PROFESSIONAL SAFFRON THEME
   Clean, Crisp, High-Contrast & Elegant Spiritual Portal
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-saffron: #D95300;
  --saffron-dark: #A63C00;
  --saffron-deep: #4A1A00;
  --saffron-light: #FF8542;
  --saffron-bg: #FFF8F3;
  --saffron-border: #FCD5C0;
  --gold-primary: #C59B27;
  --gold-light: #F9F2D6;
  --bg-page: #FAF7F2;
  --bg-card: #FFFFFF;
  --text-dark: #1F2937;
  --text-body: #4B5563;
  --text-muted: #6B7280;
  --border-light: #E5E7EB;
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 20px rgba(219, 83, 0, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: all 0.25s ease-in-out;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Notification Bar */
.top-bar {
  background: var(--saffron-deep);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-primary);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-info-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold-primary);
}

.mantra-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.775rem;
  letter-spacing: 0.5px;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--primary-saffron);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  background: var(--primary-saffron);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-saffron);
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.725rem;
  color: var(--saffron-dark);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-saffron);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-saffron);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-primary {
  background: var(--primary-saffron);
  color: #FFFFFF;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  box-shadow: 0 2px 6px rgba(217, 83, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--saffron-dark);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-saffron);
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid var(--primary-saffron);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--primary-saffron);
  color: #FFFFFF;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary-saffron);
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(20, 8, 0, 0.72) 0%, rgba(74, 26, 0, 0.88) 100%),
              url('../images/mohankheda_main_temple_1785866952818.jpg') center/cover no-repeat;
  color: #FFFFFF;
  padding: 4rem 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--gold-primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #F3F4F6;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 0.75rem;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.825rem;
  color: #E5E7EB;
  margin-top: 0.2rem;
}

/* Section Common Styling */
.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.section-subtitle {
  color: var(--primary-saffron);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 0.85rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary-saffron);
  margin: 0.65rem auto 0 auto;
  border-radius: 2px;
}

.section-desc {
  color: var(--text-body);
  font-size: 0.975rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-badge-card {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--primary-saffron);
  color: #FFFFFF;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--gold-primary);
  max-width: 250px;
}

.about-badge-card h4 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.about-badge-card p {
  font-size: 0.8rem;
  color: #FFF2EA;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--primary-saffron);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-content p {
  margin-bottom: 1.25rem;
  color: var(--text-body);
  font-size: 0.975rem;
  line-height: 1.7;
}

.highlight-box {
  background: var(--saffron-bg);
  border-left: 4px solid var(--primary-saffron);
  padding: 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--saffron-border);
  border-right: 1px solid var(--saffron-border);
  border-bottom: 1px solid var(--saffron-border);
}

.highlight-box p {
  color: var(--saffron-dark);
  font-weight: 500;
  margin-bottom: 0;
  font-style: italic;
}

/* Gurudev Section (Reference to Acharya Shri Rajendrasurishwarji) */
.gurudev-section {
  background: var(--saffron-deep);
  color: #FFFFFF;
  position: relative;
}

.gurudev-section .section-title {
  color: #FFFFFF;
}

.gurudev-section .section-subtitle {
  color: var(--gold-primary);
}

.gurudev-section .section-desc {
  color: #E5E7EB;
}

.gurudev-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.gurudev-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.25rem;
  border-radius: var(--radius-md);
}

.gurudev-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.gurudev-subtitle {
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.gurudev-text {
  color: #E5E7EB;
  line-height: 1.75;
  margin-bottom: 1.15rem;
  font-weight: 300;
  font-size: 0.95rem;
}

.kosh-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--gold-primary);
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  margin-top: 1.25rem;
}

.kosh-box h5 {
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.kosh-box p {
  color: #D1D5DB;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.timeline-item {
  display: flex;
  gap: 1.15rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.timeline-item:hover {
  border-color: var(--gold-primary);
}

.timeline-year {
  background: var(--gold-primary);
  color: var(--saffron-deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  height: fit-content;
  white-space: nowrap;
}

.timeline-content h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.timeline-content p {
  color: #D1D5DB;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Shrines Section */
.shrines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.shrine-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.shrine-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.shrine-img-box {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.shrine-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shrine-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-saffron);
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
}

.shrine-body {
  padding: 1.5rem;
}

.shrine-body h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-saffron);
  margin-bottom: 0.65rem;
}

.shrine-body p {
  color: var(--text-body);
  font-size: 0.925rem;
  line-height: 1.6;
}

/* Facilities Section */
.facilities-section {
  background: var(--saffron-bg);
  border-top: 1px solid var(--saffron-border);
  border-bottom: 1px solid var(--saffron-border);
}

.facility-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  color: var(--text-dark);
  padding: 0.5rem 1.15rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-saffron);
  color: #FFFFFF;
  border-color: var(--primary-saffron);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.facility-card {
  background: #FFFFFF;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  position: relative;
}

.facility-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-saffron);
}

.facility-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--saffron-bg);
  border: 1px solid var(--saffron-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-saffron);
  margin-bottom: 1.15rem;
}

.facility-icon-wrap svg {
  width: 26px;
  height: 26px;
  fill: var(--primary-saffron);
}

.facility-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary-saffron);
  margin-bottom: 0.5rem;
}

.facility-card p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.facility-list {
  padding-top: 0.75rem;
  border-top: 1px solid #F3F4F6;
}

.facility-list li {
  font-size: 0.825rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.facility-list li::before {
  content: '✓';
  color: var(--primary-saffron);
  font-weight: bold;
}

/* Timings & Fairs Section */
.info-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.info-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--saffron-bg);
}

.info-card-header svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-saffron);
}

.info-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-saffron);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 0.925rem;
}

.timing-row:last-child {
  border-bottom: none;
}

.timing-label {
  font-weight: 500;
  color: var(--text-dark);
}

.timing-value {
  color: var(--primary-saffron);
  font-weight: 600;
}

.fair-item {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px dashed #E5E7EB;
}

.fair-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fair-name {
  font-weight: 700;
  color: var(--primary-saffron);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.fair-date {
  color: var(--saffron-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.fair-desc {
  font-size: 0.875rem;
  color: var(--text-body);
}

/* Footer Section */
.site-footer {
  background: var(--saffron-deep);
  color: #FFFFFF;
  padding: 4.5rem 0 2rem 0;
  border-top: 4px solid var(--primary-saffron);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}

.footer-brand p {
  color: #E5E7EB;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gold-primary);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 0.825rem;
  font-weight: 500;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #D1D5DB;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.contact-detail-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #E5E7EB;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-detail-list svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-numbers span {
  display: block;
  font-weight: 600;
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #D1D5DB;
}

.blessing-text {
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.8px;
}

/* Floating Action Button */
.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--primary-saffron);
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid #FFFFFF;
}

.floating-btn:hover {
  background: var(--saffron-dark);
  transform: scale(1.08);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  fill: #FFFFFF;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .about-grid, .gurudev-grid, .info-box-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .nav-links.show {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
