/* css styles */
/*For justifying texts in website*/
#quarto-document-content {
	text-align: justify;
}

/*Animating LaTeX logo*/
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.latex-logo {
  width: 80px;
  animation: float 2s ease-in-out infinite;
}

/*Animating R shiny logo*/
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.shiny-logo {
  width: 80px;
  animation: pulse 2s ease-in-out infinite;
}

/*Language Proficiency*/
.language-bar {
  width: 100%;
  background-color: #f0f0f0;
  border-radius: 5px;
  margin-bottom: 10px;
}

.language-level {
  height: 25px;
  text-align: center;
  color: white;
  border-radius: 5px;
  font-weight: bold;
}

.language-level[style*="90%"] {
  background-color: #4CAF50; /* Green for Native */
}

.language-level[style*="75%"] {
  background-color: #87CEEB; /* Blue for Professional */
}

.language-level[style*="50%"] {
  background-color: #FFC107; /* Yellow for Working */
}

/*Shiny App card Hover Effect*/

/* Card Hover Effect */
.app-card {
  max-width: 350px;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.app-card:hover {
  transform: translateY(-10px); /* Slight lift on hover */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

