/* wrap everything in the same 900px-wide centered container */
.wrapper {
  max-width: 900px;
  margin: auto;
}

/* comfortable padding around the main area */
main.page-content {
  padding: 2rem 1rem;
}

/* center your page header */
.page-header h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: .25rem;
}
.page-header .subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.subtitle {
  /* ensure the “SQL • Python • APIs • Dashboarding” line is centered */
  text-align: center;
  display: block;
  margin: 0.25rem auto 1.5rem;
  font-size: 1rem;
}
/* simple nav styling */
.site-nav {
  text-align: center;
  margin-bottom: 2rem;
}
.site-nav a {
  margin: 0 1rem;
  color: #0366d6;
  font-weight: 600;
  text-decoration: none;
}
.site-nav a:hover {
  text-decoration: underline;
}

/* underline your section headings */
#about h2,
#projects h2,
#contact h2 {
  text-decoration: underline;
  margin-top: 2rem;
}

/* style your social buttons */
.social-links {
  text-align: center;
  margin: 3rem 0 1rem;
}
.social-links a {
  display: inline-block;
  margin: 0 .75rem;
  padding: .5rem 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  background: #0366d6;
  border-radius: 4px;
  text-decoration: none;
}
.social-links a.github  { background: #333; }
.social-links a.twitter { background: #1DA1F2; }
.social-links a:hover   { opacity: .85; }

/* hide any leftover Minima footer bits */
.site-footer .site-footer__meta,
.site-footer .site-footer__links {
  display: none !important;
}
/* 1. switch to a more professional sans-serif font */
body {
  font-family: Helvetica, Arial, sans-serif;
}

/* 2. center your “Data Analyst Portfolio” heading */
#data-analyst-portfolio {
  text-align: center;
}

/* 3. hide the little hamburger/check icon in the top nav */
.site-nav .nav-trigger,
.site-nav label[for="nav-trigger"],
.menu-icon,
.trigger {
  display: none !important;
}

/* 4. (already done?) ensure footer is centered */
.site-footer {
  text-align: center;
}
/* make the socials row use flex and never wrap */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  overflow-x: auto;    /* allow a tiny scroll if they overflow */
  padding: 1rem 0;
}

/* keep each button from flex-shrinking */
.social-links a {
  flex: 0 0 auto;
}

/* optional: slightly smaller buttons on very narrow screens */
@media (max-width: 360px) {
  .social-links a {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }
}
