@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* 🎨 Poem Gradient Animation */
.poem-line {
  background: linear-gradient(90deg, #ffb6c1, #f3ade6, #add8e6, #ffb6c1);
  background-size: 300% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: windsheen 1.5s linear infinite;
  font-size: 1.3em;
  font-weight: bold;
  font-family: 'Dancing Script', cursive;
}

@keyframes windsheen {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


#surprise-jake {
  position: fixed;
  width: 120px;
  height: auto;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  z-index: 9999;
}

#surprise-jake img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 182, 193, 0.5);
}

body {
  background: linear-gradient(120deg, #858484, #4d4d4d, #000000);
  background-size: 400% 400%;
  animation: metallicFlow 15s ease infinite;
  color: #F3ADE6;
  text-align: center;
  font-family: 'Dancing Script', cursive;
}

@keyframes metallicFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tab-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.tab {
  background-color: #2c2c2c;
  color: #ffb6c1;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Dancing script', serif;
  font-size: 1.1em;
  border: 2px solid #ffb6c1;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

/* 🔄 Add spinning on hover */
.tab:hover {
  animation: spin 1.5s linear infinite;
  background-color: rgba(255, 182, 193, 0.1); /* optional soft glow */
}

/* ✨ Keyframes for spin effect */

@keyframes spin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.5);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}




.green-text { 
  color: Green;
}
