/* --- Global Styles & Typography --- */
html {
  font-size: 14px;
}
body {
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.2;
  font-size: 1rem;
}

.noto-serif-font {
  font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.resume-container {
  max-width: 8.5in;
  min-height: 11in;
  margin: 2em auto;
  padding: 2em 2.5em;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
a {
  color: #333;
  text-decoration: underline;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 0.5em;
}

li {
  margin-bottom: 0.25em;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* --- Header --- */
.header {
  text-align: center;
  margin-bottom: 2em;
}

.header h1 {
  font-size: 3em;
  margin: 0 0 0.1em 0;
  font-weight: 500;
}

.header .contact-info {
  font-size: 0.9em;
}

.header .contact-info a {
  margin: 0 0.5em;
}

/* --- Sections --- */
.section {
  margin-top: 1em;
}

.section-title {
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #000;
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
}
.entry-title {
  margin-bottom: 0.3em;
}

.entry-subtitle {
  margin-top: 0;
}

/* --- Entry Styling (for jobs, education, projects) --- */
.entry {
  margin-bottom: 1em;
}

.entry-grid-header {
  display: flex;
  justify-content: space-between; 
  align-items: flex-start;
  margin-bottom: 0.1em;
}


.entry-right-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;  /* aligns both lines to the right */
  padding-left: 2em;      /* space between left and right columns */
  padding-top: 0em;     /* adjusts vertical alignment */
  color: #333;
  font-size: 1em;
  font-weight: bold;
}

.entry-right-column p {
  margin: 0.2em 0;        /* spacing above and below each line */
}


.entry-title {
  font-size: 1.2em;
  color: #000;
}

.entry-subtitle {
  font-size: 1em;
  color: #333;
  font-style: italic;
}

.entry-geo {
  font-style: italic;
  font-weight: 600;
}

.entry-degree {
  font-weight: 600;
}

.entry-workplace {
  font-style: italic;
  font-weight: 600;
}

.entry-full-width-description {
  font-size: 1em;
  color: #333;
  margin-top: 0.2em; /* Adds a little space below the header */
}

.middot {
  font-weight: bold; /* Optional */
  line-height: 1;
}

.sentence {
  font-weight: 500;
}

/* --- Skills Section --- */
.skills-list p {
  margin-bottom: 0.5em;
}

.skill {
  font-weight: 600;
}

.extra-space {
  margin-top: 10px; /* Adjust the number to control spacing */
}

/* --- Education & Certification Columns --- */
.education-title-column {
  flex: 0 0 48%;
}

.education-school-column {
  flex: 0 0 45%;
  text-align: left;
  padding-top: 0.05em;
}

.education-school-column p {
  margin: 0.2em 0;
}

/*-- For Priting --*/

.no-page-break {
  page-break-inside: avoid;
  break-inside: avoid;
}

/* Removes the box shaddow when printing */

@media print {             
  .resume-container {
    box-shadow: none;
    margin: 0;
    padding: 0.1in 0.45in 0.35in 0.45in;
    background-color: #fff; /* keep white background */
  }

  .header {
    margin-bottom: 1em;
  }

  body {
    background-color: #fff;
  }
}

  


/* Prevents line breaks when printing 

@media print {
  html, body {
    height: auto;
  }

  .resume-container {
    page-break-before: auto;
    page-break-after: auto;
    break-before: auto;
    break-after: auto;
    break-inside: auto;
  }

  * {
    page-break-before: avoid;
    page-break-after: avoid;
    page-break-inside: avoid;
    break-before: avoid;
    break-after: avoid;
    break-inside: avoid;
  }
}
  */

