/* ── Base ─────────────────────────────────────────────── */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #212121;
}

/* ── Nav ─────────────────────────────────────────────── */
nav {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-name {
  font-weight: 500;
  font-size: 1.4rem;
  color: #1a237e !important;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #3949ab !important;
}

/* ── Hero ────────────────────────────────────────────── */
.hero-section {
  min-height: calc(50vh - 64px);
  background: linear-gradient(135deg, #f5f7ff 0%, #eef0fb 60%, #e8eaf6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.avatar-container {
  margin-bottom: 2rem;
}

.avatar-circle {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(57, 73, 171, 0.3);
  border: 4px solid #fff;
  outline: 3px solid #c5cae9;
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-name {
  font-size: 3rem;
  font-weight: 700;
  color: #1a237e;
  margin: 0.5rem 0;
  letter-spacing: -0.5px;
}

.hero-tagline {
  font-size: 1.4rem;
  font-weight: 300;
  color: #546e7a;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

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

.ml-8 {
  margin-left: 0;
}

/* ── Sections ────────────────────────────────────────── */
.section {
  padding: 2rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 500;
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.title-underline {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  margin: 0 0 2rem;
}

/* ── About ───────────────────────────────────────────── */
.about-card {
  border-radius: 12px;
  border: none;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #455a64;
  margin-bottom: 1rem;
}

/* ── Contact ─────────────────────────────────────────── */
.contact-card {
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
  margin-bottom: 1.5rem;
}

.contact-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-4px);
}

.contact-link {
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 1rem 0;
}

.contact-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.linkedin-icon {
  width: 36px;
  height: 36px;
  fill: #1a237e;
}

.email-icon {
  font-size: 36px !important;
}

.contact-label {
  font-weight: 500;
  color: #1a237e;
  margin: 0 0 0.25rem;
}

/* ── Footer ──────────────────────────────────────────── */
.page-footer {
  padding: 1rem 0;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 600px) {
  .hero-name {
    font-size: 2rem;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .section {
    padding: 3rem 0;
  }
}


.about-section {
  margin: 0 auto;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.about-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 0.3rem;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.about-title-line {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #666;
  margin: 0 0 2rem;
}

.about-divider {
  width: 40px;
  height: 2px;
  background: #ccc;
  margin-bottom: 2rem;
  border: none;
}

.about-body {
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
}

.about-body p {
  margin: 0 0 1.2rem;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: #f5f5f3;
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  font-weight: 500;
  margin-bottom: 4px;
}

.stat-value {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
}

.skills-section {
  margin-bottom: 2rem;
}

.skills-heading {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.skills-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 13px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid #ddd;
  color: #555;
  background: #fff;
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.contact-inline-icon {
  font-size: 18px !important;
  color: #3949ab;
  vertical-align: middle;
}

.linkedin-inline {
  width: 18px;
  height: 18px;
  fill: #3949ab;
  flex-shrink: 0;
}

.contact-item a {
  color: #3949ab;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}