/* ===== HERO ===== */
.insp-hero {
  background: linear-gradient(
    rgba(107,15,26,0.88),
    rgba(107,15,26,0.88)
  ),
  url("https://images.unsplash.com/photo-1501785888041-af3ef285b470");
  background-size: cover;
  background-position: center;
  padding: 110px 20px;
  text-align: center;
  color: #fff;
}

.insp-hero h1 {
  font-size: 40px;
}

.insp-hero p {
  color: #f4c430;
  margin-top: 10px;
}

/* ===== INTRO ===== */
.insp-intro {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* ===== SECTION ===== */
.insp-section {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 80px;
}

.insp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ===== CARD ===== */
.insp-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.insp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0,0,0,0.18);
}

.insp-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.insp-card h3 {
  color: #6b0f1a;
  margin: 18px;
}

.insp-card p {
  font-size: 14px;
  line-height: 1.7;
  padding: 0 18px 22px;
  color: #555;
}

/* ===== QUOTE ===== */
.insp-quote {
  background: #6b0f1a;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-size: 20px;
  font-style: italic;
}

.insp-quote p {
  max-width: 700px;
  margin: auto;
  color: #f4c430;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  /* opacity: 0; */
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .insp-hero h1 {
    font-size: 28px;
  }
}





/* ================= INSPIRATIONAL TIMELINE ================= */

.inspiration-timeline {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff7da, #ffffff);
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #6b0f1a;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #6b0f1a;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 30px;
  /* opacity: 0; */
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-dot {
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #f4c430;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(244,196,48,0.7);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-content {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  color: #6b0f1a;
  margin-bottom: 10px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: 60px;
  }

  .timeline-dot {
    left: 10px !important;
    right: auto;
  }
}




.timeline-dot {
  transform: none !important;
  transition: none !important;
  box-shadow: none !important;
}

.timeline-item:hover .timeline-content,
.timeline-item:focus-within .timeline-content {
  transform: scale(1.06);
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(107,15,26,0.35);
  transition: all 0.35s ease;
}

/* subtle text emphasis */
.timeline-item:hover .timeline-content h3,
.timeline-item:hover .timeline-content p {
  color: #6b0f1a;
}


.timeline-content {
  transition: all 0.35s ease;
}


.timeline-item.clicked .timeline-content {
  transform: scale(1.06);
  font-weight: 600;
  box-shadow: 0 18px 45px rgba(107,15,26,0.35);
}








.prabhupada-section {
  background: #FFF8E7;
  padding: 90px 20px;
  text-align: center;
}

.prabhupada-image {
  width: 270px;
  height: 260px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.prabhupada-bio h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #8B5E3C;
}

.prabhupada-bio p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* Shloka styling */

.shloka-container {
  /* opacity: 0; */
  transform: translateY(30px);
  transition: all 1.2s ease;
  max-width: 750px;
  margin: 0 auto;
}

.prabhupada-section.active .shloka-container {
  opacity: 1;
  transform: translateY(0);
}

.shloka {
  font-size: 22px;
  font-weight: 600;
  color: #7A4E2D;
  line-height: 1.7;
}

.translation {
  margin-top: 15px;
  font-size: 17px;
  font-style: italic;
  color: #444;
}

.reference {
  margin-top: 8px;
  font-size: 14px;
  color: #888;
}

.prabhupada-quote {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #E5D3B3;
}

.prabhupada-quote p {
  font-size: 16px;
  font-style: italic;
  color: #6B4C2A;
}

.prabhupada-quote span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

/* Mobile Responsive */

@media (max-width: 768px) {

  .prabhupada-image {
    width: 500px;
    height: 600px;
  }

  .shloka {
    font-size: 18px;
  }

  .translation {
    font-size: 15px;
  }

  .prabhupada-bio h2 {
    font-size: 18px;
  }
}



@media (max-width: 768px) {
  .prabhupada-image {
    max-width: 250px; 
   
    
      max-height: 250px;
  }
}




@media (max-width: 900px) {
  
  #mainNav {
    display: none; 
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%; 
    left: 0;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  #mainNav.active {
    display: block; 
  }

 
  #mainNav ul {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #mainNav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fdf5e6; 
  }

  #mainNav ul li a {
    display: block;
    padding: 15px 20px;
    color: #6b0f1a; 
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s;
  }

  #mainNav ul li a:hover {
    background: #fff7da; /
  }

 
  .dropdown-panel {
    position: static !important; 
    display: none;
    background: #fffcf0;
    width: 100%;
    box-shadow: none !important;
  }

  .has-dropdown.open .dropdown-panel {
    display: block !important;
  }
}



@media (max-width: 900px) {
  
  #mainNav {
    display: none; 
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%; 
    left: 0;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  #mainNav.active {
    display: block; 
  }

  
  #mainNav ul {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #mainNav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fdf5e6; 
  }

  #mainNav ul li a {
    display: block;
    padding: 15px 20px;
    color: #6b0f1a; 
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s;
  }

  #mainNav ul li a:hover {
    background: #fff7da; /
  }

 
  .dropdown-panel {
    position: static !important; 
    display: none;
    background: #fffcf0;
    width: 100%;
    box-shadow: none !important;
  }

  .has-dropdown.open .dropdown-panel {
    display: block !important;
  }
}