/* Darama LIVE - TikTok Ajansı Kurumsal Site */
/* Renk Paleti: Logo ile uyumlu */
:root {
  --primary-pink: #ff2d92;
  --primary-blue: #25f4ee;
  --accent-purple: #7b2cbf;
  --dark-bg: #0d0d0d;
  --dark-card: #1a1a1a;
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --gradient-neon: linear-gradient(135deg, #ff2d92 0%, #7b2cbf 50%, #25f4ee 100%);
  --shadow-glow: 0 0 30px rgba(255, 45, 146, 0.3), 0 0 60px rgba(37, 244, 238, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 45, 146, 0.2);
  transition: all 0.3s ease;
  overflow: visible;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 90px;
  max-height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}

.logo {
  height: 115px;
  width: auto;
  max-width: 410px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-pink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.5) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 100vw);
  height: 600px;
  background: radial-gradient(circle, rgba(255, 45, 146, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-neon);
  color: var(--text-white);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 45, 146, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-pink);
  border: 2px solid var(--primary-pink);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: var(--primary-pink);
  color: white;
}

.hero-free-badge {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--primary-blue);
}

.hero-free-badge strong {
  color: var(--primary-pink);
}

/* Sections */
section {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-title span {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Hakkımızda */
.about {
  background: rgba(26, 26, 26, 0.5);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-pink);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-content a {
  color: var(--primary-pink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.about-content a:hover {
  border-bottom-color: var(--primary-pink);
}

/* Eğitimler */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 45, 146, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary-pink);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Neden Biz */
.why-us {
  background: rgba(26, 26, 26, 0.5);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.stat-item h4 {
  font-size: 2.5rem;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-muted);
}

/* İletişim */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--dark-card);
  color: var(--text-white);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--dark-card);
  border-top: 1px solid rgba(255, 45, 146, 0.2);
  padding: 1.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.footer-company-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.footer-company-info p:first-child {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo {
  height: 90px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-pink);
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 45, 146, 0.2);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
    box-sizing: border-box;
  }

  .hero-content > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .hero .btn-outline {
    margin-left: 0;
    margin-top: 0;
  }

  section {
    padding: 4rem 1.5rem;
    box-sizing: border-box;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
