/* COLORS */
:root {
  --bg-color: #f7f7f7;
  --text-color: #000000;
  --accent-color: #FF9D92; /* salmon pink */
}

/* BASE */
body {
  margin: 0;
  font-family: Arial, sans-serif; /* placeholder font */
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* HEADER */
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left, logo, right */
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd; /* subtle divider */
  margin-bottom: 2rem; /* pushes content down */
}

.nav-left-wrapper {
  justify-self: start;
  margin-left: 200px;  /* adjust this value */
}

.logo {
  justify-self: center;
}

.logo img {
  height: 60px;   /* keeps logo consistent */
  width: auto;    /* keeps proportions */
}

.nav-right-wrapper {
  justify-self: end;
  margin-right: 200px; /* adjust this value */
}

/* LINKS */
header a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: bold;
}

header a:hover {
  color: var(--accent-color); /* salmon pink hover link */
  text-decoration: underline;
}

header a.active {
  color: var(--accent-color);
  text-decoration: underline;
}

/* GLOBAL CONTAINER FOR CONSISTENT MARGINS */
.container {
  max-width: 600px;  /* adjust this until margins look like old site */
  margin: 0 auto;     /* centers the content */
  padding: 0 2rem;    /* consistent left/right padding inside container */
  line-height: 1.6;
}

/* ABOUT PAGE */
.about {
  max-width: 600px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  align-items: start;
}

.about img {
  max-width: 100%;
  border-radius: 0%; /* circle crop, 0% = no crop */
  object-fit: cover;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h1 span {
  color: var(--accent-color);
}

.about-text {
  column-count: 2;   /* two columns */
  column-gap: 2rem;  /* spacing */
  text-align: justify;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

/* EDUCATION / RESUME STYLE */
.edu-entry {
  display: grid;
  grid-template-columns: 150px auto; /* years in col 1, details in col 2 */
  margin-bottom: 1rem;
}

.edu-year {
  font-weight: bold;
}

.edu-detail {
  font-size: 1rem;
}

.edu-sub {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: #333;
}

/* LINKS */
a {
  color: black;             /* hyperlinks color black and underlined*/
  text-decoration: underline;
}

/* LISTS */
li {
  margin-bottom: 0.6em; /* spacing between bullet entries */
}

li p {
  margin-bottom: 1em; /* spacing between list items */
}

ul, ol {
  margin-left: 0;   /* remove default left margin */
  padding-left: 1.2em; /* small padding so bullets/numbers don't overlap text */
}

/* PARAGRAPHS */
p {
  margin-bottom: 1.2em; /* normal is 1em, so this adds about half a line extra */
}

/* --- Social icon buttons (black & white SVGs) --- */
.nav-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;              /* icon button size */
  height: 32px;
  color: var(--text-color); /* SVGs use currentColor -> black */
  text-decoration: none;
}
.nav-right a svg {
  width: 22px;              /* icon glyph size */
  height: 22px;
}
.nav-right a:hover {
  color: var(--accent-color); /* salmon on hover */
}
.nav-left a {
  margin: 1rem; /* adjust value to increase spacing */
  text-decoration: none;
  color: inherit;
}