body {
  font-family: 'Poppins', sans-serif;
  background-color: #3a0ca3;
  color: #fff8dc;
  margin: 0;
  padding: 0;
}

nav {
  background-color: #2a076c;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(45deg, #fffacd, #fce883, #ffe135);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 3px #00000099;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  background: linear-gradient(45deg, #fffacd, #fce883, #ffe135);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px 2px #00000088;
  font-weight: 700;
  font-size: 1rem;
}

h1, h3, p, nav ul li a {
  color: #ffe933;
  text-shadow: 1px 1px 2px #000;
}

.auth-buttons {
  margin-left: auto;
}

.auth-buttons a {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(to right, #fff176, #ffeb3b);
  color: #2a076c;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.auth-buttons a:hover {
  background: linear-gradient(to right, #ffeb3b, #fff176);
  transform: translateY(-2px);
}

#hero {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #3a0ca3;
}

#cta-section {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #2a076c;
}

.cta-block {
  background-color: #3a0ca3;
  padding: 2rem;
  border-radius: 10px;
  width: 30%;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.cta-block a {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #fdd835;
  color: #2a076c;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: background 0.3s ease;
}

.cta-block a:hover {
  background-color: #fff633;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #2a076c;
  color: #fce883;
}

/* === GÜNCELLENMİŞ NAVBAR VE LOGO === */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #2a076c;
  padding: 0.2rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


.navbar ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #ffe933;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.navbar ul li a:hover {
  color: #fff176;
}

.logo img {
  height: 189px; /* %25 büyütülmüş logo */
  width: auto;
  margin-right: 12px;
  filter: drop-shadow(0 0 6px rgba(255, 233, 51, 0.6));
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(255, 233, 51, 0.85));
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-item {
  position: relative;
  font-weight: bold;
  font-size: 1rem;
  color: #ffe933;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links .nav-item::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #ffe933;
  transition: width 0.3s ease;
}

.nav-links .nav-item:hover::after {
  width: 100%;
}