/* ==========================================================================
   BOZZKURT.COM — MODERN CINEMATIC DARK TECH EXPERIENCE
   Concept: Gecede Bir Kurt. Arkasında Kanlı Ay. Önünde Teknoloji.
   Author: Semih Bozkurt
   ========================================================================== */

/* --- 1. CSS VARIABLES & DESIGN TOKENS --- */
:root {
  /* Dark Tech Palette */
  --bg-deep: #050507;
  --bg-main: #09090d;
  --bg-surface: #0e0e13;
  --bg-panel: #13131a;
  --bg-panel-hover: #181822;
  --bg-glass: rgba(14, 14, 19, 0.72);
  --bg-glass-card: rgba(19, 19, 26, 0.65);

  /* Crimson & Blood Palette */
  --blood-base: #8f0d16;
  --blood-primary: #b81420;
  --blood-bright: #ff2e3f;
  --blood-vivid: #ff4757;
  --blood-glow: rgba(255, 46, 63, 0.28);
  --blood-subtle: rgba(184, 20, 32, 0.14);
  --blood-border: rgba(255, 46, 63, 0.22);

  /* Moon & Text Palette */
  --text-moon: #f6f2ea;
  --text-cream: #ece6da;
  --text-muted: #9e98a3;
  --text-dim: #6d6775;
  --text-accent: #ff3849;

  /* Lines & Borders */
  --border-hairline: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-focus: rgba(255, 46, 63, 0.6);

  /* Fonts */
  --font-display: 'Bebas Neue', -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;

  /* Layout & Transitions */
  --max-width: 1200px;
  --header-height: 84px;
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. BASE & RESET --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg-deep);
}

body {
  background-color: var(--bg-deep);
  color: var(--text-moon);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  selection-background-color: var(--blood-primary);
  selection-color: var(--text-moon);
}

::selection {
  background: var(--blood-primary);
  color: #ffffff;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

.mono {
  font-family: var(--font-mono);
}

.display {
  font-family: var(--font-display);
}

.heading {
  font-family: var(--font-heading);
}

/* --- 3. CUSTOM MOUSE GLOW (DESKTOP ONLY) --- */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 63, 0.06) 0%, rgba(184, 20, 32, 0.02) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease, transform 0.15s cubic-bezier(0.1, 0.8, 0.3, 1);
  will-change: transform;
}

@media (max-width: 1024px) {
  .cursor-glow {
    display: none !important;
  }
}

/* --- 4. NAVIGATION BAR --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, height 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(7, 7, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-hairline);
  height: 72px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text-moon);
  text-transform: uppercase;
  transition: transform 0.25s ease;
}

.brand-link:hover {
  transform: scale(1.02);
}

.brand-indicator {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--blood-bright);
  box-shadow: 0 0 12px 3px var(--blood-glow);
}

.brand-indicator::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 63, 0.4);
  animation: pulseBeacon 2.5s infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}

.brand-text {
  font-weight: 400;
}

.brand-suffix {
  color: var(--blood-bright);
  margin-left: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--blood-bright);
  box-shadow: 0 0 8px var(--blood-bright);
  transition: width 0.3s var(--ease-cinematic);
}

.nav-link:hover {
  color: var(--text-moon);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-moon);
}

/* Nav CTA Pill */
.nav-cta-btn {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 4px;
  background: rgba(184, 20, 32, 0.15);
  border: 1px solid var(--blood-border);
  color: var(--text-moon);
  transition: all 0.25s ease;
}

.nav-cta-btn:hover {
  background: var(--blood-primary);
  border-color: var(--blood-bright);
  box-shadow: 0 0 16px var(--blood-glow);
  transform: translateY(-1px);
}

/* Mobile Hamburger Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  z-index: 1010;
}

.toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-moon);
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.is-open .toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--blood-bright);
}

.mobile-toggle.is-open .toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-open .toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--blood-bright);
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 9, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.mobile-nav-links .nav-link {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
  color: var(--blood-bright);
}

.mobile-drawer-footer {
  margin-top: 48px;
  text-align: center;
}

.mobile-motto {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* --- 5. HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 90% 65% at 75% 25%, rgba(184, 20, 32, 0.16) 0%, transparent 60%),
    radial-gradient(circle at 15% 75%, rgba(20, 20, 28, 0.8) 0%, transparent 70%),
    var(--bg-deep);
}

/* Atmospheric Particle Canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Atmospheric Background Elements */
.hero-scenery {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* BLOOD MOON (KANLI AY) */
.blood-moon-wrapper {
  position: absolute;
  top: 10%;
  right: 10%;
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  z-index: 2;
  transition: transform 0.4s ease-out;
}

.blood-moon {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, 
    #ff616f 0%, 
    #e8182b 30%, 
    #b3121c 60%, 
    #5a060d 85%, 
    #1b0204 100%);
  box-shadow: 
    0 0 80px 24px rgba(232, 24, 43, 0.45),
    0 0 160px 70px rgba(179, 18, 28, 0.22),
    inset -15px -15px 40px rgba(0, 0, 0, 0.85),
    inset 10px 10px 30px rgba(255, 140, 150, 0.35);
  animation: moonAtmosphere 8s ease-in-out infinite;
}

/* Moon Crater Details (Abstract Cinematic Realism) */
.moon-texture {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: 
    radial-gradient(circle at 28% 40%, rgba(90, 6, 13, 0.45) 0%, transparent 18%),
    radial-gradient(circle at 62% 28%, rgba(90, 6, 13, 0.35) 0%, transparent 14%),
    radial-gradient(circle at 45% 70%, rgba(70, 4, 10, 0.5) 0%, transparent 22%),
    radial-gradient(circle at 72% 60%, rgba(90, 6, 13, 0.4) 0%, transparent 16%),
    radial-gradient(circle at 20% 65%, rgba(60, 3, 8, 0.4) 0%, transparent 12%);
  mix-blend-mode: multiply;
}

/* Atmospheric Rings */
.moon-halo-ring {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  border: 1px solid rgba(255, 46, 63, 0.15);
  animation: haloExpand 6s linear infinite;
  opacity: 0;
}

.moon-halo-ring:nth-child(2) {
  animation-delay: 2s;
}

.moon-halo-ring:nth-child(3) {
  animation-delay: 4s;
}

@keyframes haloExpand {
  0% { transform: scale(0.85); opacity: 0.6; }
  50% { opacity: 0.25; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes moonAtmosphere {
  0%, 100% {
    box-shadow: 
      0 0 80px 24px rgba(232, 24, 43, 0.45),
      0 0 160px 70px rgba(179, 18, 28, 0.22),
      inset -15px -15px 40px rgba(0, 0, 0, 0.85);
  }
  50% {
    box-shadow: 
      0 0 110px 38px rgba(255, 46, 63, 0.55),
      0 0 200px 90px rgba(179, 18, 28, 0.3),
      inset -15px -15px 40px rgba(0, 0, 0, 0.85);
  }
}

/* Distant Mountain Ridges */
.hero-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 38%;
  z-index: 2;
}

.mountain-layer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.mountain-layer.back {
  opacity: 0.5;
  filter: blur(1px);
}

/* WOLF SILHOUETTE (KURT) */
.hero-wolf-wrapper {
  position: absolute;
  bottom: 0;
  left: 4%;
  width: clamp(240px, 32vw, 440px);
  z-index: 3;
  pointer-events: none;
  transition: transform 0.4s ease-out;
}

.wolf-svg-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 25px rgba(0, 0, 0, 0.95));
}

/* Wolf Breath Effect */
.wolf-mist {
  position: absolute;
  top: 25%;
  right: 32%;
  width: 90px;
  height: 50px;
  background: radial-gradient(ellipse, rgba(255, 46, 63, 0.25) 0%, rgba(184, 20, 32, 0.12) 40%, transparent 70%);
  border-radius: 50%;
  animation: wolfBreath 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wolfBreath {
  0% { opacity: 0; transform: translate(0, 0) scale(0.4); }
  35% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(45px, -45px) scale(1.6); }
}

/* Atmospheric Mist Layers */
.hero-ground-mist {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to top, var(--bg-deep) 30%, rgba(5, 5, 7, 0.8) 60%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

/* Hero Content Grid */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(184, 20, 32, 0.12);
  border: 1px solid var(--blood-border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-moon);
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--blood-bright);
  box-shadow: 0 0 8px var(--blood-bright);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8.5vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--text-moon);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title .brand-accent {
  display: block;
  color: var(--blood-bright);
  text-shadow: 0 0 35px rgba(255, 46, 63, 0.35);
  font-size: 0.82em;
}

.hero-motto-box {
  margin: 22px 0 18px;
  padding-left: 18px;
  border-left: 2px solid var(--blood-bright);
}

.hero-motto {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 500;
  color: var(--text-cream);
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* CTA Button Group */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.28s var(--ease-cinematic);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: var(--blood-primary);
  color: #ffffff;
  border: 1px solid var(--blood-bright);
  box-shadow: 0 4px 20px rgba(184, 20, 32, 0.35);
}

.btn-primary:hover {
  background: var(--blood-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 46, 63, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  color: var(--text-moon);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blood-bright);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}

.btn-icon {
  transition: transform 0.25s ease;
}

.btn:hover .btn-icon {
  transform: translateX(3px);
}

/* Responsive Hero Adjustments */
@media (max-width: 900px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 60px;
  }
  
  .blood-moon-wrapper {
    top: 6%;
    right: 4%;
    width: 200px;
    height: 200px;
    opacity: 0.75;
  }

  .hero-wolf-wrapper {
    left: auto;
    right: -10px;
    bottom: -10px;
    width: 210px;
    opacity: 0.35;
  }

  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 110px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .blood-moon-wrapper {
    width: 160px;
    height: 160px;
    top: 8%;
    right: 2%;
    opacity: 0.6;
  }

  .hero-wolf-wrapper {
    width: 160px;
    opacity: 0.25;
  }
}

/* --- 6. SHARED SECTION STYLES --- */
section {
  position: relative;
  padding: 130px 0;
  z-index: 10;
}

.section-divider {
  position: relative;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--border-hairline) 20%, var(--blood-border) 50%, var(--border-hairline) 80%, transparent);
}

.section-header {
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blood-bright);
  margin-bottom: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--blood-bright);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--text-moon);
  text-transform: uppercase;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  line-height: 1.7;
  margin-top: 14px;
}

/* --- 7. ABOUT SECTION (HAKKIMDA) --- */
.about-section {
  background-color: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: center;
}

.about-visual-column {
  position: relative;
}

.about-quote-card {
  position: relative;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--blood-bright), var(--blood-base));
}

.about-quote-icon {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--blood-bright);
  line-height: 0.6;
  opacity: 0.35;
  margin-bottom: 20px;
}

.about-main-quote {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-moon);
  margin-bottom: 24px;
}

.about-quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.author-line {
  width: 24px;
  height: 1px;
  background-color: var(--blood-bright);
}

.about-content-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-paragraph {
  font-size: 1.08rem;
  color: var(--text-cream);
  line-height: 1.8;
}

.about-paragraph strong {
  color: var(--text-moon);
  font-weight: 600;
}

/* Feature Badges */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.pillar-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-hairline);
  padding: 16px 20px;
  border-radius: 4px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.pillar-item:hover {
  border-color: var(--blood-border);
  transform: translateY(-2px);
}

.pillar-icon {
  color: var(--blood-bright);
  font-size: 1.1rem;
  margin-top: 2px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-moon);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
}

/* --- 8. PROJECTS SECTION (PROJELERİM) --- */
.projects-section {
  background-color: var(--bg-deep);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.project-card {
  position: relative;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-hairline);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.35s var(--ease-cinematic), border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blood-bright), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--blood-border);
  box-shadow: 
    0 18px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 46, 63, 0.08);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.project-index {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blood-bright);
  letter-spacing: 0.05em;
}

.project-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-category-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hairline);
  padding: 4px 10px;
  border-radius: 20px;
}

.project-status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 4px 8px;
  border-radius: 20px;
}

.status-dot-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}

/* Abstract Tech Visual Mockup */
.project-visual-preview {
  position: relative;
  width: 100%;
  height: 160px;
  margin: 18px 0 24px;
  background: rgba(9, 9, 13, 0.9);
  border: 1px solid var(--border-hairline);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.project-visual-preview svg {
  width: 100%;
  height: 100%;
}

.project-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.03em;
  color: var(--text-moon);
  margin-bottom: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
  flex-grow: 1;
}

.project-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border-hairline);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-moon);
  transition: all 0.25s ease;
}

.project-card:hover .project-action-link {
  background: var(--blood-primary);
  border-color: var(--blood-bright);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--blood-glow);
}

.project-action-link .action-arrow {
  transition: transform 0.25s ease;
}

.project-card:hover .project-action-link .action-arrow {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .project-card {
    padding: 28px 22px;
  }

  .project-visual-preview {
    height: 140px;
  }
}

/* --- 9. CAPABILITIES SECTION (NELER YAPIYORUM) --- */
.skills-section {
  background-color: var(--bg-surface);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-hairline);
  border-radius: 6px;
  padding: 30px 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-4px);
  border-color: var(--blood-border);
}

.skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.skill-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(184, 20, 32, 0.12);
  border: 1px solid var(--blood-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blood-bright);
}

.skill-index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.skill-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-moon);
  margin-bottom: 10px;
}

.skill-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* --- 10. CONTACT SECTION (İLETİŞİM) --- */
.contact-section {
  background: 
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(184, 20, 32, 0.18) 0%, transparent 70%),
    var(--bg-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-box {
  max-width: 720px;
  margin: 0 auto;
}

.contact-motto {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: var(--text-cream);
  margin: 16px auto 36px;
  max-width: 580px;
  line-height: 1.6;
}

.contact-card-interactive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--bg-panel);
  border: 1px solid var(--blood-border);
  padding: 16px 32px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-moon);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 46, 63, 0.15);
  transition: all 0.28s ease;
  margin-bottom: 36px;
}

.contact-card-interactive:hover {
  background: var(--blood-primary);
  border-color: var(--blood-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 46, 63, 0.35);
  color: #ffffff;
}

.copy-btn {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.contact-card-interactive:hover .copy-btn {
  background: rgba(0, 0, 0, 0.25);
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-top: 18px;
}

.social-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid var(--border-hairline);
  transition: all 0.25s ease;
}

.social-link-item:hover {
  color: var(--blood-bright);
  border-color: var(--blood-border);
  background: rgba(184, 20, 32, 0.08);
}

/* --- 11. FOOTER --- */
.site-footer {
  background-color: var(--bg-deep);
  border-top: 1px solid var(--border-hairline);
  padding: 44px 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--text-moon);
}

.footer-legal {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-hairline);
  padding: 6px 12px;
  border-radius: 20px;
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}

/* --- 12. SCROLL REVEAL ANIMATIONS (60 FPS OPTIMIZED) --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-cinematic), transform 0.75s var(--ease-cinematic);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- 13. PREFERS-REDUCED-MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .blood-moon, .moon-halo-ring, .wolf-mist, .brand-indicator::after {
    animation: none !important;
  }
  .hero-canvas, .cursor-glow {
    display: none !important;
  }
}
