/* =========================================
   style.css — index.html sayfa stilleri
   ========================================= */

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--cream-mid) 1px, transparent 1px),
    linear-gradient(90deg, var(--cream-mid) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--page-pad);
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
.eyebrow-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 8px;
}
.hero-title strong {
  font-weight: 600;
  display: block;
}

.hero-role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 20px;
  font-size: 1rem;
  color: var(--ink-light);
  font-weight: 400;
}
.role-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-desc {
  max-width: 500px;
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── HERO SAĞ PANEL ─────────────────────── */
.hero-right {
  background: var(--cream);
  border-left: 1px solid var(--cream-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.avatar-container {
  position: relative;
  width: 200px;
  height: 200px;
}
.avatar-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid var(--cream-dark);
  animation: rotateRing 25s linear infinite;
}
.avatar-ring::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.avatar-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--accent-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}
.hero-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 16px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.stat-box {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
}
.stat-box .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.stat-box .lbl {
  font-size: 0.7rem;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tech-pill {
  background: var(--off-white);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  color: var(--ink-light);
  font-weight: 500;
}

/* ── FEATURED ───────────────────────────── */
.featured {
  padding: 100px var(--page-pad);
  background: var(--white);
  border-top: 1px solid var(--cream-mid);
}
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.15;
}
.featured-title em {
  font-style: italic;
  color: var(--accent);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--cream-mid);
  border: 1px solid var(--cream-mid);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.feat-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
}
.feat-card:hover { background: var(--off-white); }
.feat-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--stone);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.feat-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}
.feat-card p {
  font-size: 0.875rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feat-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-pale);
  padding: 3px 10px;
  border-radius: 4px;
}
