:root {
  --bg-dark: #0b0f0e;
  --bg-light: #ffffff;
  --accent: #22c55e;        /* green */
  --accent-soft: #16a34a;
  --text-light: #e5e7eb;
  --text-dark: #111827;
  --border: rgba(255, 255, 255, 0.08);
}

.tech-icons img {
  width: 16px;
  height: 16px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: linear-gradient(
    to bottom,
    var(--bg-dark),
    #020617
  );
  color: var(--text-light);
  line-height: 1.6;
}

/* Header */
.header {
  background: radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.25),
    transparent 60%
  );
  text-align: center;
  padding: 4rem 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

.header h1 {
  font-size: 3rem;
  letter-spacing: 0.04em;
}

.subtitle {
  margin-top: 0.5rem;
  color: #86efac;
  font-weight: 500;
}

nav {
  margin-top: 2rem;
}

nav a {
  color: var(--text-light);
  margin: 0 1.2rem;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--accent);
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Sections */
.section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
}

/* About */
.about p {
  max-width: 800px;
  color: #d1fae5;
}

/* Projects */
.project {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.75rem;
  margin-top: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.15);
}

.project h3 {
  margin-bottom: 0.5rem;
  color: #ecfdf5;
}

.project p {
  color: #d1fae5;
}

.tech {
  font-size: 0.9rem;
  color: #86efac;
  margin-top: 0.75rem;
}

/* Resume */
.resume-frame {
  width: 100%;
  height: 850px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 1rem;
  background: black;
}

.download-btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.download-btn:hover {
  background: var(--accent);
  color: black;
}

/* Contact */
.contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem;
  font-size: 0.85rem;
  color: #9ca3af;
  border-top: 1px solid var(--border);
}
