@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #FF416C;
  --primary-gradient: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
  --bg-dark: #050505;
  --bg-gradient: radial-gradient(circle at top left, #1a0b12, #050505 50%, #050505 100%);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --text-main: #FFFFFF;
  --text-muted: #A1A1AA;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-gradient);
  background-color: var(--bg-dark);
  background-attachment: fixed;
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
}

/* Navbar - Glassmorphism */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-main);
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

/* Ambient Glow for Hero */
.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.15;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: pulseGlow 6s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.25; }
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  max-width: 900px;
  background: linear-gradient(to right, #FFF, #CCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 550px;
  margin-bottom: 45px;
  font-weight: 400;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFF !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 65, 108, 0.3);
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 65, 108, 0.5);
}

/* Content Pages - Glassmorphism Card */
.page-container {
  max-width: 850px;
  margin: 140px auto 100px;
  padding: 50px 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.page-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.page-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -1px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 40px 0 20px;
  color: #FFF;
  display: flex;
  align-items: center;
}

.page-container h2::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 12px;
  box-shadow: 0 0 10px var(--primary);
}

.page-container p, 
.page-container ul {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.page-container ul {
  padding-left: 25px;
}

.page-container li {
  margin-bottom: 12px;
  position: relative;
  list-style-type: none;
}

.page-container li::before {
  content: '→';
  color: var(--primary);
  position: absolute;
  left: -25px;
  font-weight: bold;
}

.highlight {
  color: #FFF;
  font-weight: 600;
  background: rgba(255, 65, 108, 0.15);
  padding: 2px 8px;
  border-radius: 6px;
}

.contact-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 16px;
  margin-top: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-link {
  font-size: 1.2rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  display: inline-block;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 14px;
  border-top: 1px solid var(--glass-border);
  background: rgba(5, 5, 5, 0.8);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .nav-links { display: none; }
  .page-container { margin: 100px 20px 40px; padding: 30px 20px; }
  .page-container h1 { font-size: 2rem; }
  .page-container h2 { font-size: 1.3rem; }
}


body.lang-tr .lang-en { display: none !important; }
body.lang-en .lang-tr { display: none !important; }
.lang-switch { position: fixed; bottom: 20px; right: 20px; z-index: 9999; display: flex; gap: 10px; }
.lang-btn { background: var(--glass-bg); border: 1px solid var(--glass-border); color: #fff; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-weight: 600; font-family: inherit; transition: all 0.3s; backdrop-filter: blur(10px); }
.lang-btn:hover { background: rgba(255, 255, 255, 0.1); }
.lang-btn.active { background: var(--primary); border-color: var(--primary); }
