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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #e2e8f0;
  background: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #334155;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.nav-brand {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #b2bce1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #94a3b8;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7dd3fc;
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: #b2bce1;
}
.nav-link:hover::after {
  width: 100%;
  background: #b2bce1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #e2e8f0;
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url("nyc.jpg") center/cover no-repeat;
  filter: blur(4px);
  opacity: 0.7;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(33, 45, 76, 0.85);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight {
  color: #b2bce1;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
}

.typewriter::after {
  content: "_";
  color: #b2bce1;
  animation: blink 0.7s step-end infinite;
  font-weight: 400;
}
.typewriter.done::after {
  display: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}
.hero-subtitle {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #7dd3fc;
}
.hero-subtitle::before {
  content: "> ";
  color: #b2bce1;
  opacity: 0.7;
}

.hero-description {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: #94a3b8;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease;
}

.profile-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #334155;
  box-shadow: 0 0 40px rgba(125, 211, 252, 0.12);
  background: #1e293b;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: #7dd3fc;
  color: #020617;
}
.btn-primary:hover {
  background: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(125, 211, 252, 0.2);
}
.btn-secondary {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid #334155;
}
.btn-secondary:hover {
  border-color: #b2bce1;
  color: #b2bce1;
}

section {
  padding: 5rem 0;
}

.section-title {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #e2e8f0;
}
.section-title::before {
  content: "## ";
  color: #7dd3fc;
  opacity: 0.6;
}

.summary {
  background: #1e293b;
}
.summary-content {
  max-width: 800px;
  margin: 0 auto;
}
.summary-text {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.summary-text:last-child {
  margin-bottom: 0;
}
.summary-text strong {
  color: #b2bce1;
  font-weight: 600;
}

.experience {
  background: #1e293b;
}
.experience-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.experience-item {
  background: #1e293b;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #334155;
  margin-bottom: 2rem;
  position: relative;
  transition: border-color 0.3s ease;
}
.experience-item:hover {
  border-color: #b2bce1;
}
.experience-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.experience-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}
.experience-company {
  font-size: 1.1rem;
  font-weight: 600;
  color: #7dd3fc;
}
.experience-date {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-left: auto;
}
.experience-location {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
  font-style: italic;
}
.experience-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.experience-details li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: #94a3b8;
  line-height: 1.7;
}
.experience-details li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #7dd3fc;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-weight: bold;
}

.education {
  background: #0f172a;
}
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.education-item {
  background: #1e293b;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #334155;
  text-align: center;
  transition: border-color 0.3s ease;
}
.education-item:hover {
  border-color: #b2bce1;
}
.education-degree {
  font-size: 1.25rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}
.education-school {
  font-size: 1.1rem;
  color: #7dd3fc;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.education-year {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.9rem;
  color: #94a3b8;
}

.projects {
  background: #1e293b;
}
.projects-grid {
  max-width: 800px;
  margin: 0 auto;
}

.project-card {
  background: #1e293b;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #334155;
  transition: border-color 0.3s ease;
}
.project-card:hover {
  border-color: #b2bce1;
}

.project-image {
  height: 200px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.12), rgba(165, 180, 252, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #334155;
}

.project-placeholder {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  color: #7dd3fc;
  font-size: 1.25rem;
  font-weight: 600;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
}

.project-description {
  color: #94a3b8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  background: rgba(125, 211, 252, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 0.25rem;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.8rem;
  color: #7dd3fc;
  font-weight: 500;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  color: #b2bce1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.project-link:hover {
  color: #fcd4a0;
  text-decoration: underline;
}

.skills {
  background: #1e293b;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.skill-category {
  background: #1e293b;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #334155;
}
.skill-category-title {
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #b2bce1;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.skill-tag {
  padding: 0.5rem 1rem;
  background: rgba(125, 211, 252, 0.08);
  border-radius: 0.375rem;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #334155;
}
.skill-tag:hover {
  background: rgba(125, 211, 252, 0.12);
  border-color: #7dd3fc;
  color: #7dd3fc;
  transform: translateY(-2px);
}

.contact {
  background: #0f172a;
}
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-description {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #e2e8f0;
}
.contact-item a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #b2bce1;
}
.contact-icon {
  width: 24px;
  height: 24px;
  color: #7dd3fc;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 0.5rem;
  color: #94a3b8;
  transition: all 0.3s ease;
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link:hover {
  border-color: #b2bce1;
  color: #b2bce1;
  transform: translateY(-3px);
}

.resume-section {
  background: #1e293b;
  text-align: center;
}
.resume-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.resume-content {
  max-width: 600px;
  margin: 0 auto;
}

.resume-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer {
  background: #020617;
  color: #94a3b8;
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #334155;
  font-size: 0.9rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    width: 0;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0f172a;
    border-bottom: 1px solid #334155;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger {
    display: flex;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .profile-image {
    width: 200px;
    height: 200px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .experience-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .experience-date {
    margin-left: 0;
  }
  .education-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=styles.css.map */
