body {
  background-color: #FFf;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'AxeHandel', sans-serif;
  text-align: center;
}

#app {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 4rem;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  color: #121212;
}

.nav a {
  display: block;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-decoration: none;
  color: #222;
  font-family:sans-serif;
  font-weight: bold;

  
}


/*

RED 
color: #FCF100;
#FF0000
*/

footer {
  color: #121212;
  margin-top: 4rem;
  font-size: 0.9rem;
}

.hindi{
  font-weight: bold;
  color: red;
}


.audio-player {
  margin-top: 1rem;
}

.play-button {
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: transform 0.2s;
}

.play-button:hover {
  transform: scale(1.2);
}






 @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari&display=swap');

    body.light-theme {
      margin: 0;
      padding: 0;
      background: #fff;
      color: #222;
      font-family: 'AxeHandel', sans-serif;
      font-size: 16px;
      line-height: 1.6;
    }

    .container {
      max-width: 720px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      animation: fadeInUp 2s ease-out both;
    }

    .logo-link {
      text-decoration: none;
    }

    .title {
      color: #333;
      font-size: 6.5rem;
      letter-spacing: 0.08em;
      margin-bottom: 1rem;
      font-weight: 400;
      word-break: break-word;
    }

    .divider {
      border-radius: 20px;
      width: 80px;
      height: 4px;
      background: #222;
      margin: 1.5rem 0;
      animation: expand 2s ease-out forwards;
    }

    .footer {
      font-size: 0.9rem;
      margin-top: 3rem;
      color: #333;
    }

    .email {
      color: #333;
      text-decoration: none;
      border-bottom: 1px dotted #999;
      transition: border-color 0.3s;
      word-break: break-word;
    }

    .email:hover {
      border-color: #222;
    }

    .site {
      font-weight: bold;
    }

    .hindi {
      font-family: 'Noto Sans Devanagari', sans-serif;
      font-size: 1rem;
      color: #c0392b;
      margin-left: 0.3em;
    }


    @keyframes bgShift {
  0% {
    background-color: #ffffff;
  }
  50% {
    background-color: #CF5D17;
  }
  100% {
    background-color: #ffffff;
  }
}

body.light-theme {
  animation: bgShift 40s ease-in-out infinite;
}


    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(15px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes expand {
      from {
        width: 20px;
      }
      to {
        width: 60px;
      }
    }

    /* 🔧 Responsive Adjustments */
    @media (max-width: 480px) {
      .container {
        padding: 3rem 1.2rem;
      }

      .title {
        font-size: 3.2rem;
      }

      .footer {
        font-size: 0.85rem;
      }

      .divider {
        width: 40px;
      }
    }

    @media (max-width: 340px) {
      .title {
        font-size: 1.8rem;
      }

      .divider {
        width: 30px;
      }
    }
