:root {
  --janaa-gold: #f6bc37;
  --janaa-dark: #111;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  line-height: 1.7;
}

.section {
  padding: 100px 0;
  scroll-margin-top: 90px;
}

.navbar .nav-link {
  position: relative;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #000;
  transition: width 0.3s ease, left 0.3s ease;
  left: 50%;
}

.navbar .nav-link:hover::after {
  width: 100%;
  left: 0;
}

.navbar .nav-link:hover {
  color: #000;
}

.navbar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .3s ease, box-shadow .3s ease;
  z-index: 999;
}

.navbar.scrolled {
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--janaa-gold);
  font-weight: 500;
}

.hero-section {
  padding-top: 120px;
}

.hero-media {
  width: 100%;
  max-height: 75vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center top;
}

.hero-content {
  margin-top: 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: var(--janaa-gold);
}

.hero-overlay h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 20px;
}

.hero-overlay p {
  max-width: 760px;
  font-size: 1.1rem;
}

.hero-overlay span {
  font-style: italic;
  margin-top: 12px;
}

.section.dark {
  background: var(--janaa-dark);
  color: var(--janaa-gold);
}

.janaa-footer {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  color: #bbb;
  text-align: center;
  padding: 80px 20px 40px;
  font-size: 0.95rem;
}

.footer-divider {
  width: 140px;
  height: 1px;
  background: var(--janaa-gold);
  margin: 40px auto 20px;
  opacity: 0.6;
}

.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);
}

.img-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 1s ease, transform 1s ease;
}

.img-reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes breathing{

  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }

}

.img-breathing {
  animation: breathing 6s ease-in-out infinite;
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

#janaaism {
  position: relative;
  padding-top: 120px;
}

#janaaism .hero-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  margin-bottom: 40px;
}

.nav-link {
  letter-spacing: 0.04em;
}

.janaa-quote {
  max-width: 700px;
  margin: 60px auto;
  text-align: right;
  font-style: italic;
}

.janaa-quote footer {
  margin-top: 12px;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--janaa-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.symbol {
  max-width: 320px;
  margin: 50px auto;
}

.footer-title {
  color: var(--janaa-gold);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-text {
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--janaa-gold);
}

.footer-social a {
  display: inline-block;
  margin-left: 12px;
  color: var(--janaa-gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 8px;
  font-size: 1.3rem;
}

.footer-social a:first-child {
  margin-left: 0;
}

.footer-social a:hover {
  color: var(--janaa-gold);
}

.footer-copy {
  font-size: 0.85rem;
  color: #888;
  letter-spacing: 0.04em;
}

.footer-menu a:hover, .footer-social a:hover {
  color: #f6bc37;
}

.janaa-footer a {
  position: relative;
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.janaa-footer a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: var(--janaa-gold);
  left: 50%;
  bottom: 0;
  transition: width 0.3s ease, left 0.3s ease;
}

.janaa-footer a:hover::after {
  width: 100%;
  left: 0;
}

.janaa-footer a:hover {
  color: var(--janaa-gold);
}

.footer-summary {
  max-width: 720px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #bbb;
}

.janaa-navbar {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.janaa-navbar.scrolled {
  background: rgba(5, 5, 5, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.janaa-navbar .nav-link {
  color: #f6bc37;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.janaa-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f6bc37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.janaa-navbar .nav-link:hover,
.janaa-navbar .nav-link.active {
  color: #ffd873;
}

.janaa-navbar .nav-link:hover::after,
.janaa-navbar .nav-link.active::after {
  width: 100%;
}

.janaa-navbar .nav-logo {
  height: 40px;
}

.navbar-toggler {
  border-color: rgba(246,188,55,0.4);
}

.navbar-toggler-icon {
  filter: invert(85%);
}

#goTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(246, 188, 55, 0.5);
  color: #f6bc37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
}

#goTopBtn i {
  font-size: 18px;
}

#goTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#goTopBtn:hover {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 18px rgba(246, 188, 55, 0.45);
  transform: translateY(-2px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(246, 188, 55, 0.35);
  box-shadow: 0 0 35px rgba(246, 188, 55, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .section {
    padding: 70px 15px;
  }
  
  body {
    background-image: none;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
  }
  
  .hero-img {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    width: 34px;
    height: 34px;
  }
}

@media (min-width: 992px) {
  .content-img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .footer-social a {
    margin: 0 8px;
  }
}

@media (max-width: 991px) {
  .janaa-navbar .navbar-collapse {
    background: rgba(10, 10, 10, 0.95);
    padding: 15px;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  #goTopBtn {
    width: 42px;
    height: 42px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 768px) {
  .video-wrapper {
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(246, 188, 55, 0.12);
  }
}