@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 100vh;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
}
a { color: #ccc; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.site-header nav a { margin-right: 1.5rem; font-weight: 500; }

/* Container & Boxes */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 8rem; /* space for navbar */
}

.box {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-in-out;
}

/* Improved spacing inside boxes */
.box h2, .box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.box p {
  margin: 1rem 0;
  line-height: 1.5;
}

/* Make all h1s stand out */
h1 {
  font-size: 2.5rem;               /* larger than body text */
  font-weight: 600;                /* a bit bolder */
  text-transform: uppercase;       /* for impact */
  letter-spacing: 1px;             /* breathe the letters out */
  margin-top: 0;                   /* flush with the box’s padding */
  margin-bottom: 1rem;             /* space below before content */
  padding-bottom: 0.25rem;         /* little gap under text */
  border-bottom: 2px solid rgba(255,255,255,0.3); /* soft underline */
  color: #fff;                     /* ensure full contrast */
}

/* Section subtitles (h2) */
h2 {
  font-size: 1.75rem;                  /* a bit smaller than h1 */
  font-weight: 500;                    /* still bold but lighter than h1 */
  text-transform: uppercase;           /* keeps the “designed” look */
  letter-spacing: 0.5px;               /* subtle spacing */
  margin-top: 0;                       /* flush to the box’s padding */
  margin-bottom: 0.75rem;              /* breathing room below */
  padding-bottom: 0.25rem;             /* gap before the underline */
  border-bottom: 1px solid rgba(255,255,255,0.3); /* soft underline */
  color: #fff;                         /* full contrast on dark background */
}

/* Hero specific */
.hero.container .box { text-align: center; }
.content-inner {
  text-align: center;
}
.headshot {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #444;
  margin-bottom: 1rem;
}
.name { font-size: 2.5rem; animation: slideDown 1.5s ease-out; }
.title { font-size: 1.25rem; color: #aaa; margin-bottom: 1rem; }
.social-links a { margin: 0 0.5rem; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Demo iframe */
.demo-frame { padding: 0; border-radius: 16px; overflow: hidden; }

/* indent any bullet‐list under a numbered item */
ol li > ul {
  margin-top: 0.5rem;    /* a little breathing room above */
  margin-left: 1.5rem;   /* pushes the bullets in from the numbered label */
  list-style-type: disc; /* ensure they show as bullets */
}