/* Genel sıfırlama ve temel font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Poppins', sans-serif; /* Yeni etkileyici font */
  background-color: #ffffff;  /* Beyaz arka plan */
  color: #111111;             /* Siyah yazılar */
}

/* CSS   Ekranda aşağıya indikçe içerikler yavaşça görünür olabilir (isteğe bağlı):*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Ana container */
.coming-soon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  padding: 20px;
}

/* İçerik */
.content {
  max-width: 600px;
  width: 100%;
}

/* Logo */
.logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

/* Üzerine gelince hafif büyüme efekti (isteğe bağlı) */
.logo:hover {
  transform: scale(1.05);
}

/* Başlık */
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

/* Açıklama yazısı */
p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

/* Geri sayım */
.countdown {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

.countdown div {
  background: #f2f2f2;
  padding: 15px;
  border-radius: 10px;
  width: 150px;
}

.countdown span {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
}

.countdown small {
  font-size: 0.8rem;
}

/* E-posta form alanı daha etkileyici görünsün diye kutu stilinde */
.email-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  flex-wrap: wrap;
  margin-bottom: 30px;
  border: 1px solid #ddd;
}

/* E-posta girişi */
.email-form input {
  flex: 1;
  min-width: 250px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
  background-color: #fff;
  color: #111;
}

.email-form input::placeholder {
  color: #999;
}

/* Fokus efekti */
.email-form input:focus {
  border-color: #0086A7;
  box-shadow: 0 0 0 3px rgba(0, 134, 167, 0.2);
}

/* Buton stili */
.email-form button {
  padding: 12px 24px;
  background: #0086A7;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

/* Hover efekti */
.email-form button:hover {
  background: #006c89;
  transform: scale(1.05);
}

/* Sosyal medya ikonları */
.socials a {
  color: #111;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.socials a:hover {
  transform: scale(1.2);
}

/* Form mesajları */
.form-message {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #d33;
}

.form-message.success {
  color: #28a745;
}


/* Typewriter (yazı makinesi) efekti, */
.typewriter-text {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #0086A7;
  animation: blinkCursor 0.7s steps(40) infinite normal;
}

@keyframes blinkCursor {
  0%, 100% { border-color: #0086A7; }
  50% { border-color: transparent; }
}
