/*
 * SOLO TURİZM - CUSTOM CSS
 * ----------------------------------------------------
 * ANA KALKAN (SHIELD):
 * Lütfen sonradan eklenecek tüm özel (custom) CSS kodlarını 
 * ana `style.css` dosyasını bozmamak adına SADECE bu dosyaya ekleyiniz.
 * Bu dosya ana stilleri ezer, böylece temel kodlara zarar gelmez.
 * ----------------------------------------------------
 */

/* Top Info Bar Styles */
.top-info-bar {
  background-color: var(--primary-color, #ff4757);
  color: #fff;
  padding: 8px 0;
  font-size: 0.85rem;
  text-align: center;
  z-index: 1000;
  position: relative;
  letter-spacing: 0.5px;
}

.top-info-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1.2;
}

.top-info-content span, .top-info-content .text-accent {
  color: #fff !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .top-info-content {
    flex-direction: column;
    gap: 4px;
    font-size: 0.75rem;
  }
}
