.hero {
  width: 100%;
  height: 100vh;
  background: url("../images/jinx.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 2s ease-in-out;
  padding: 20px; /* Add padding for mobile responsiveness */
}

.hero-content {
  text-align: center;
  animation: slideIn 1.5s ease-out;
}

.artist-name {
  font-size: 3rem;
  color: var(--font-color);
  margin-bottom: 20px;
  animation: zoomIn 1s ease-in-out;
}

.artist-image {
  border-radius: 50%;
  width: 200px; /* Adjust the size as needed */
  height: 200px;
  object-fit: cover;
}

.artist-location {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the location */
  gap: 8px; /* Space between icon and text */
}

.artist-location,
.artist-role {
  font-size: 1.5rem;
  color: var(--font-color);
  margin-bottom: 10px;
  opacity: 1;
  animation: fadeInText 2s forwards;
}

.location-icon {
  width: 24px; /* Adjust the size as needed */
  height: 24px;
}

.about {
  padding: 60px 20px;
  background-color: var(--primary-color);
  text-align: center;
  animation: fadeInSection 2s ease-in-out;
  margin-top: 60px; /* Add margin to prevent overlap with navbar */
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--font-color);
  animation: slideInTitle 1.5s ease-out;
}

.about p {
  font-size: 1.2rem;
  color: var(--font-color);
  line-height: 1.6;
  opacity: 1;
  animation: fadeInDescription 2.5s forwards;
}

.cards-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

/* Card Styles */
/* From Uiverse.io by dylanharriscameron */
.card {
  position: relative;
  width: 250px; /* Increased width */
  height: 300px; /* Increased height */
  border-radius: 14px;
  z-index: 1; /* Adjusted z-index */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align items to the top */
  box-shadow: 20px 20px 60px #4b4e49, -20px -20px 60px #6c7574;
  padding: 20px; /* Add padding for spacing */
}

.bg {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 240px; /* Adjusted width */
  height: 290px; /* Adjusted height */
  z-index: 2;
  /* background: rgba(255, 255, 255, 0.95); */
  /* background: var(--secondary-color); */
  background: #2f3130;
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid #2f3130;
}

.blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
  transform: translate(-50%, -50%); /* Center the blob */
}

.card-content {
  position: relative;
  z-index: 3;
  text-align: left; /* Align text to the left */
  width: 100%; /* Ensure content takes full width */
}

.card-content h3 {
  margin-top: 0; /* Remove top margin */
  margin-bottom: 10px; /* Add bottom margin for spacing */
  text-align: center; /* Center the header */
}

.card-content ul {
  padding-left: 20px; /* Add padding for bullet points */
  list-style: disc; /* Use disc for bullet points */
  font-size: 0.9rem; /* Make the list items smaller */
}

.about-content {
  font-size: 1.2rem;
  color: var(--font-color);
  line-height: 1.6;
  opacity: 0;
  opacity: 1;
  animation: fadeInDescription 2.5s forwards;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }
  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }
  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }
  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .artist-name {
    font-size: 2.5rem;
  }

  .artist-image {
    width: 150px;
    height: 150px;
  }

  .artist-location,
  .artist-role {
    font-size: 1.2rem;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }
}
