* {
  box-sizing: border-box;
}

/* p {
    margin-top: 0px;
} */

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #071020 0%, #081226 100%);
  color: #e6eef6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* max-width: var(--container);  */
  /* padding: 32px; */
  margin: 0 auto;
}

.education_header {
    display: flex; 
    justify-content: space-between;
}

/* Header */
.resume-header {
  text-align: center;
  margin-bottom: 2em;
}

.resume-header h1 {
  font-size: 2rem;
  margin-bottom: 0.2em;
  color: var(--accent);
}

.resume-header .contact a {
  color: var(--muted);
  text-decoration: none;
}

/* .site-header {
  backdrop-filter: blur(600px);
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    180deg,
    rgba(11, 16, 24, 0.6),
    rgba(11, 16, 24, 0.2)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
} */

/* Section headings */
h2 {
  font-size: 1.3rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: .2em;
  margin-top: 2em;
  margin-bottom: 0.6em;
}

h3 {
  font-size: 1rem;
  color: #e6eef6;
  margin-bottom: 0.2em;
}

/* Sections */
.resume-body section {
  margin-bottom: 1.5em;
}

/* Cards for each block */
.job, .edu {
  background: var(--card);
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: 0 6px 30px rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.02);
  margin-bottom: 1em;
}

.job-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: bold;
}

.job-header span.date {
  color: var(--muted);
  font-weight: normal;
}

.job ul {
  margin-top: .3em;
  margin-bottom: .5em;
  padding-left: 20px;
}

.edu p {
  color: var(--muted);
  margin: 0;
}

/* Skills chips */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5em .8em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills-list li {
  background: var(--glass);
  padding: .3em .6em;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
}

/* Footer */
.resume-footer {
  text-align: center;
  color: var(--muted);
  margin-top: 2em;
  font-size: .9rem;
}

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
}

/* Print override */
@media print {
  body {
    background: white;
    color: black;
    padding: 0;
  }
  .job, .edu {
    box-shadow: none;
    background: transparent;
    border: 1px solid #ccc;
  }
  .skills-list li {
    background: none;
    border: 1px solid #ccc;
    color: black;
  }
}
