.logo-bar {
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 20px;
  /* No height for mobile */
}

.logo-title .main-text {
  text-align: center;
  margin-top: 10px;
  line-height: 1.4;
  animation: fadeInUp 0.8s ease-in-out both;
}



.logo-title .highlight .main-text {
  color: #FFD700;
  font-weight: bold;
  font-size: 20px;
  margin-left: 8px;
}

.logo-items-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #000000;
  transition: transform 0.3s ease;
  box-shadow: 0 0 60px #FFD700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle img {
  width: 70%;
  height: 70%;
  object-fit: fill;
}

.logo-item:hover .circle {
  transform: scale(1.1);
  box-shadow: 0 0 15px #FFD700, 0 0 20px #FFD700;
}

.label-logo {
  margin-top: 20px;
  color: #FFD700;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  white-space: normal;
  max-width: 260px;
  line-height: 1.4;
  opacity: 1;
  transform: none;
  position: static;
  pointer-events: auto;
  animation: fadeInUp 1.4s ease-in-out both;
}


@media (min-width: 640px) {
  .logo-title .main-text {
    font-size: 34px;
    color: #FFD700;
  }

  .logo-title .highlight .main-text {
    font-size: 44px;
  }
  .circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #000000;
  transition: transform 0.3s ease;
  box-shadow: 0 0 80px #FFD700;
  display: flex;
  justify-content: center;
  align-items: center;
}
}

/* 💻 Desktop: Lock height to 4 inches */
@media (min-width: 1601px) {
  .logo-bar {
    height: 5in;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
