/* Logo Styling for Bebas Theme */
.text-logo {
  padding: 15px 0;
  text-align: center;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  letter-spacing: -0.5px;
  display: inline-block;
  position: relative;
}

.logo-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #6c5ce7, #a29bfe);
  border-radius: 3px;
}

/* Footer Logo */
.footer-logo {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color-light);
}

.footer-logo .logo-text {
  font-size: 24px;
}

/* Search AJAX Styling */
.search-results-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--card-bg);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 400px;
  overflow-y: auto;
  display: none;
}

.search-bar {
  position: relative;
}

.search-results-container.active {
  display: block;
}

.search-result-item {
  display: flex;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border-color-light);
  transition: background-color 0.2s ease;
}

.search-result-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-image {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 15px;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-content {
  flex: 1;
}

.search-result-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-color);
}

.search-result-date {
  font-size: 12px;
  color: var(--text-color-tertiary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .logo-text {
    font-size: 28px;
  }
  
  .footer-logo .logo-text {
    font-size: 20px;
  }
}
