@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Splash Screen   */

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;         
  height: 100vh;        
  background-color: rgba(0, 0, 0); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Üstte görünmesi için */
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff #0000; /* Yarı beyaz, yarı saydam */
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gizlendiğinde opacity ile kaybolsun */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}


#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1000;
  overflow: hidden; /* Linebackground'ın dışına taşmayı önler */
}


* {
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
}

body {
  height: 100vh;
  
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1%;
  background-color: white; /* Arka plan eklenerek içerik ile karışması önlenir */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Gölge ile header belirginleştirilir */
  z-index: 1000; /* Header'ın diğer içeriklerin üzerinde olması sağlanır */
}

header .navbar {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 20px;
}

.navbar .logo {
  height: 2.5em;
  width: auto;
}

.navbar .logo span {
  color: #e06a00;
}

.navbar .menu-links {
  list-style-type: none;
  display: flex;
  gap: 40px;
  font-size: medium;
}

.navbar a {
  color: #000000;
  text-decoration: none;
  transition: 0.4s ease;
}

.navbar a:hover {
  color: #3e72c0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Header yüksekliği kadar boşluk ekleniyor */
.hero-section {
  max-height: fit-content;
  display: block;
  justify-content: center; /* Yatayda ortalama */
  align-items: center;
}

  .hero-section .linebackground {
    margin-top: 1%;
    overflow: hidden; /* Linebackground'ın dışına taşmayı önler */
    z-index: -1000; 
    min-height: fit-content;
    }


.hero-section .content {
  
  width: 50%;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  
}



.hero-section .content h1 {
  margin-top: 15vh;
  font-size:  40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Kenar gölgesi */
}

/* Bize Ulaşın */

.hero-section .content h2 {
  line-height: 1.5; /* Satır yüksekliği */
  margin: 6vh 0 6vh 0;
  text-align: center;
  color: white;
  font-size:  20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Kenar gölgesi */
}

.hero-section .content2 {

  max-width: 1200px;
  padding-left: 15em;
  padding-bottom: 1em;
  margin: 0 auto;
  text-align: left;

}

.content2 .instagram {

  text-decoration: none; 
  color: rgb(255, 255, 255); 
  font-size: x-small;
}

.content2 .instagram-icon {

  width: 3%; 
  height: auto; 
  vertical-align: middle;
}

.content2 .mail {

  text-decoration: none; 
  color: rgb(255, 255, 255); 
  font-size: x-small
}

.content2 .mail-icon {

  width: 2.5%; 
  height: auto; 
  vertical-align: middle;
}


  /* Genel blog bölümü */
#blog-section {
  background-color: #f5f5f5;
  padding: 3% 5%;
  margin: 3% 8% 0 8%;
}

#blog-section h2 {
  text-align: center;
  color: #333;
  font-size: 2rem;
  margin-bottom: 2%;
}

/* Blog kartları konteyneri */
.blog-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2%; /* Kartlar arasında boşluk */
  
}

/* Blog kart tasarımı */
.blog-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 2%); /* Her kart genişliği: %33.33 - boşluk */
  max-width: 32%; /* Maksimum genişlik: %32 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5%);
}

.blog-image {
  width: 100%; /* Genişliği tamamen kapsasın */
  height: 200px; /* Sabit bir yükseklik belirleyebilirsiniz */
  object-fit: cover; /* Resmi alanın içine sığdırır ve taşan kısmı keser */
  border-radius: 5px; /* Köşeleri yuvarlayabilirsiniz (isteğe bağlı) */
}

.blog-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 10px 5%;
}

.blog-card p {
  font-size: 1rem;
  color: #666;
  margin: 0 5% 10px;
}

.read-more {
  display: inline-block;
  margin: 10px auto 15px;
  padding: 10px 20px;
  background-color: #ff7b00;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #e06a00;
}

 /* Platform Sayfası */

 #platform-section {
  background-color: #f5f5f5;
  padding: 3% 5%;
}

#platform-section h2 {
  text-align: center;
  color: #333;
  font-size: 2rem;
  margin-bottom: 2%;
}

/* Blog kartları konteyneri */
.platform-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2%; /* Kartlar arasında boşluk */
  
}

/* Blog kart tasarımı */
.platform-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 2%); /* Her kart genişliği: %33.33 - boşluk */
  max-width: 15%; /* Maksimum genişlik: %32 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-5%);
}

.platform-image {
  width: 100%; /* Genişliği tamamen kapsasın */
  height: 300px; /* Sabit bir yükseklik belirleyebilirsiniz */
  object-fit: cover; /* Resmi alanın içine sığdırır ve taşan kısmı keser */
  border-radius: 5px; /* Köşeleri yuvarlayabilirsiniz (isteğe bağlı) */
}

.platform-image-icon{
  width: 15%; /* Genişliği tamamen kapsasın */
  object-fit: cover; /* Resmi alanın içine sığdırır ve taşan kısmı keser */
  border-radius: 5px; /* Köşeleri yuvarlayabilirsiniz (isteğe bağlı) */
}

.platform-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin: 10px 5%;
}

.platform-card p {
  font-size: 1rem;
  color: #666;
  margin: 0 5% 10px;
}

/*   Anasayfadaki diger sayfalardan çekilen alanlar */

.blog-preview {

  margin: 3% 8% 0 8%;

}

/*             */


    #menu-btn{
      color: #000000;
      cursor: pointer;
      display: none;
    }

    #close-menu-btn {
      display: none;
      position: absolute;
      right: 20px;
      top: 20px;
      cursor: pointer;
    }

    .footer {
      background-color: rgb(30, 30, 30); 
      padding-bottom: 1%;
      color: white; 
      text-align: center; 
      
    }


    
    .contact-section {
      text-align: center;
      box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.1);
      min-height: calc(100vh - 160px); /* Sayfa yüksekliğini tamamlar, footer'ı hesaba katmak için */
      padding: 7%;
      margin: 1% 10% 1% 10%;
  }
  
  .contact-section h1 {
      
      font-size: 2em;
      margin-bottom: 20px;
  }
  .contact-section input, textarea {
      width: 80%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 7px;
      border: 1px solid #777777;
      
  }
  .contact-section input[type="submit"] {
      background-color: #ff7b00;
      color: white;
      border: none;
      cursor: pointer;
  }
  .contact-section input[type="submit"]:hover {
      background-color: #e76600;
  }


    /* İletişim */

    .social-media-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 2%;
    }
    
    .social-media-links p {
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .tooltip-container {
      display: flex;
      justify-content: center;
      gap: 15px;
    }
    
    .tooltip {
      position: relative;
      display: inline-block;
      text-align: center;
    }
    
    .icon {
      width: 24px;
      height: 24px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    
    .icon:hover {
      transform: scale(1.2);
    }
    
    .tooltip-text {
      visibility: hidden;
      background-color: #555;
      color: #fff;
      text-align: center;
      padding: 5px;
      border-radius: 4px;
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      user-select: text;
      opacity: 0;
      transition: opacity 0.3s ease, visibility 0s 0.3s; /* Gecikmeli kapanma */
    }
    
    .tooltip:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transition-delay: 0s; /* Hızlıca açılmasını sağlar */
    }
    
    .tooltip:not(:hover) .tooltip-text {
      transition-delay: 0.3s; /* Geç kapanmasını sağlar */
    }
    
    
    
    

    /* ////////////////////////////////////// */

    @media screen and (max-width: 900px) {


      
/* Splash Screen   */

.spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;         
  height: 100vh;        
  background-color: rgba(0, 0, 0); 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Üstte görünmesi için */
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid;
  border-color: #fff #0000; /* Yarı beyaz, yarı saydam */
  animation: spin 1s infinite linear;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gizlendiğinde opacity ile kaybolsun */
.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

      * {
        margin: 0;
        padding: 0%;
        box-sizing: border-box;
      }

      body {
        height: 100vh;
        
      }
      

      header.show-mobile-menu:before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(5px);
      }

      #close-menu-btn, #menu-btn {
        display: block;

      }
      

      .navbar .menu-links {
        position: fixed;
        left: -260px;
        top: 0;
        flex-direction: column;
        width: 260px;
        height: 100vh;
        background: #fff;
        padding: 70px 40px 0px;
      }

      header.show-mobile-menu .navbar .menu-links {
        left: 0;
      }

      .navbar a{
        color: #000000;

      }

      /* Hero-Section İçeriği Genel Ayarlar */
      .hero-section .content {
        width: 100%;  /* ya da auto */
        margin: 0;    /* soldan boşluk olmasın */
        text-align: left; /* sola dayalı hale getirmek için */
        padding: 0.5rem;  /* isterseniz biraz iç boşluk verin */
      }
    

      /* Başlık (h1) Ayarları */
      .hero-section .content h1 {
        margin-top: 5em 0;
        font-size: 40px;      /* Mevcut font boyutu */
        text-align: center;     /* Ortalamayı kaldırıp sola yasla */
      }

      /* Alt Başlık / Açıklama (h2) Ayarları */
      .hero-section .content h2 {
        margin: 4em 0 3em 0;            /* Varsayılan boşlukları kaldır */
        text-align: center;     /* Sola yasla */
        font-size: 14px;      /* Mobilde okunabilir boyut */
      }
    


      /* Bize Ulaşın */

      .content2 {
        font-size: 1rem;
        align-content: left;
        padding-bottom: 1rem;
      }


      .social-media-links .icon {
        width: 24px; /* İkon boyutunu ayarlar */
        height: 24px; /* İkon boyutunu ayarlar */
        margin: 0 10px; /* İkonlar arasındaki boşluk */
        vertical-align: middle; /* İkonların düzgün hizalanması */
        transition: transform 0.3s ease; /* Hover efektini sağlar */
      }
      
      .social-media-links .icon:hover {
        transform: scale(1.2); /* İkonun büyümesi için hover efekti */
      }

        
        #blog-section {
          align-content: center;
          padding: 3% 2%; /* Daha küçük ekranlarda daha küçük padding */
        }
      
        #blog-section h2 {
          font-size: 1.5rem; /* Başlık boyutunu küçültüyoruz */
        }
      
        .blog-container {
          flex-direction: column; /* Kartları dikey yerleştiriyoruz */
          align-items: center; /* Kartları ortalıyoruz */
        }
      
        .blog-card {
          flex: 1 1 100%; /* Kartlar genişlik olarak tam olarak %100 olacak */
          max-width: 100%; /* Maksimum genişlik %100 yapılıyor */
          margin-bottom: 20px; /* Kartlar arasına alt boşluk ekliyoruz */
        }
      
        .blog-card h3 {
          font-size: 1.3rem; /* Başlık boyutunu küçültüyoruz */
          margin: 10px 2%;
        }
      
        .blog-card p {
          font-size: 0.9rem; /* Paragraf boyutunu küçültüyoruz */
          margin: 0 5% 15px;
        }
      
        .read-more {
          font-size: 0.9rem; /* Daha küçük ekranlarda buton boyutunu küçültüyoruz */
          padding: 8px 16px; /* Buton boyutunu ayarlıyoruz */
        }



      /* Platform Sayfası */

 #platform-section {
  align-content: center;
  padding: 3% 2%; /* Daha küçük ekranlarda daha küçük padding */
}

#platform-section h2 {
  font-size: 1.5rem; /* Başlık boyutunu küçültüyoruz */
}

.platform-container {
  flex-direction: column; /* Kartları dikey yerleştiriyoruz */
  align-items: center; /* Kartları ortalıyoruz */
}

.platform-card {
  flex: 1 1 100%; /* Kartlar genişlik olarak tam olarak %100 olacak */
  max-width: 100%; /* Maksimum genişlik %100 yapılıyor */
  margin-bottom: 20px; /* Kartlar arasına alt boşluk ekliyoruz */
}

.platform-card h3 {
  font-size: 1.3rem; /* Başlık boyutunu küçültüyoruz */
  margin: 10px 2%;
}

.platform-card p {
  font-size: 0.9rem; /* Paragraf boyutunu küçültüyoruz */
  margin: 0 5% 15px;
}

.read-more {
  font-size: 0.9rem; /* Daha küçük ekranlarda buton boyutunu küçültüyoruz */
  padding: 8px 16px; /* Buton boyutunu ayarlıyoruz */
}

}

/* Language Dropdown Styles */
.navbar .menu-links li:has(#langToggle) {
  position: relative;
}

#langToggle {
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
}

#langToggle:hover {
  color: #3e72c0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#langDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 120px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
}

#langDropdown a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

#langDropdown a:last-child {
  border-bottom: none;
}

#langDropdown a:hover {
  background-color: #f5f5f5;
  color: #3e72c0;
}
