/* ============================================
   DEVTA Logo Component
   ============================================ */

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, #0bc965 0%, #059347 100%);
  display: grid;
  place-items: center;
  font-family: "Manrope", "Poppins", "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  box-shadow:
    0 0 0 1px rgba(11, 201, 101, 0.35),
    0 0 22px rgba(11, 201, 101, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover .brand-logo__icon {
  transform: scale(1.08);
  box-shadow:
    0 0 0 1px rgba(11, 201, 101, 0.55),
    0 0 32px rgba(11, 201, 101, 0.65),
    0 10px 24px rgba(0, 0, 0, 0.4);
}

.brand-logo__name {
  font-family: "Manrope", "Poppins", "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.brand-logo:hover .brand-logo__name {
  color: #f3fff8;
  text-shadow: 0 0 18px rgba(11, 201, 101, 0.35);
}

.brand-logo__tagline {
  font-family: "Manrope", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c4c4c4;
  white-space: nowrap;
  line-height: 1.2;
  padding-left: 0.1rem;
}

.brand-logo__tagline .sep {
  color: #0bc965;
  margin: 0 0.15em;
  font-weight: 700;
}

.brand-logo__tagline .bar {
  color: #0bc965;
  font-weight: 700;
  margin: 0 0.2em;
}

/* Compact nav variant — hide tagline on small screens */
.brand-logo--nav .brand-logo__tagline {
  display: none;
}

.brand-logo--large .brand-logo__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 2.15rem;
}

.brand-logo--large .brand-logo__name {
  font-size: 2rem;
}

.brand-logo--large .brand-logo__tagline {
  font-size: 0.72rem;
  display: block;
}

.brand-logo--centered {
  align-items: center;
}

.brand-logo--centered .brand-logo__tagline {
  text-align: center;
  white-space: normal;
  max-width: 320px;
}

/* Footer / showcase block */
.logo-showcase {
  background: #0d0d0d;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 480px) {
  .brand-logo__icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    border-radius: 9px;
  }

  .brand-logo__name {
    font-size: 1.15rem;
    letter-spacing: 0.1em;
  }

  .brand-logo__tagline {
    font-size: 0.5rem;
  }
}
