/* Logo text container styling */
.logo-text-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

/* Footer logo text styling */
.footer-logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.footer-logo-text .logo-text {
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* Loading screen logo text styling */
.loader-logo-text {
  margin-bottom: 1rem;
}

.loader-logo-text .logo-text {
  font-size: 2rem;
  font-weight: 600;
}

/* Stylish Logo Styles */
.logo-stylish {
  transition: all 0.3s ease;
  cursor: pointer;
}

.logo-stylish:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-text-stylish {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Amiri', serif;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.logo-text-stylish:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.logo-subtitle {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Animated logo container */
.logo-container {
  position: relative;
  display: inline-block;
}

.logo-container::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6, #60a5fa, #fbbf24, #f59e0b);
  border-radius: 50%;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

.logo-container:hover::before {
  opacity: 0.6;
}

@keyframes logoGlow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.3; }
}

/* Loading screen logo animation */
.loader-logo-stylish {
  animation: logoPulse 2s ease-in-out infinite, logoRotate 4s linear infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes logoRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Header logo styling */
.nav-brand .logo-stylish {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand .logo-img-stylish {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.nav-brand .logo-img-stylish:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* Footer logo styling */
.footer-brand .logo-img-stylish {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .nav-brand .logo-img-stylish {
    width: 35px;
    height: 35px;
  }
  
  .logo-text-stylish {
    font-size: 16px;
  }
  
  .logo-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .nav-brand .logo-img-stylish {
    width: 30px;
    height: 30px;
  }
  
  .logo-text-stylish {
    font-size: 14px;
  }
  
  .logo-subtitle {
    font-size: 10px;
  }
}
