/*
Theme Name: Seo Paket Tek Sayfa Tema
Author: Web Developer
Description: Seo Paket için ultra hızlı, yönetilebilir ve SEO uyumlu tek sayfa WordPress teması.
Version: 1.1.0
*/

:root {
  --bg-main: #0f172a;
  --bg-card: #1e293b;
  --border-color: #334155;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --accent-blue: #38bdf8;
  --btn-blue: #2563eb;
  --btn-green: #16a34a;
}

html {
  scroll-behavior: smooth;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--accent-blue);
  text-transform: uppercase;
}

.logo span {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--accent-blue);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background-color: var(--bg-main);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.82);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px auto;
  color: #cbd5e1;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--btn-blue);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--btn-green);
}

/* Grids & Cards */
.section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--accent-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 8px;
}

.card h3 {
  margin-top: 0;
  color: #93c5fd;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg-card);
  border-left: 4px solid #f59e0b;
  padding: 20px;
  border-radius: 4px;
}

.testimonial-card blockquote {
  margin: 0 0 10px 0;
  font-style: italic;
}

.testimonial-card cite {
  font-weight: bold;
  color: #fbbf24;
  font-style: normal;
  display: block;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  padding: 30px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
