@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Shrikhand&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  background: radial-gradient(circle at center, #fff7f9, #fbe5ef, #f8dce8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.center-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

#rainCanvas {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}

/* English title */
h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: transparent;
  background: linear-gradient(90deg, #b8860b, #ffd700, #ffecb3);
  background-clip: text;
  -webkit-background-clip: text;
  white-space: nowrap;
  overflow: visible;
  display: inline-block;
  opacity: 0;
  color: #b8860b;
}

/* Gujarati title */
h2 {
  font-family: 'Shrikhand', cursive;
  font-size: 2.7rem;
  color: transparent;
  background: linear-gradient(90deg, #b8860b, #ffd700, #fff4c2);
  background-clip: text;
  -webkit-background-clip: text;
  white-space: nowrap;
  overflow: visible;
  display: inline-block;
  margin-top: 0.8rem;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* MOBILE ADJUSTMENTS */
@media screen and (max-width: 480px) {
    h1 {
      font-size: 2.4rem;  /* smaller font for mobile */
    }
    h2 {
      font-size: 2.4rem;  /* smaller font for mobile */
    }
  }
  
p {
  font-size: 1.4rem;
  color: #5c243d;
  margin-top: 1.5rem;
  letter-spacing: 1px;
}

footer {
  position: absolute;
  bottom: 15px;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}

/* Handwriting animation */
@keyframes letterGlow {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

h1 span, h2 span {
  display: inline-block;
}



/* ===== Links Section ===== */
.contact-links {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .contact-link {
    text-decoration: none;
    background: linear-gradient(90deg, #d16ba5, #c777b9, #ba83ca);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .contact-link:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ba83ca, #c777b9, #d16ba5);
  
  }