/* Aviz Academy Branding Overrides */

/* Custom color scheme inspired by Aviz Academy */
:root {
  --primary-bg: #0a0a0f;
  --secondary-bg: #1a1a2e;
  --accent-cyan: #00d4ff;
  --accent-purple: #6c5ce7;
  --success-green: #00ff41;
  --warning-amber: #ffbf00;
  --error-red: #ff073a;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --aviz-blue: #00d4ff;
  --aviz-dark: #0a0a0f;
}

/* Header branding */
.terminal-header h1::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 15px;
  filter: brightness(1.2) contrast(1.1);
}

/* Footer branding */
body::after {
  content: "Powered by Manoj | Instructor: Manoj Kumar";
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  z-index: 1000;
  padding: 8px 16px;
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid var(--accent-cyan);
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

/* Social links container */
.social-links {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 1000;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(26, 26, 46, 0.9);
  border: 1px solid var(--accent-cyan);
  border-radius: 50%;
  color: var(--accent-cyan);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 15px var(--accent-cyan);
  transform: translateY(-2px);
}

/* Branding badge */
.branding-badge {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(26, 26, 46, 0.95);
  border: 1px solid var(--accent-cyan);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.branding-badge img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
  border-radius: 4px;
}

.branding-badge .badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.branding-badge .badge-title {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan);
}

.branding-badge .badge-subtitle {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .branding-badge {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
  }

  .branding-badge img {
    width: 32px;
    height: 32px;
  }

  .branding-badge .badge-title {
    font-size: 0.8rem;
  }

  .branding-badge .badge-subtitle {
    font-size: 0.65rem;
  }

  .social-links {
    top: 10px;
    right: 10px;
    gap: 8px;
  }

  .social-link {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  body::after {
    font-size: 0.65rem;
    padding: 6px 12px;
    bottom: 5px;
  }

  .terminal-header h1::before {
    width: 40px;
    height: 40px;
  }
}

/* Adjust main content to avoid overlap with fixed elements */
.terminal-app {
  padding-top: calc(var(--spacing-lg) + 60px);
  padding-bottom: calc(var(--spacing-lg) + 50px);
}

@media (max-width: 768px) {
  .terminal-app {
    padding-top: calc(var(--spacing-md) + 50px);
    padding-bottom: calc(var(--spacing-md) + 40px);
  }
}
