html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.8;
  background: #ffffff;
  color: #222;
}

.section {
  padding: 80px 0;
}

#home.section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2e3192;
}

.section-title {
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #2e3192, #d4a017);
  transition: width 1.2s ease;
  border-radius: 3px;
}

.fade-section.visible .section-title::after {
  width: 80px;
}



.bg-soft-spiritual {
  background: linear-gradient(135deg, #f7f9ff, #eef1ff);
}

.bg-energy {
  background: linear-gradient(
        180deg,
        rgba(20,20,30,0.02),
        rgba(20,20,30,0.06)
    );
}

.bg-image-section {
  background: linear-gradient(
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.75)
    ),
    url("assets/img/janaaism.jpeg") center/cover no-repeat;
  color: #ffffff;
}

#home {
  position: relative;
  width: 100%;
   min-height: 100svh;
  overflow: hidden;
}

#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.25)
    );
  z-index: 2;
}

#homeCarousel,
#homeCarousel .carousel-inner,
#homeCarousel .carousel-item {
  height: 100%;
}

.home-slide-img {
  width: 100%;
  height: 100vh;
   min-height: 100svh;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05);
}

.home-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  padding: 15px;
}

.under-construction {
  background: rgba(0,0,0,0.65);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  display: inline-block;
  color: #fff3cd;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ================= VAJRAPRAN CONTENT REVEAL ================= */

.fade-section {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


/* Paragraph Awareness Flow */
.fade-section.visible p,
.fade-section.visible li {
  animation: awarenessFlow 1s ease forwards;
  opacity: 0;
}

.fade-section.visible p:nth-child(1) { animation-delay: 0.1s; }
.fade-section.visible p:nth-child(2) { animation-delay: 0.2s; }
.fade-section.visible p:nth-child(3) { animation-delay: 0.3s; }
.fade-section.visible p:nth-child(4) { animation-delay: 0.4s; }
.fade-section.visible p:nth-child(5) { animation-delay: 0.5s; }

@keyframes awarenessFlow {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Paragraph Awareness Flow */
.fade-section.visible p,
.fade-section.visible li {
  animation: awarenessFlow 1s ease forwards;
  opacity: 0;
}

.fade-section.visible p:nth-child(1) { animation-delay: 0.1s; }
.fade-section.visible p:nth-child(2) { animation-delay: 0.2s; }
.fade-section.visible p:nth-child(3) { animation-delay: 0.3s; }
.fade-section.visible p:nth-child(4) { animation-delay: 0.4s; }
.fade-section.visible p:nth-child(5) { animation-delay: 0.5s; }

@keyframes awarenessFlow {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stream-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.stream-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.btn-primary {
  background: linear-gradient(135deg, #2e3192, #d4a017  );
  border: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
}

.btn-primary:hover {
  opacity: 0.9;
}

#goTopBtn {
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e3192, #d4a017  );
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

#goTopBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

#goTopBtn.show {
  display: flex;
}

.content-img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.img-lift:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(246,188,55,0.25);
}

footer {
  background: #0d0d0d;
  color: #ccc;
  padding: 40px 0;
}

footer a {
  color: #d4a017;
}

.footer-spiritual {
  background: linear-gradient(
        rgba(15, 18, 60, 0.95),
        rgba(15, 18, 60, 0.85)
    );
  color: #ffffff;
}

.footer-spiritual a {
  color: #ef8112;
  text-decoration: none;
}

.footer-spiritual a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-social i {
  font-size: 1.2rem;
  margin: 0 10px;
  color: #ef8112;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social i:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.social-icon i,
.footer-link {
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover i,
.footer-link:hover {
  background: linear-gradient(45deg, #2e3192, #d4a017  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.sith-navbar {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  padding: 10px 0;
}

.navbar-logo {
  height: 38px;
  margin-right: 10px;
}

.brand-text {
  color: #d4a017;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.sith-navbar .nav-link {
  color: #ffffff;
  font-weight: 500;
  margin-left: 18px;
  position: relative;
  transition: color 0.3s ease;
}

.sith-navbar .nav-link:hover {
  color: #d4a017;
  text-shadow: 0 0 4px rgba(212,160,23,0.5);
}

.sith-navbar .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #d4a017;
  left: 0;
  bottom: -6px;
  transition: width 0.3s ease;
}

.sith-navbar .nav-link:hover::after {
  width: 100%;
}

.sith-navbar .nav-link.active {
  color: #d4a017;
}

.sith-dropdown {
  background: rgba(0, 0, 0, 0.95);
  border-radius: 12px;
  border: none;
}

.sith-dropdown .dropdown-item {
  color: #ffffff;
  font-weight: 500;
}

.sith-dropdown .dropdown-item:hover {
  background: #d4a017;
  color: #000;
}

.dropdown-toggle::after {
  display: none !important;
}

.dropdown-icon {
  margin-left: 6px;
  font-size: 0.8rem;
  color: #d4a017;
  transition: transform 0.3s ease;
}

.nav-item.show .dropdown-icon {
  transform: rotate(180deg);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .btn-center-mobile {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(0,0,0,0.95);
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
  }
  
  .sith-navbar .nav-link {
    margin: 12px 0;
    text-align: center;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
  
  h2, h3 {
    font-size: 1.6rem;
  }
  
  .home-slide-img {
    height: 75vh;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .home-slide-img {
    height: 70vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .home-slide-img {
    height: 55vh;
  }
}
/* ================= VAJRAPRAN IMAGE ENERGY ================= */

.vajrapran-energy {
  position: relative;
  overflow: hidden;
}

/* Energy Aura */
.vajrapran-energy::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle,
    rgba(212,160,23,0.35),
    rgba(46,49,146,0.15),
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
  pointer-events: none;
}

/* Energy Flow Lines */
.vajrapran-energy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255,255,255,0.15),
    transparent 80%
  );
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 1.2s ease, opacity 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

/* Hover / Focus */
.vajrapran-energy:hover::before {
  opacity: 1;
}

.vajrapran-energy:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

/* Vajra Pulse (slow breathing glow) */
.vajrapran-energy {
  animation: vajraPulse 8s ease-in-out infinite;
}

@keyframes vajraPulse {
  0% {
    box-shadow: 0 0 0 rgba(212,160,23,0.0);
  }
  50% {
    box-shadow:
      0 0 40px rgba(212,160,23,0.25),
      0 0 80px rgba(46,49,146,0.15);
  }
  100% {
    box-shadow: 0 0 0 rgba(212,160,23,0.0);
  }
}

/* Stronger Effect when visible */
.vajrapran-energy.awakened {
  animation: vajraPulseStrong 6s ease-in-out infinite;
}

@keyframes vajraPulseStrong {
  0% {
    box-shadow: 0 0 20px rgba(212,160,23,0.25);
  }
  50% {
    box-shadow:
      0 0 60px rgba(212,160,23,0.45),
      0 0 120px rgba(46,49,146,0.35);
  }
  100% {
    box-shadow: 0 0 20px rgba(212,160,23,0.25);
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .vajrapran-energy {
    animation-duration: 10s;
  }
}

.home-slide-img {
  animation: homeEnergyBreath 12s ease-in-out infinite;
}

@keyframes homeEnergyBreath {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.fade-section.visible {
  animation: sectionBreath 8s ease-in-out infinite;
}

@keyframes sectionBreath {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
.vajra-focus {
  position: relative;
  padding-left: 14px;
}

.vajra-focus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #d4a017, #2e3192);
  transition: height 1s ease;
  border-radius: 2px;
}

.fade-section.visible .vajra-focus::before {
  height: 80%;
}
#homeCarousel,
#homeCarousel .carousel-inner,
#homeCarousel .carousel-item {
  height: 100%;
}
