/*
Theme Name: Loki BR2049
Theme URI: https://matekucsera.com
Author: Máté
Description: Blade Runner 2049 ihletésű portfólió téma — Polylang, rugalmas projektek, modern.
Version: 3.0.0
Text Domain: loki-br2049
*/

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

/* =============================================
   CSS VÁLTOZÓK
   ============================================= */
:root {
  --neon-orange:  #FF6B00;
  --neon-blue:    #00D4FF;
  --neon-pink:    #FF0080;
  --dark-bg:      #05070D;
  --dark-mid:     #080B14;
  --dark-panel:   #0C1020;
  --dark-card:    #0E1225;
  --grid-line:    rgba(0, 212, 255, 0.05);
  --text-primary: #F0F2F8;
  --text-secondary: #B8BFCC;
  --text-muted:   #6E7A90;
  --text-dim:     #3A4255;
  --font-main:    'Exo 2', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --glow-orange:  0 0 10px rgba(255,107,0,0.8), 0 0 30px rgba(255,107,0,0.3);
  --glow-blue:    0 0 10px rgba(0,212,255,0.8), 0 0 30px rgba(0,212,255,0.3);
}

/* =============================================
   ALAP & RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

.cursor-dot {
  width: 7px; height: 7px;
  background: var(--neon-orange); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: var(--glow-orange);
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,107,0,0.55); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* SCANLINE */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.06) 3px, rgba(0,0,0,0.06) 4px);
  pointer-events: none; z-index: 9999;
}

/* RÁCS HÁTTÉR */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* =============================================
   TIPOGRÁFIA
   ============================================= */
h1, h2, h3, h4 { font-family: var(--font-main); font-weight: 800; line-height: 1.15; color: var(--text-primary); }
p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
a { color: var(--neon-blue); text-decoration: none; transition: all 0.2s; }
a:hover { color: var(--neon-orange); }

/* =============================================
   ELRENDEZÉS
   ============================================= */
.site-wrapper { position: relative; z-index: 1; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 110px 0; position: relative; }

.section-label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--neon-orange); letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 0.7rem; font-weight: 500; }
.section-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 1.2rem; color: var(--text-primary); letter-spacing: -0.02em; }
.section-title .accent { color: var(--neon-orange); }
.section-divider { width: 55px; height: 3px; background: var(--neon-orange); margin-bottom: 2.5rem; box-shadow: var(--glow-orange); border-radius: 2px; }

/* =============================================
   NAVIGÁCIÓ
   ============================================= */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(20px); background: rgba(5,7,13,0.9); transition: all 0.3s; }
.site-header.scrolled { padding: 0.8rem 0; background: rgba(5,7,13,0.98); border-bottom-color: rgba(255,107,0,0.15); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.site-logo { font-size: 1.45rem; font-weight: 900; color: var(--text-primary); letter-spacing: 0.04em; text-decoration: none; }
.site-logo span { color: var(--neon-orange); }

.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-menu a { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); transition: all 0.2s; position: relative; padding-bottom: 3px; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--neon-orange); transition: width 0.3s; }
.nav-menu a:hover { color: var(--text-primary); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta { color: var(--neon-orange) !important; border: 1.5px solid var(--neon-orange); padding: 0.45rem 1.2rem !important; border-radius: 2px; }
.nav-cta:hover { background: var(--neon-orange) !important; color: #05070D !important; box-shadow: var(--glow-orange) !important; }
.nav-cta::after { display: none !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--neon-orange); transition: all 0.3s; }

/* =============================================
   HERO
   ============================================= */
.hero-section { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 0; }
.hero-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(0,212,255,0.05) 0%, transparent 70%), radial-gradient(ellipse 50% 70% at 15% 80%, rgba(255,107,0,0.07) 0%, transparent 60%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 130px 0 90px; max-width: 680px; }

.hero-eyebrow { font-family: var(--font-mono); font-size: 0.82rem; font-weight: 500; color: var(--neon-blue); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1.5px; background: var(--neon-blue); flex-shrink: 0; }

.hero-name {
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
.hero-name .line1 { display: block; color: var(--text-primary); }
.hero-name .line1b { display: block; color: var(--text-primary); }
.hero-name .line2 { display: block; color: var(--neon-orange); text-shadow: var(--glow-orange); }

.hero-role { font-size: clamp(1rem, 2.5vw, 1.25rem); font-weight: 500; color: var(--text-secondary); margin-bottom: 1.8rem; min-height: 2rem; }
.hero-role .typed { color: var(--neon-blue); font-weight: 700; }
.type-cursor { display: inline-block; width: 2px; height: 1.1em; background: var(--neon-blue); margin-left: 2px; vertical-align: middle; animation: blink 0.85s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc { font-size: 1.08rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.97rem; font-weight: 800; color: #05070D; background: var(--neon-orange); border: none; padding: 0.9rem 2rem; cursor: none; transition: all 0.3s; box-shadow: var(--glow-orange); text-decoration: none; border-radius: 2px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(255,107,0,0.9), 0 0 60px rgba(255,107,0,0.4); color: #05070D; }

.btn-secondary { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.97rem; font-weight: 700; color: var(--text-primary); background: transparent; border: 1.5px solid rgba(240,242,248,0.2); padding: 0.9rem 2rem; cursor: none; transition: all 0.3s; text-decoration: none; border-radius: 2px; }
.btn-secondary:hover { border-color: var(--neon-blue); color: var(--neon-blue); box-shadow: var(--glow-blue); transform: translateY(-2px); }

.hero-stats { display: flex; gap: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.07); }
.stat-number { font-size: 2.3rem; font-weight: 900; color: var(--neon-orange); line-height: 1; }
.stat-label { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 500; }

.hero-visual { position: absolute; right: -2%; top: 0; bottom: 0; width: 42%; display: flex; align-items: center; justify-content: center; }
.hero-hex { width: 380px; height: 380px; position: relative; }
.hex-ring { position: absolute; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); border: 1px solid; }
.hex-ring:nth-child(1) { width: 100%; height: 100%; border-color: rgba(0,212,255,0.1); animation: spin 28s linear infinite; }
.hex-ring:nth-child(2) { width: 73%; height: 73%; border-color: rgba(255,107,0,0.13); border-style: dashed; animation: spin 18s linear infinite reverse; }
.hex-ring:nth-child(3) { width: 47%; height: 47%; border-color: rgba(255,0,128,0.1); animation: spin 10s linear infinite; }
.hex-core { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; background: radial-gradient(circle, rgba(255,107,0,0.35), transparent 70%); border-radius: 50%; box-shadow: var(--glow-orange); animation: pulse-core 3s ease-in-out infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes pulse-core { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.25)} }

/* =============================================
   RÓLAM — ABOUT
   ============================================= */
/* =============================================
   RÓLAM SZEKCIÓ — v4
   ============================================= */
.about-section { background: var(--dark-mid); }

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  align-items: start;
}

/* Bal oszlop: csak kép + ID kártya */
.about-left { display: flex; flex-direction: column; gap: 0; grid-column: 1; grid-row: 1; }

/* Jobb oszlop: szöveg + képességek */
.about-right { grid-column: 2; grid-row: 1; padding-top: 0.3rem; }

/* Terminal: teljes szélesség, mindkét oszlop alatt */
.about-terminal { grid-column: 1 / -1; grid-row: 2; }

/* Profilkép */
.profile-pic-wrap { width: 100%; }

.profile-pic-frame {
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,107,0,0.4);
  box-shadow: 0 0 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.08);
}
.profile-pic {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.95) saturate(0.9);
}
/* Gradient fade at bottom */
.profile-pic-frame::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(5,7,13,0.75) 0%, transparent 100%);
  pointer-events: none;
}
.profile-pic-name {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Placeholder */
.profile-pic-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px dashed rgba(255,107,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-panel);
  border-radius: 4px;
}
.profile-pic-placeholder-inner { text-align: center; padding: 1.5rem; }
.profile-pic-placeholder-inner p {
  font-size: 0.75rem; color: var(--text-dim);
  margin-top: 0.8rem; line-height: 1.6;
  font-family: var(--font-mono);
}

/* ID kártya a kép alatt — fix szélesség, nincs törés */
.profile-id-card {
  background: var(--dark-panel);
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: 4px;
  overflow: hidden;
}
.profile-id-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 1rem;
}
.profile-id-row:last-child { border-bottom: none; }
.profile-id-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.profile-id-value {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-blue);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── TERMINAL ──────────────────────────────── */
.about-terminal {
  background: var(--dark-panel);
  border: 1px solid rgba(0,212,255,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.terminal-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; background: rgba(0,0,0,0.5); border-bottom: 1px solid rgba(255,255,255,0.05); }
.t-dot { width: 11px; height: 11px; border-radius: 50%; }
.t-dot:nth-child(1){background:#FF5F57} .t-dot:nth-child(2){background:#FEBC2E} .t-dot:nth-child(3){background:#28C840}
.terminal-title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); margin-left: 0.4rem; }
.terminal-body { padding: 1.5rem 1.6rem; font-family: var(--font-mono); font-size: 0.88rem; line-height: 2; color: var(--text-secondary); }
.terminal-body--wide { display: flex; gap: 4rem; }
.terminal-col { flex: 1; }
.t-line { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4rem; }
.t-prompt { color: var(--neon-orange); font-weight: 500; flex-shrink: 0; }
.t-cmd { color: var(--text-primary); font-weight: 500; }
.t-out { color: var(--text-secondary); padding-left: 1rem; width: 100%; }
.t-hl { color: var(--neon-blue); font-weight: 600; }
.t-gap { height: 0.3rem; }

/* ── KÉPESSÉGEK ────────────────────────────── */
.skills-wrap { margin-top: 2rem; }
.skills-wrap h4 { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem; font-family: var(--font-mono); }
.skills-grid { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.skill-tag { font-size: 0.87rem; font-weight: 600; padding: 0.4rem 0.9rem; border: 1px solid rgba(0,212,255,0.18); color: var(--text-secondary); background: rgba(0,212,255,0.04); border-radius: 2px; transition: all 0.25s; }
.skill-tag:hover { border-color: var(--neon-blue); color: var(--neon-blue); background: rgba(0,212,255,0.08); }

/* =============================================
   PROJEKTEK
   ============================================= */
.projects-section { background: var(--dark-bg); }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.5rem; }

.project-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; transition: all 0.35s; position: relative; }
.project-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--neon-orange), var(--neon-pink)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.project-card:hover::after { transform: scaleX(1); }
.project-card:hover { border-color: rgba(255,107,0,0.18); transform: translateY(-5px); box-shadow: 0 25px 60px rgba(0,0,0,0.5); }

.project-img { height: 200px; background: var(--dark-panel); display: flex; flex-direction: column; align-items: center; justify-content: center; border-bottom: 1px solid rgba(255,255,255,0.04); overflow: hidden; position: relative; }
.project-img-icon { font-size: 2.6rem; opacity: 0.35; }
.project-img-label { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-dim); letter-spacing: 0.12em; margin-top: 0.5rem; text-transform: uppercase; }
.project-thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; filter: brightness(0.9) saturate(0.85); }
.project-card:hover .project-thumb { transform: scale(1.04); filter: brightness(1) saturate(1); }

/* Polylang nyelvi kapcsoló */
.nav-menu .lang-item a { font-size: 0.8rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; border: 1px solid rgba(255,255,255,0.1); padding: 0.2rem 0.5rem; border-radius: 2px; }
.nav-menu .lang-item.current-lang a { color: var(--neon-orange); border-color: var(--neon-orange); }
.nav-menu .lang-item a:hover { color: var(--neon-orange); border-color: var(--neon-orange); }
.nav-menu .lang-item a::after { display: none; }

.project-body { padding: 1.4rem; }
.project-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.project-tag { font-size: 0.77rem; font-weight: 700; padding: 0.2rem 0.55rem; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); color: var(--neon-blue); border-radius: 2px; }
.project-title { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.5rem; }
.project-desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.2rem; }
.project-links { display: flex; gap: 1.2rem; }
.project-link { font-size: 0.85rem; font-weight: 700; color: var(--neon-orange); display: flex; align-items: center; gap: 0.3rem; transition: opacity 0.2s; }
.project-link:hover { opacity: 0.75; color: var(--neon-orange); }

.project-soon { display: flex; align-items: center; justify-content: center; border: 1px dashed rgba(255,107,0,0.18); background: transparent; border-radius: 3px; min-height: 260px; }
.project-soon-plus { font-size: 2.5rem; color: var(--neon-orange); opacity: 0.25; line-height: 1; margin-bottom: 0.8rem; }
.project-soon-txt { font-size: 0.82rem; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }

/* =============================================
   IDŐSOR
   ============================================= */
.experience-section { background: var(--dark-mid); }
.timeline { position: relative; padding-left: 2.5rem; max-width: 740px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: linear-gradient(180deg, var(--neon-orange) 0%, rgba(255,107,0,0.04) 100%); }
.timeline-item { position: relative; margin-bottom: 2.5rem; padding: 1.5rem 1.8rem; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.05); border-left: 2px solid rgba(255,107,0,0.2); border-radius: 0 3px 3px 0; transition: border-left-color 0.3s; }
.timeline-item:hover { border-left-color: var(--neon-orange); }
.timeline-item::before { content: ''; position: absolute; left: -3rem; top: 1.7rem; width: 10px; height: 10px; border-radius: 50%; background: var(--neon-orange); box-shadow: var(--glow-orange); }
.timeline-date { font-family: var(--font-mono); font-size: 0.77rem; color: var(--neon-orange); letter-spacing: 0.08em; margin-bottom: 0.4rem; font-weight: 500; }
.timeline-role { font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.2rem; }
.timeline-company { font-size: 0.87rem; font-weight: 600; color: var(--neon-blue); margin-bottom: 0.75rem; }
.timeline-desc { font-size: 0.97rem; color: var(--text-secondary); line-height: 1.72; }

/* =============================================
   KAPCSOLAT
   ============================================= */
.contact-section { background: var(--dark-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }

.contact-intro { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 2.5rem; line-height: 1.8; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact-icon { width: 44px; height: 44px; flex-shrink: 0; border: 1.5px solid rgba(255,107,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--neon-orange); border-radius: 3px; transition: box-shadow 0.2s; }
.contact-info-item:hover .contact-icon { box-shadow: var(--glow-orange); }
.contact-lbl { font-size: 0.77rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-val { font-size: 0.98rem; color: var(--text-secondary); font-weight: 500; }

.social-row { display: flex; gap: 0.7rem; margin-top: 2rem; }
.social-link { width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); border-radius: 3px; transition: all 0.25s; font-family: var(--font-main); }
.social-link:hover { border-color: var(--neon-orange); color: var(--neon-orange); box-shadow: var(--glow-orange); }

.contact-form { background: var(--dark-panel); border: 1px solid rgba(0,212,255,0.1); border-top: 2px solid var(--neon-blue); padding: 2.2rem; border-radius: 0 0 3px 3px; }
.form-group { margin-bottom: 1.3rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.45rem; }
.form-label span { color: var(--neon-orange); }
.form-input, .form-textarea { width: 100%; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); color: var(--text-primary); font-family: var(--font-main); font-size: 1rem; font-weight: 400; padding: 0.75rem 1rem; outline: none; border-radius: 2px; transition: all 0.25s; }
.form-input:focus, .form-textarea:focus { border-color: var(--neon-blue); background: rgba(0,212,255,0.03); box-shadow: 0 0 0 3px rgba(0,212,255,0.08); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--neon-orange); border: none; color: #05070D; font-family: var(--font-main); font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; cursor: none; border-radius: 2px; transition: all 0.3s; margin-top: 0.5rem; }
.form-submit:hover { box-shadow: var(--glow-orange); transform: translateY(-2px); }
.form-success { font-size: 0.9rem; color: var(--neon-blue); margin-top: 0.8rem; text-align: center; font-weight: 600; }

/* =============================================
   LÁBLÉC
   ============================================= */
.site-footer { background: var(--dark-mid); border-top: 1px solid rgba(255,255,255,0.05); padding: 1.8rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.87rem; color: var(--text-dim); font-weight: 500; }
.footer-copy span { color: var(--neon-orange); }
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links a { font-size: 0.87rem; font-weight: 600; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--neon-orange); }

/* =============================================
   ANIMÁCIÓK
   ============================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESZPONZÍV
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-left { flex-direction: row; align-items: flex-start; gap: 1.5rem; }
  .profile-pic-wrap { max-width: 200px; flex-shrink: 0; }
  .about-right { }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 75px 0; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(5,7,13,0.98); align-items: center; justify-content: center; gap: 1.8rem; z-index: 999; }
  .nav-menu.open a { font-size: 1.2rem; }
  .menu-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-left { flex-direction: column; align-items: center; }
  .profile-pic-wrap { max-width: 240px; width: 100%; }
}
