/* Ana Sayfa Stilleri */

/* Daktilo Efekti Stilleri */
.siber-typewriter-container {
  height: 38px;
  overflow: hidden;
}

.siber-typewriter-text {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  white-space: nowrap;
  line-height: 38px;
  margin-top: -10px;
}

.siber-cursor {
  display: inline-block;
  width: 2px;
  background-color: #2c3e50;
  animation: siber-blink 0.7s infinite;
  margin-left: 4px;
}

@keyframes siber-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* Hoşgeldin Bölümü Stilleri */
.title-header {
  font-size: 28px;
  font-weight: bold;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 15px;
}

.write-btn {
  display: inline-block;
  padding: 4px 10px;
  font-size: 24px;
  background-color: #3498db;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.write-btn:hover {
  background-color: #2980b9;
}

.welcome-box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #f9f9fc;
  padding: 40px 20px;
  margin-top: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
}

.welcome-text {
  flex: 1 1 400px;
}

.welcome-text h1 {
  font-size: 36px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 12px;
}

.welcome-text h2 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
text-align: left;
}

.welcome-text p {
  font-size: 15px;
  color: #444;
  max-width: 450px;
text-align: left;
}

.welcome-image {
  flex: 1 1 500px;
  margin-top: -60px;
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
}

.welcome-image img {
  max-width: 100%;
  height: auto;
}

/* Medya Sorguları */
@media (max-width: 992px) {
    .welcome-text, .welcome-image {
        flex-basis: 100%;
        text-align: center;
    }
    .welcome-text p {
        margin-left: auto;
        margin-right: auto;
    }
    .welcome-image {
        margin-top: 20px;
        margin-bottom: 0;
    }
}
