@import "https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Inter:wght@300;400;500;600;700&display=swap";
:root {
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --navy-light: #334155;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --green: #22c55e;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --card-bg: #fff;
  --text: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px #00000014, 0 1px 2px #0000000f;
  --shadow-md: 0 4px 16px #0000001a;
  --shadow-lg: 0 10px 40px #00000024;
  --radius: 12px;
  --transition: .2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

#main {
  width: 100vw;
  flex-direction: column;
  display: flex;
}

section {
  width: 100vw;
  position: relative;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: var(--accent);
  transition: color var(--transition);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
}

.site-nav {
  width: 100%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  background: #fff9;
  border-bottom: 1px solid #0000;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 3rem;
  display: flex;
  position: fixed;
  top: 0;
}

.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: #ffffffeb;
}

.nav-brand {
  color: var(--navy);
  letter-spacing: .05em;
  font-family: Cormorant Garamond, serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.nav-links {
  gap: 2rem;
  display: flex;
}

.nav-link {
  color: var(--text-muted);
  letter-spacing: .02em;
  transition: color var(--transition);
  padding-bottom: 2px;
  font-size: .875rem;
  font-weight: 500;
  position: relative;
}

.nav-link:after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 99px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--navy);
}

.nav-link.active:after, .nav-link:hover:after {
  width: 100%;
}

.hero-section {
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.hero-section .background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  position: absolute;
  inset: 0;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(135deg, #0f172ad1 0%, #6366f173 100%);
  position: absolute;
  inset: 0;
}

.hero-content {
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: fadeUp .8s both;
  position: relative;
}

.hero-greeting {
  color: #ffffffbf;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  font-size: 1.1rem;
  font-weight: 400;
}

.hero-name {
  color: #fff;
  margin-bottom: .75rem;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
}

.hero-title {
  color: #fffc;
  letter-spacing: .06em;
  margin-bottom: 2.5rem;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
}

.hero-cta-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.btn-primary {
  background: var(--accent);
  letter-spacing: .03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border-radius: 99px;
  padding: .75rem 2rem;
  font-size: .9rem;
  font-weight: 600;
  display: inline-block;
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #6366f166;
  color: #fff !important;
}

.btn-outline {
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  border: 2px solid #fff9;
  border-radius: 99px;
  padding: .75rem 2rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-block;
  color: #fff !important;
}

.btn-outline:hover {
  background: #ffffff1a;
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff !important;
}

.hero-scroll-hint {
  z-index: 2;
  color: #ffffff80;
  flex-direction: column;
  align-items: center;
  animation: bounce 2s infinite;
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-chevron {
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #fff9;
  border-right: 2px solid #fff9;
  border-radius: 2px;
  display: block;
  transform: rotate(45deg);
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-title {
  color: var(--navy);
  text-align: center;
  margin-bottom: .5rem;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1rem;
}

.about-section {
  background: var(--card-bg);
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
  display: grid;
}

.about-text .large {
  color: var(--navy-mid);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.75;
}

.about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.about-quote {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
}

.skills-heading {
  color: var(--navy);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.skills-grid {
  flex-wrap: wrap;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.skill-tag {
  background: var(--bg-alt);
  color: var(--navy-mid);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  border-radius: 99px;
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 500;
}

.skill-tag:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.contributions-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calendar-wrapper {
  justify-content: center;
  padding: 1rem 0;
  display: flex;
  overflow-x: auto;
}

.calendar-scroll {
  padding-bottom: .5rem;
  overflow-x: auto;
}

.calendar-wrapper {
  min-width: max-content;
  display: inline-block;
}

.cal-month-row {
  gap: 3px;
  margin-bottom: 4px;
  display: grid;
}

.cal-month-label {
  color: var(--text-muted);
  font-size: .68rem;
  font-weight: 500;
}

.cal-grid {
  grid-template-rows: repeat(7, 15px);
  grid-auto-flow: column;
  gap: 3px;
  display: grid;
}

.cal-cell {
  width: 13px;
  height: 13px;
  cursor: default;
  border-radius: 3px;
  transition: opacity .15s;
}

.cal-cell:hover {
  opacity: .75;
}

.cal-legend {
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  display: flex;
}

.cal-legend-label {
  color: var(--text-muted);
  font-size: .72rem;
}

.gh-link-row {
  justify-content: center;
  margin-top: 1.75rem;
  display: flex;
}

.gh-profile-link {
  color: var(--accent);
  transition: color var(--transition), gap var(--transition);
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 500;
  display: inline-flex;
}

.gh-profile-link:hover {
  color: var(--navy);
  gap: .7rem;
}

.portfolio-section {
  background: var(--card-bg);
}

.project-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  flex-direction: column;
  gap: .75rem;
  padding: 1.75rem;
  display: flex;
  color: var(--text) !important;
}

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

.project-tag {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  width: fit-content;
  background: #6366f114;
  border-radius: 99px;
  padding: .2rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  display: inline-block;
}

.project-title {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
}

.project-desc {
  color: var(--text-muted);
  flex: 1;
  font-size: .875rem;
  line-height: 1.65;
}

.project-link-hint {
  color: var(--accent);
  transition: letter-spacing var(--transition);
  margin-top: auto;
  font-size: .82rem;
  font-weight: 600;
}

.project-card:hover .project-link-hint {
  letter-spacing: .04em;
}

#footer {
  background: var(--navy);
  width: 100vw;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 4rem 2rem 3rem;
  display: flex;
}

#footer .footer-socials {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  display: flex;
}

#footer a {
  color: #fff9;
  transition: color var(--transition), transform var(--transition);
  display: flex;
}

#footer a:hover {
  color: #fff;
  transform: translateY(-2px);
}

img.socialIcon {
  height: 26px;
  width: 26px;
  filter: brightness(0) invert();
  opacity: .6;
  transition: opacity var(--transition);
}

#footer a:hover img.socialIcon {
  opacity: 1;
}

.footer-credit {
  color: #fff6;
  margin: 0;
  font-size: .8rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%)translateY(0);
  }

  50% {
    transform: translateX(-50%)translateY(8px);
  }
}

@media (max-width: 700px) {
  .site-nav {
    padding: .9rem 1.25rem;
  }

  .nav-brand {
    font-size: 1.3rem;
  }

  .nav-links {
    gap: 1.1rem;
  }

  .nav-link {
    font-size: .8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-inner {
    padding: 3.5rem 1.25rem;
  }
}

/*# sourceMappingURL=index.4d663569.css.map */
