/* Importăm un font modern și curat pentru UI */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

/* Animații personalizate la încărcarea paginii */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Clase ajutătoare de animație, folosite în HTML */
.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0; /* Pornește ascuns pentru animație */
}

.animate-scale-in {
  animation: scaleIn 0.7s ease-out forwards;
  opacity: 0;
}

/* Întârzieri pentru a crea un efect în lanț (cascade) */
.delay-200 {
  animation-delay: 0.2s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.bg_top_bar {
  background: #0f172b
}

.bg-yellow {
  background: #E1C68B
}

.bg_top_bar a,
.bg_top_bar span {
  color: white;
}

.subtitle {
  background: #e1c68b57;
      color: #000;
}

.bg-teal-400,
.bg-teal-500 {
  background: #E1C68B
}

.bg-teal-50 {
  background: #E1C68B30
}

.text-teal-600  {
  color:  #E1C68B
}

.page_content h1 {
    font-size: 4rem;
    margin-bottom: 50px;
}

a {
  text-decoration: none;
}

.to-teal-400 {
  color: #E1C68B;
  background: none;
}

.socials a:hover {
  background-color: #E1C68B!important
}

@media only screen and (max-width: 640px) {
  .page_content h1 {
    font-size: 2.5rem
  }
}
