/* Container to hold the cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
  gap: 1.5rem;
  padding: 2rem;
  justify-content: center;
}

/* Card Styles */
.card {
  --blur: 16px;
  width: 400px;
  height: 400px;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  color: #000;
  transform: translateZ(0);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: block;
  transition: transform 0.2s ease-in-out;
}

/* Image Styles */
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

/* Card Hover Effect */
.card:hover .card__img {
  transform: scale(1.1) rotate(-3deg);
}

/* Footer Styles */
.card__footer {
  padding: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(var(--blur));
  height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

/* Footer Text */
.card__footer span:nth-of-type(1) {
  font-size: 1.2rem;
  font-weight: bold;
}

.card__footer span:nth-of-type(2) {
  font-size: 0.9rem;
  color: #666;
}

/* Action Button Styles */
.card__action {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: 35%;
  right: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.card__action svg {
  width: 50%;
  fill: #333;
}

/* Hover effect on action button */
.card:hover .card__action {
  transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
  }
}

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
}

.album-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.album-card:hover {
  transform: scale(1.05);
}
.logoheight{
    margin-top: 24px;
    height: 100px !important;
}
.logomobile{
    height: 110px !important;
}
