/* Temel Sıfırlama */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Genel Body */
body {
  font-family: "Poppins", sans-serif;
  background-color: #000000; /* Ana mavi ton */
  color: #fff;
  line-height: 1.5;
  max-width: 600px;
  margin:auto;
}
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #333;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.scroll-to-top:hover {
  background: #555;
}
.floating-lang-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.floating-lang-menu {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 1000;
}

.float-lang-item {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #333;
}

.float-lang-item img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

.float-lang-item:hover {
  background: #f5f5f5;
}
/* Hero Section (Üst Kısım) */
.hero-section {
  position: relative;
  text-align: center;
}

/* Kapak resmi (üstteki geniş resim) */
.cover-image {
  width: 100%;
  height: 300px; /* Dilerseniz boyutunu değiştirebilirsiniz */
  overflow: hidden;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
  /* veya clip-path ile farklı şekiller verebilirsiniz */
}
.cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Profil/Logo resmi (yuvarlak) */
.profile-image {
  position: absolute;
  bottom: 18%; /* Resmin kapak altına taşması için negatif değer */
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border: 3px solid #fad49c; /* Arkaplan rengiyle çerçeve */
  border-radius: 50%;
  overflow: hidden;
}
.profile-canvas-image{
  margin: 1rem auto;
  width: 150px;
  text-align: center;
}
.profile-canvas-image img {
  border-radius: 50%;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  background: white;
}


/* Firma adı */
.hero-section h1 {
  margin-top: 80px; /* Logo ile çakışmasın diye üst boşluk */
  font-size: 1.8rem;
  font-weight: 600;
  color: #fad49c;
}
.hero-section h2 {
  font-size: 1rem;
  font-weight: 400;
  margin: 0.5rem 0 0 0;
  color: #ddd;
}

/* Menü ikonu (isteğe bağlı) */
.menu-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}

/* Ana İçerik Alanı */
main {
  max-width: 600px;
  padding: 1rem;
}

/* Bölüm başlıkları */
.contact-section h3,
.social-section h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Butonlar için ortak stil */
.btn {
  display: block;
  width: 100%;
  margin: 0.5rem auto;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  text-align: left; /* İkon + metin */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

/* İkon ve metin arasında boşluk */
.btn i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Hover efekti */
.btn:hover {
  opacity: 0.8;
}

/* Renkli buton örnekleri */
.btn-whatsapp {
  background-color: #25D366; /* WhatsApp yeşili */
}
.btn-telegram {
  background-color: #0088cc; /* Telegram mavisi */
}
.btn-black {
  background-color: #1c1c1c; /* Siyah buton */
}
.btn-orange {
  background-color: #ff9933; /* Turuncu */
}
.btn-blue {
  background-color: #3977DE; /* Mavi */
}
.btn-instagram {
  background: #1c1c1c; /* Instagram rengi (pembe/mor) */
}
.btn-instagramrue {
  background: #1c1c1c; /* Instagram rengi (pembe/mor) */
}
.btn-facebook {
  background: #1c1c1c; /* Facebook blue */
}
.btn-facebookrue {
  background: #1c1c1c; /* Facebook blue */
}
.btn-youtube {
  background: #FF0000; /* YouTube red */
}
.btn-telegram {
  background: #0088cc; /* Telegram blue */
}
.btn-tiktok {
  background: #000000; /* TikTok black (can also use their gradient) */
}
.btn-linkedin {
  background: #0077b5; /* LinkedIn blue */
}
.btn-twitter {
  background: #000000; /* Twitter dark */
}


/* Butonların alt alta dizilmesi, isterseniz yanyana da yapabilirsiniz */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.off-canvas-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: white;
  color: #333;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 1000;
  padding: 20px;
}

.menu-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 999;
}

.close-menu {
  text-align: right;
  margin-bottom: 20px;
  cursor: pointer;
}

.language-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lang-btn {
  padding: 10px;
  text-align: center;
  background: #f0f0f0;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
}

/* Basit galeri stil örneği */
.ig-feed-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.ig-post {
  width: calc(33.333% - 1rem);
  /* 3 sütun örneği */
  box-sizing: border-box;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.ig-post img {
  width: 100%;
  display: block;
}

.ig-caption {
  padding: 0.5rem;
  font-size: 0.9rem;
  color: #333;
}

@media (max-width: 768px) {
  .ig-post {
      width: calc(50% - 1rem);
      /* tablette 2 sütun */
  }
}

@media (max-width: 480px) {
  .ig-post {
      width: 100%;
      /* mobilde tek sütun */
  }
}
/* Örnek olarak büyük ekranlarda butonları yan yana dizmek için (isteğe bağlı):
@media (min-width: 576px) {
  .contact-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .btn {
    width: calc(50% - 0.5rem); 
  }
}
*/

/* Küçük ekran ayarları */
@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.4rem;
  }
  .profile-image {
    width: 120px;
    height: 120px;
  }
}
  /*animasyonlar*/
  .grow-up {
    animation: growUp 0.5s ease-out forwards;
    animation-delay: 3s;
  }
  /* İsteğe bağlı: her buton için artan gecikme */
  .grow-up:nth-child(1) { animation-delay: calc(3s + 0.1s); }
  .grow-up:nth-child(2) { animation-delay: calc(3s + 0.2s); }
  .grow-up:nth-child(3) { animation-delay: calc(3s + 0.3s); }
  @keyframes growUp {
    from {
      transform: scale(0.5);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
/* İsteğe bağlı: Menü açıldığında içerik için animasyon */
            /* Tam ekran beyaz örtü */
            #loadingScreen {
              position: fixed;
              top: 0;
              left: 0;
              width: 100vw;
              height: 100vh;
              background: rgba(0, 0, 0, 0.93);
              display: flex;
              align-items: center;
              justify-content: center;
              z-index: 9999;
              transition: opacity 0.3s ease;
          }

          /* Gizlenirken opaklık animasyonu */
          #loadingScreen.hidden {
              opacity: 0;
              pointer-events: none;
          }

          /* Slider kapsayıcı */
          .icon-slider {
              position: relative;
              width: 150px;
              height: 150px;
          }

          .slide {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              display: flex;
              flex-direction: column;
              align-items: center;
              opacity: 0;
              transition: opacity 0.5s ease;
          }

          .slide.active {
              opacity: 1;
          }

          /* İkon animasyonu (zıplama) */
          .slide i {
              font-size: 3rem;
              animation: bounce 1.5s ease-in-out infinite;
          }

          .slide span {
              margin-top: 0.5rem;
              font-weight: bold;
              color: #333;
          }

          @keyframes bounce {

              0%,
              100% {
                  transform: translateY(0);
              }

              50% {
                  transform: translateY(-10px);
              }
          }