/* ============================================================
   style.css  —  Main stylesheet for Nyle Fazal's Portfolio
   ============================================================ */

/* ─── CSS VARIABLES (Themes) ─── */
:root {
  --bg:           #F5F4F0;
  --bg2:          #EDECEA;
  --surface:      #FFFFFF;
  --border:       rgba(0,0,0,0.08);
  --text:         #0F0E0D;
  --text2:        #5C5955;
  --text3:        #9C9894;
  --accent:       #1A1714;
  --accent2:      #C8A97E;
  --accent3:      #4A6FA5;
  --glow:         rgba(200,169,126,0.15);
  --shadow:       0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
  --shadow-lg:    0 4px 6px rgba(0,0,0,0.04), 0 20px 60px rgba(0,0,0,0.10);
  --radius:       14px;
  --radius-lg:    20px;
  --radius-full:  9999px;
  --transition:   0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark {
  --bg:           #111010;
  --bg2:          #181716;
  --surface:      #1E1D1C;
  --border:       rgba(255,255,255,0.07);
  --text:         #F0EEE9;
  --text2:        #A09B94;
  --text3:        #5C5955;
  --accent:       #F0EEE9;
  --accent2:      #C8A97E;
  --accent3:      #6B9AD1;
  --glow:         rgba(200,169,126,0.08);
  --shadow:       0 1px 3px rgba(0,0,0,0.2),  0 8px 32px rgba(0,0,0,0.3);
  --shadow-lg:    0 4px 6px rgba(0,0,0,0.2),  0 20px 60px rgba(0,0,0,0.4);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ─── BACKGROUND GRID ─── */
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  opacity: 0.6;
}

.dark .bg-grid { opacity: 0.35; }

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none; z-index: -1;
  background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

/* ─── SECTION BASE ─── */
section { padding: 96px 5vw; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; font-weight: 500;
  color: var(--accent2); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; width: 20px; height: 1.5px; background: var(--accent2);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  letter-spacing: -0.02em; color: var(--text); line-height: 1.1;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(20px,-30px) scale(1.05); }
  66%       { transform: translate(-15px,20px) scale(0.95); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,175,80,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0.1); }
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 5vw; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: background var(--transition), border-color var(--transition);
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent); color: var(--bg);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: -0.5px;
  transition: background var(--transition), color var(--transition);
}

.logo-text {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--text); transition: color var(--transition);
}

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

.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text2);
  text-decoration: none; letter-spacing: 0.01em;
  position: relative; transition: color 0.2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--accent2); transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.btn-icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 10px;
  background: transparent; color: var(--text2); cursor: pointer;
  transition: all 0.2s ease;
}
.btn-icon:hover { background: var(--surface); color: var(--text); border-color: var(--accent2); }
.btn-icon .material-symbols-outlined { font-size: 18px; }

.btn-primary {
  height: 38px; padding: 0 20px;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13.5px;
  cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: all 0.2s ease;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-outline {
  height: 38px; padding: 0 20px;
  background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13.5px;
  cursor: pointer; text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: all 0.2s ease;
}
.btn-outline:hover { border-color: var(--accent2); background: var(--glow); }

.hamburger { display: none; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0; z-index: 99;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 5vw 24px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px; font-size: 15px; font-weight: 500;
  color: var(--text2); text-decoration: none;
  border-radius: 10px; transition: all 0.2s;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--text); }

/* ─── HERO ─── */
#home {
  min-height: 100svh; padding: 120px 5vw 80px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(200,169,126,0.12) 0%, transparent 70%);
}
.orb-2 {
  width: 350px; height: 350px; bottom: -50px; left: -50px;
  background: radial-gradient(circle, rgba(74,111,165,0.08) 0%, transparent 70%);
  animation-delay: -4s;
}

.hero-inner {
  max-width: 900px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 28px;
}

.availability-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--text2);
  box-shadow: var(--shadow);
  opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
}
.availability-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4CAF50; box-shadow: 0 0 0 3px rgba(76,175,80,0.2);
  animation: pulse-dot 2s ease infinite;
}

.hero-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 10vw, 96px); font-weight: 800;
  line-height: 0.95; letter-spacing: -0.03em; color: var(--text);
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-name .accent-word { color: var(--accent2); display: inline-block; }

.hero-signature {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards;
}
.sig-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-family: 'DM Mono', monospace; font-size: 11.5px; font-weight: 500;
  color: var(--text2); white-space: nowrap;
}
.sig-pill .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent2); }

.hero-bio {
  max-width: 580px; font-size: 18px; font-weight: 300; line-height: 1.7; color: var(--text2);
  opacity: 0; animation: fadeUp 0.7s ease 0.65s forwards;
}

.hero-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; animation: fadeUp 0.7s ease 0.75s forwards;
}

.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--accent); color: var(--bg);
  border: none; border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.cta-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
  opacity: 0; transition: opacity 0.3s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.cta-primary:hover::before { opacity: 1; }

.cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent; color: var(--text);
  border: 1.5px solid var(--border); border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; text-decoration: none; transition: all var(--transition);
}
.cta-secondary:hover { border-color: var(--accent2); background: var(--glow); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text3); font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.7s ease 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--accent2), transparent);
  animation: scrollAnim 2s ease infinite;
}

/* ─── ABOUT ─── */
#about { background: var(--bg2); }

.about-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.about-left { display: flex; flex-direction: column; gap: 32px; }

.avatar-wrap { position: relative; width: fit-content; }
.avatar-ring {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent3)); padding: 3px;
}
.avatar-inner {
  width: 100%; height: 100%; border-radius: 50%; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: var(--text);
}
.status-pill {
  position: absolute; bottom: 8px; right: -8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 4px 12px;
  font-size: 11px; font-weight: 600; color: #4CAF50;
  display: flex; align-items: center; gap: 5px; box-shadow: var(--shadow);
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; }

.about-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-item:hover { border-color: var(--accent2); transform: translateX(4px); }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--text);
}
.stat-label { font-size: 12px; font-weight: 500; color: var(--text2); text-align: right; }

.about-right { display: flex; flex-direction: column; gap: 28px; }
.about-bio { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--text2); }

.skills-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
  padding: 7px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--text); cursor: default;
  transition: all 0.2s ease;
}
.skill-tag:hover { border-color: var(--accent2); background: var(--glow); }

/* ─── EDUCATION ─── */
.edu-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.edu-card {
  position: relative; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; overflow: hidden; transition: all var(--transition);
}
.edu-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent3));
  opacity: 0; transition: opacity 0.3s;
}
.edu-card:hover { border-color: var(--accent2); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.edu-card:hover::before { opacity: 1; }
.edu-icon {
  width: 48px; height: 48px; background: var(--bg2);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--accent2);
}
.edu-icon .material-symbols-outlined { font-size: 22px; }
.edu-level {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--accent2); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.edu-degree {
  font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700;
  color: var(--text); line-height: 1.3; margin-bottom: 10px;
}
.edu-badge {
  display: inline-block; padding: 3px 10px;
  background: color-mix(in srgb, var(--accent2) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent2) 30%, transparent);
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; color: var(--accent2); margin-bottom: 12px;
}
.edu-school { font-size: 13px; font-weight: 400; color: var(--text2); line-height: 1.5; }

/* ─── PROJECTS ─── */
#projects { background: var(--bg2); }

.projects-header {
  max-width: 1100px; margin: 0 auto 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.projects-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.project-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.project-card:hover { border-color: var(--accent2); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg2); position: relative; }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-thumb img { transform: scale(1.06); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.project-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.project-tag {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  color: var(--accent2); letter-spacing: 0.08em; text-transform: uppercase;
}
.project-tag + .project-tag::before { content: '·'; margin-right: 6px; color: var(--text3); }
.project-title {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.project-desc { font-size: 13.5px; font-weight: 300; line-height: 1.6; color: var(--text2); flex: 1; margin-bottom: 20px; }
.project-links {
  display: flex; gap: 16px;
  border-top: 1px solid var(--border); padding-top: 16px;
}
.project-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 700; text-decoration: none;
  letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s;
}
.project-link.primary  { color: var(--accent2); }
.project-link.secondary{ color: var(--text3);   }
.project-link:hover    { color: var(--text);     }
.project-link .material-symbols-outlined { font-size: 14px; }

/* ─── CONTACT ─── */
.contact-grid {
  margin-top: 48px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s;
}
.contact-item:hover { border-color: var(--accent2); }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--accent2);
}
.contact-icon .material-symbols-outlined { font-size: 18px; }
.contact-item-label {
  font-size: 10px; font-weight: 600; color: var(--text3);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px;
}
.contact-item-value { font-size: 14px; font-weight: 500; color: var(--text); text-decoration: none; }
a.contact-item-value:hover { color: var(--accent2); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text2); text-decoration: none; transition: all 0.2s ease;
}
.social-link:hover {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
  transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 11px; font-weight: 700; color: var(--text3);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.form-input, .form-textarea {
  padding: 12px 16px;
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text3); }
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent2) 15%, transparent);
}
.form-textarea { height: 130px; }
.form-submit {
  padding: 14px; background: var(--accent); color: var(--bg);
  border: none; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.form-submit .material-symbols-outlined { font-size: 18px; }

/* ─── FOOTER ─── */
footer {
  background: var(--accent); color: var(--bg);
  padding: 40px 5vw;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-mark {
  width: 34px; height: 34px; background: var(--bg);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 12px; color: var(--accent);
}
.footer-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; }
.footer-copy { font-size: 13px; opacity: 0.6; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  font-size: 13px; font-weight: 500; color: inherit;
  text-decoration: none; opacity: 0.6; transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .edu-grid, .projects-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-outline, .nav-resume { display: none; }
  .hamburger { display: flex; }
  .edu-grid, .projects-grid, .contact-grid { grid-template-columns: 1fr; }
  section { padding: 72px 5vw; }
  .hero-name { font-size: clamp(44px, 12vw, 64px); }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
}
