.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary-color), #ff4da6);
  opacity: 0.8;
}

.logo span {
  position: relative;
  z-index: 1;
}

.college-name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0;
}

@media (max-width: 768px) {
  .logo {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .college-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .college-name {
    font-size: 1rem;
  }
}
