/* ===========================
   VEYD CODE 4.0 — Doğukan Çırlak
   Dark Purple Theme
   =========================== */

:root {
  --bg: #090611;
  --surface: rgba(20,15,44,0.96);
  --surface2: rgba(28,20,56,0.95);
  --border: rgba(142,111,255,0.18);
  --border-light: rgba(142,111,255,0.10);
  --text: #f8f7ff;
  --text-2: #c8c2ff;
  --text-3: #9c95ce;
  --accent: #8d7dff;
  --accent-2: #bda9ff;
  --accent-warm: #c5b1ff;
  --accent-green: #8d7dff;
  --accent-green-light: rgba(141,125,255,0.18);
  --shadow-sm: 0 10px 30px rgba(9,7,31,0.15);
  --shadow: 0 24px 80px rgba(9,7,31,0.22);
  --shadow-lg: 0 26px 100px rgba(9,7,31,0.30);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top right, rgba(141,125,255,0.16), transparent 32%),
              linear-gradient(180deg, #1f1446 0%, #0a0414 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10,6,29,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent-green); }
.nav-logo em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent);
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface2);
}
.nav-links a.active {
  color: var(--accent-green);
  background: var(--accent-green-light);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: white;
  background: var(--text);
  border: none;
  padding: 9px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #333; transform: translateY(-1px); }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 0;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  animation: menuSlideIn 0.3s ease forwards;
}

@keyframes menuSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent-green); padding-left: 8px; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(141,125,255,0.34), rgba(93,74,255,0.10));
  top: -150px; right: -100px;
}
.blob2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,175,215,0.24), rgba(177,120,255,0.08));
  bottom: 0; left: -100px;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  width: fit-content;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  animation: fadeUp 0.6s 0.1s ease both;
}
.title-accent {
  color: var(--accent-green);
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--accent-warm);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineGrow 0.8s 0.7s ease forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 520px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--text); }
.brand-inline {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-green);
}

.hero-actions {
  display: flex;
  gap: 12px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: #7e6fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary.small { padding: 10px 18px; font-size: 14px; }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); background: var(--surface2); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat span, .stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat > span:last-of-type {
  font-size: 32px;
}
.stat p {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero-card-stack {
  position: relative;
  width: 300px;
  height: 340px;
}

.hero-orb {
  position: absolute;
  width: 220px; height: 220px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(173,151,255,0.28), rgba(141,125,255,0.14) 50%, rgba(81,59,214,0.06));
  box-shadow: 0 20px 60px rgba(141,125,255,0.18);
}

.floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
.card-a { top: 10px; left: -20px; animation-delay: 0s; }
.card-b { top: 50%; right: -30px; transform: translateY(-50%); animation-delay: 1.3s; }
.card-c { bottom: 10px; left: 0; animation-delay: 2.6s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-b { animation: floatCardB 4s 1.3s ease-in-out infinite; }
@keyframes floatCardB {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

.fc-icon {
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-text { display: flex; flex-direction: column; gap: 1px; }
.fc-text strong { font-size: 13px; font-weight: 600; color: var(--text); }
.fc-text span { font-size: 11px; color: var(--text-3); }

/* ===========================
   SECTIONS COMMON
   =========================== */
.section { padding: 100px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
}
.section-title span { color: var(--accent-green); }

.section-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  line-height: 1.7;
  margin-top: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label { display: inline-block; }
.section-header .section-desc { margin: 12px auto 0; }

/* ===========================
   ABOUT
   =========================== */
.about { background: var(--surface); }

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

.about-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}
.tag:hover {
  background: var(--accent-green-light);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-avatar {
  position: relative;
  width: 100px; height: 100px;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-green), var(--accent-warm), var(--accent-green));
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.avatar-inner {
  position: absolute;
  inset: 4px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--text);
}

.about-card-info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}
.about-card-info p {
  font-size: 14px;
  color: var(--text-3);
  margin-top: 4px;
}

.about-card-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--accent-green);
  background: var(--accent-green-light);
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.about-card-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.ab-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
  transition: all 0.2s;
}
.ab-badge:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* ===========================
   PROJECTS
   =========================== */
.projects { background: var(--bg); }

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

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-light);
}
.project-card:hover::before { transform: scaleX(1); }

.project-card.featured {
  grid-column: span 1;
  background: linear-gradient(135deg, #110a24 0%, #5c48ff 100%);
  border-color: transparent;
  color: white;
}
.project-card.featured h3 { color: white; }
.project-card.featured p { color: rgba(255,255,255,0.78); }
.project-card.featured .project-tags span {
  background: rgba(141,125,255,0.16);
  color: rgba(255,255,255,0.9);
  border-color: rgba(141,125,255,0.22);
}
.project-card.featured .project-link { color: #d7c8ff; }
.project-card.featured .project-link:hover { color: #f0e8ff; }

.project-cta-card {
  background: linear-gradient(135deg, rgba(20,15,44,0.95), rgba(38,26,82,0.95));
  border: 2px dashed rgba(142,111,255,0.18);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.project-cta-card h3, .project-cta-card p { text-align: center; }

.project-badge {
  display: inline-block;
  background: rgba(141,125,255,0.18);
  color: #e7e0ff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.project-icon-wrap {
  width: 48px; height: 48px;
  background: var(--surface2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card.featured .project-icon-wrap {
  background: rgba(255,255,255,0.1);
}
.project-icon {
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.project-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-tags span {
  font-size: 12px;
  font-weight: 500;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 3px 10px;
  border-radius: 100px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-green);
  margin-top: 4px;
  transition: gap 0.2s;
}
.project-link:hover { gap: 10px; }

/* ===========================
   SKILLS
   =========================== */
.skills { background: var(--surface); }

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

.skill-group {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s;
}
.skill-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sg-icon {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.skill-group h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}

.skill-group ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skill-group li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 14px;
  position: relative;
}
.skill-group li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 600;
}

/* ===========================
   CONTACT
   =========================== */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 36px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.contact-item:hover {
  border-color: var(--accent-green);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.ci-icon {
  width: 40px; height: 40px;
  background: var(--surface2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-green);
}

.ci-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
}
.ci-value {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-field textarea { min-height: 110px; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(45,122,90,0.1);
}

.form-success {
  display: none;
  text-align: center;
  font-size: 14px;
  color: var(--accent-green);
  font-weight: 500;
  background: var(--accent-green-light);
  padding: 14px;
  border-radius: 10px;
  animation: fadeUp 0.3s ease;
}
.form-success.show { display: block; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #090611;
  color: white;
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer .nav-logo { color: white; }
.footer .nav-logo span { color: #bda9ff; }
.footer .nav-logo em { background: rgba(255,255,255,0.15); }

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }

.footer-copy p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Shake Animation --- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(2px); }
}

.shake {
  animation: shake 0.6s ease;
}

/* --- Toast Notification --- */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--text);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 24px 60px; text-align: center; }
  .hero-inner { align-items: center; max-width: 100%; }
  .hero-badge { margin: 0 auto; }
  .hero-sub { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-right { display: none; }

  .projects-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .skills-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .hero-title { letter-spacing: -2px; font-size: 32px; line-height: 1.2; }
  .hero-sub { font-size: 14px; }
  .section-title { font-size: 28px; }
  .container { padding: 0 16px; }
  .btn-primary, .btn-ghost { font-size: 14px; padding: 12px 20px; }
  .project-card { padding: 20px; }
  .skill-group { padding: 16px; }
  .contact-form-wrap { padding: 24px; gap: 14px; }
  .form-field label { font-size: 12px; }
  .form-field input,
  .form-field textarea { font-size: 14px; padding: 10px; }
}