/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f5f0;
  color: #4c2f64;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HEADER ALTINDAN BAŞLAT === */
main.page-content {
  padding-top: 90px; /* header yüksekliği kadar boşluk */
  min-height: calc(100vh - 150px);
  box-sizing: border-box;
  position: relative;
}

/* === ANA SAYFA BÖLÜMÜ === */
.welcome-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(circle at top left, #f6f2fa, #ece4f2);
}

.welcome-section h1 {
  font-size: 3rem;
  color: #4c2f64;
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: fadeInUp 1.5s ease forwards;
}

.welcome-section p {
  max-width: 600px;
  font-size: 1.1rem;
  color: #6C4E87;
  opacity: 0.9;
  animation: fadeIn 2s ease 0.3s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* === CTA BUTONU === */
.cta-container {
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  padding: 14px 38px;
  background-color: #6C4E87;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(108, 78, 135, 0.25);
  animation: fadeInUp 1.5s ease 0.8s forwards;
  opacity: 0;
}

.cta-button:hover {
  background-color: #8b6fb3;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(108, 78, 135, 0.35);
}


/* === FOOTER === */
footer {
  width: 100%;
  text-align: center;
  background: rgba(108, 78, 135, 0.9);
  color: #f5f5f5;
  padding: 14px 0;
  font-size: 13px;
  letter-spacing: 1px;
  z-index: 5;
  position: relative;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .welcome-section h1 { font-size: 2.2rem; }
  .welcome-section p { font-size: 1rem; }
}
