/* css/page2.css */
/* Root değişkenleri */
:root {
  --grad-start: #ff7e5f;
  --grad-end:   #feb47b;
  --btn-radius: 50px;
  --btn-pad:    0.8rem 2.2rem;
  --txt-light:  #fff;
  --shadow:     0 8px 24px rgba(0,0,0,0.2);
}

/* Tam ekran ve kutu modeli ayarları */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Navbar’ı gradient arka plan üzerinde üstte tut */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  z-index: 10;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--txt-light);
  text-decoration: none;
}
.navbar .logo img {
  height: 32px;
  margin-right: 8px;
}
.navbar nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.navbar nav a {
  color: var(--txt-light);
  text-decoration: none;
  font-weight: 500;
}
.theme-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--txt-light);
  transition: transform 0.2s;
}
.theme-btn:hover {
  transform: scale(1.1);
}

/* Ana sayfa tam ekran gradient */
.page2 {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7B2FF2, #1AC8FC);
  color: var(--txt-light);
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.animated-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  filter: blur(8px);
  animation: blobMove 16s infinite alternate ease-in-out;
}
.blob1 {
  width: 340px; height: 340px;
  background: #7B2FF2;
  left: 5%; top: 10%;
  animation-delay: 0s;
}
.blob2 {
  width: 260px; height: 260px;
  background: #1AC8FC;
  right: 8%; top: 30%;
  animation-delay: 2s;
}
.blob3 {
  width: 180px; height: 180px;
  background: #fff;
  left: 40%; bottom: 8%;
  opacity: 0.18;
  animation-delay: 4s;
}
@keyframes blobMove {
  0%   { transform: scale(1)   translateY(0)   rotate(0deg); }
  40%  { transform: scale(1.08) translateY(-30px) rotate(10deg); }
  60%  { transform: scale(0.95) translateY(20px)  rotate(-8deg); }
  100% { transform: scale(1.1)  translateY(-10px) rotate(8deg); }
}
.page2 .content {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

/* Başlık ve alt metin */
.page2 h1 {
  font-family: 'Poppins', 'Montserrat', 'Inter', Arial, Helvetica, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(26, 40, 80, 0.35), 0 2px 8px rgba(0,0,0,0.18);
}
.page2 .subtext {
  font-size: 1.125rem;
  opacity: 1.5;
  margin-bottom: 2rem;
}

/* Buton grubu düzeni */
.buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Ortak buton stili */
.btn {
  position: relative;
  display: inline-block;
  padding: var(--btn-pad);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--txt-light);
  border: none;
  border-radius: var(--btn-radius);
  background: linear-gradient(90deg, #7B2FF2, #1AC8FC);
  box-shadow: 0 4px 16px rgba(123,47,242,0.13);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}
/* Parlak kayan efekt */
.btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 60%);
  transform: translate(-100%, -100%) rotate(45deg);
  transition: transform 0.5s ease;
}
.btn:hover::before {
  transform: translate(0, 0) rotate(45deg);
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(26,200,252,0.18);
  background: linear-gradient(90deg, #1AC8FC, #7B2FF2);
}

/* Özel buton (isteğe bağlı ikon veya farklı gradient ekleyebilirsin) */
.btn-financial { /* placeholder */ }
.btn-work      { /* placeholder */ }

/* Mobil uyumluluk */
@media (max-width: 600px) {
  .page2 h1 {
    font-size: 2.25rem;
  }
  .page2 .subtext {
    font-size: 1rem;
  }
  .buttons {
    gap: 1rem;
  }
  .btn {
    padding: 0.6rem 1.6rem;
    font-size: 1rem;
  }
}
