/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.0.1.1716722517
Updated: 2024-05-26 11:21:57

*/

.container {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
}

.logo-container {
  width: 30px;  /* Logo genişliği */
  height: 30px;  /* Logo yüksekliği */
  display: flex;
  align-items: center;
}

.logo {
  width: 100%;  /* Logo genişliği */
  height: 100%;  /* Logo yüksekliği */
}

.text-container {
  position: relative;
  overflow: hidden;
  height: 100%;  /* Tam yükseklik */
  margin-left: 5px;  /* Logo ile yazı arasında boşluk */
  flex-grow: 1;  /* Kapsayıcının geri kalan genişliği */
  display: flex;
  align-items: center;
}

.text {
  white-space: nowrap;
  position: absolute;
  left: -100%;  /* Kapsayıcının dışında solda başlar */
  opacity: 0;
  font-family: 'Futura', sans-serif;  /* Futura fontu kullanılıyor */
  font-size: 11px;  /* Yazı boyutu 11px olarak ayarlandı */
  transition: all 1s ease-in-out;
  animation: slideInOut 14s ease-in-out infinite;  /* Metin animasyonu */
}

.text a {
  font-family: 'Futura', sans-serif;  /* Futura fontu kullanılıyor */
  font-weight: 300;
}

@keyframes slideInOut {
  0%, 20%, 100% {
    left: -100%;  /* Kapsayıcının dışında solda */
    opacity: 0;
  }
  30%, 70% {
    left: 0;  /* Kapsayıcının içinde */
    opacity: 1;
  }
}
