:root {
    --gold: #B58C5A;
    --text: #6F6F6F;
    --divider: #E6E6E6;
    --alt-bg: #FAFAFA;
    --black: #000;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
  }
  
  /* ---------- HERO ---------- */
  .hero {
    height: 100vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    position: relative;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    pointer-events: none; /* ✅ THIS FIXES IT */
  }
  

  .hero .overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 10px;
    color: #fff;
  }
  .hero-top {
    display: flex;
    justify-content: center;
  }

  .logo {
    width: 240px;
    margin-top: 10px;
    animation: fadeDown 1s ease forwards;
  }

  /* --- CENTER TEXT --- */
  .hero-center {
    height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .hero-center h1 {
    font-family: 'League Spartan', arial, helvetica, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    animation: fadeUp 1.2s ease forwards;
  }
  
  .hero-center span {
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeUp 1.5s ease forwards;
    font-family: 'Source Sans Pro', arial, sans-serif;
  }
  
  /* ---------- SECTIONS ---------- */
  .section {
    padding: 60px 20px;
    text-align: center;
    position: relative;
  }
  
  .section.alt {
    background: #FFF3E8;
  }
  
  .section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    background: rgba(0,0,0,0.04);
    transform: translateX(-50%);
  }
  
  .divider {
    width: 36px;
    height: 2px;
    background: var(--divider);
    margin: 14px auto 34px;
  }
  
  /* ---------- CARD ---------- */
  .card {
    max-width: 360px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.9s ease forwards;
  }
  
  .card img {
    width: 100%;
    border-radius: 6px;
  }
  
  .card p {
    font-size: 0.95rem;
    margin-top: 16px;
  }
  
  /* ---------- GALLERY BADGE ---------- */
  .badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 9px;
    border-radius: 3px;
  }
  
  /* ---------- SOCIAL ---------- */
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
  }
  
  .social-icons img {
    width: 30px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: translateY(-4px);
    opacity: 1;
  }
  
  /* ---------- NEWSLETTER ---------- */
  .newsletter {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .newsletter input {
    width: 100%;
    padding: 13px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
  }
  
  .newsletter button {
    width: 100%;
    padding: 13px;
    background: var(--black);
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-top: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  
  /* ---------- GEETANSH SECTION ---------- */
.geetansh-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.geetansh-card {
  max-width: 300px;
  margin: 0 auto;
  text-decoration: none;
  color: inherit;
  display: block;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.geetansh-avatar {
  width: 170px;
  height: 170px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.geetansh-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.geetansh-card:hover .geetansh-avatar {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.geetansh-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.geetansh-subtitle {
  font-size: 0.95rem;
  color: var(--text);
}

/* ---------- CLICK AFFORDANCE ---------- */
.geetansh-card {
  background: #fff;
  padding: 28px 20px 32px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Tap / press feedback */
.geetansh-card:active {
  transform: scale(0.97);
}

/* CTA row */
.geetansh-cta {
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.geetansh-cta span {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

/* Desktop hover polish */
@media (hover: hover) {
  .geetansh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  }

  .geetansh-card:hover .geetansh-cta span {
    transform: translateX(4px);
  }
}

@media (max-width: 480px) {
  .geetansh-cta::after {
    content: 'Tap to open';
    font-size: 0.75rem;
    color: #999;
    margin-left: 6px;
  }
}
/* ---------- GOLD RING ---------- */
.gold-ring {
  position: relative;
  padding: 6px;
  border-radius: 50%;
}

.gold-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.6;
  animation: goldPulse 1.6s ease-out 1.2s forwards;
}

/* ---------- HEARTBEAT ---------- */
.geetansh-avatar {
  animation: heartbeat 1.4s ease-in-out 1.4s forwards;
}

/* ---------- CTA TEXT ---------- */
.geetansh-subtitle {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 6px;
  font-style: italic;
}

/* ---------- ANIMATIONS ---------- */
@keyframes heartbeat {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.06); }
  40%  { transform: scale(0.98); }
  60%  { transform: scale(1.04); }
  80%  { transform: scale(1); }
  100% { transform: scale(1); }
}

@keyframes goldPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .geetansh-avatar,
  .gold-ring::before {
    animation: none !important;
  }
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 30px;
  height: 60px;
  border: 2px solid white;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  animation: bounce 2s infinite;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background-color: white; /* Updated color */
  border-radius: 50%;
  animation: scrollDot 2s infinite; /* Fixed animation name */
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-dot {
    animation: none;
  }
}

.scroll-indicator:active {
  opacity: 0.6;
}
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}


  /* ---------- FOOTER ---------- */
  footer {
    text-align: center;
    padding: 24px 10px;
    font-size: 0.82rem;
    color: #777;
    background-color: rgb(22, 22, 22);
  }
  
  /* ---------- ANIMATIONS ---------- */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .geetansh-meta {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #aaa;
    margin-top: 4px;
  }

  .intro-text {
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--text);
  }

  /* ---------- SECTION BACKGROUNDS ---------- */
.bg-geetansh {
  background: linear-gradient(
    180deg,
    #FFF3E8 0%,
    #FFF7F1 100%
  );
}

.bg-legacy {
  background: linear-gradient(
    180deg,
    #F1F5F2 0%,
    #F8FAF9 100%
  );
}

.bg-geetansh .geetansh-subtitle,
.bg-legacy .intro-text {
  color: #5F5F5F;
}

/* ---------- SOCIAL SECTION ---------- */
.bg-social {
  background: linear-gradient(
    180deg,
    #EEF5FF 0%,
    #F7FAFF 100%
  );
}

.bg-social .social-icons {
  margin-top: 8px;
}

.bg-social .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-social .social-icons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.bg-social .social-icons img {
  width: 22px;
  opacity: 0.9;
}

/* ---------- SOCIAL BRAND HOVER COLORS ---------- */
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: background-color 0.3s ease,
              box-shadow 0.3s ease,
              transform 0.3s ease;
}

/* Hover effects only where hover is supported */
@media (hover: hover) {

  .social.facebook:hover {
    background-color: #1877F2;
    box-shadow: 0 14px 30px rgba(24,119,242,0.35);
  }

  .social.instagram:hover {
    background-color: #E4405F;
    box-shadow: 0 14px 30px rgba(228,64,95,0.35);
  }

  .social.linkedin:hover {
    background-color: #0A66C2;
    box-shadow: 0 14px 30px rgba(10,102,194,0.35);
  }

  .social.x:hover {
    background-color: #000000;
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  }

  .social:hover {
    transform: translateY(-4px);
  }

  /* Ensure icon visibility on dark backgrounds */
  .social:hover img {
    filter: brightness(0) invert(1);
  }
}

.social img {
  width: 22px;
  opacity: 0.9;
}

@media (max-width: 768px) {

  .section {
    padding: 56px 18px;
  }

  .divider {
    margin-bottom: 28px;
  }

  body {
    font-size: 15px;
    line-height: 1.65;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  h2 {
    font-size: 1.45rem;
  }
  .social-icons {
    gap: 20px;
  }

  .geetansh-card {
    padding: 32px 22px;
  }

}



  
  
  