:root {
  --woodland-dark: #1c1717;
  --woodland: #382f2d;
  --woodland-light: #888281;
  --woodland-lighter: #e8e7e7;
  --aqua-dark: #12806b;
  --aqua: #00ab8e;
  --aqua-light: #66cdbb;
  --aqua-lighter: #cceee8;
  --garden-dark: #598d19;
  --garden: #76bc21;
  --garden-light: #add77a;
  --garden-lighter: #e4f2d3;
  --citrus-dark: #bf6200;
  --citrus: #ff8200;
  --citrus-light: #ffb466;
  --citrus-lighter: #ffe6cc;
  --berry-dark: #ab0035;
  --berry: #e40046;
  --berry-light: #ef6690;
  --berry-lighter: #faccda;
  --canvas-dark: #b4ada2;
  --canvas: #f0e6d8;
  --canvas-light: #f6f0e8;
  --canvas-lighter: #fcfaf7;
  --white: #fff;
  --light-gray: #EBEBEA;
  --dark-gray: #707070;
  --dark-gray-dk: darken(var(--dark-gray), 10%);
  --iris-dark: #424260;
  --iris: #8484C1;
  --iris-light: #C1C1E0;
  --iris-lighter: #E2E2ED;
  --plum-dark: #77335D;
  --plum: #AA4983;
  --plum-light: #D6ABC6;
  --plum-lighter: #EDDDE7;
  --sky-dark: #415E74;
  --sky: #82BCE8;
  --sky-light: #C0DEF4;
  --sky-lighter: #D9EBF8;
  --sunrise-dark: #C9A85F;
  --sunrise: #FCD97D;
  --sunrise-light: #FFE8AE;
  --sunrise-lighter: #FFF3D7;
  --blue: #0068BA;
}

/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--woodland-dark);
  background-color: var(--white);
}

address{
  font-style: normal;
}

a {
  color: var(--sky);
  text-decoration: none;
}

a:hover {
  color: var(--sky-dark);
  text-decoration: underline;
}

ul {
  list-style-position: inside;
  padding-left: 20px;
}

/* Container */
.container {
  /* min-height: 100vh; */
  background-color: var(--white);
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
}

/* Header */
header {
  margin-bottom: 2rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
}

.name-title {
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--woodland-dark);
}

h1 {
  font-size: 1.25rem;
  color: var(--sky-dark);
}
h2:last-of-type {
  color: var(--sky-dark);
  font-size: 1.25rem;
}

.initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--sky-dark);
  color: var(--white);
  border-radius: 9999px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1rem;
}

.contact-info {
  margin-top: 1rem;
  color: var(--woodland);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.summary {
  color: var(--woodland);
  margin-top: 1rem;
}

/* Sections */
section {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--sky-dark);
  border-bottom: 1px solid var(--sky-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Job entries */
.job-entry {
  margin-bottom: 1.5rem;
}

.job-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.company {
  font-weight: bold;
  color: var(--woodland-dark);
}

.job-title-period {
  color: var(--woodland);
  font-size: 0.875rem;
}

.job-description {
  color: var(--woodland);
}

.job-description li {
  margin-bottom: 0.25rem;
}

/* Skills */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  background-color: var(--woodland-lighter);
  color: var(--woodland-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}
.skill-tag:hover {
  background-color: var(--woodland-dark);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.skill-tag:hover.berry {
  background-color: var(--berry);
  color: var(--white);
}
.skill-tag:hover.sunrise {
  background-color: var(--sunrise);
}
.skill-tag:hover.citrus {
  background-color: var(--citrus);
  color: var(--white);
}
.skill-tag:hover.blue {
  background-color: var(--blue);
  color: var(--white);
}
.skill-tag:hover.sky {
  background-color: var(--sky);
  color: var(--white);
}
.skill-tag:hover.aqua {
  background-color: var(--aqua);
  color: var(--white);
}

@media (min-width: 640px) {
	.header-content {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.contact-info {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.job-header {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.initials {
		margin-top: 0;
	}
}

@media (min-width: 768px) {
	.container {
		padding: 2rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	h1 {
		font-size: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 3rem;
	}
}

@media print {
	@page {
		margin: 0;
	}

	/* Optionally, remove headers and footers if they persist */
	@page :left {
		margin: 0;
	}

	@page :right {
		margin: 0;
	}

	@page :first {
		margin: 0;
	}

	/* If you still see headers/footers, try this: */
	@page {
		size: auto;
		/* auto is the initial value */
		margin: 0mm;
		/* this affects the margin in the printer settings */
	}

	body {
		margin: 0;
		/* Ensures the body content also extends to the edges */
		padding: 0;
	}

	/* Hide elements you don't want printed */
	.no-print {
		display: none;
	}
}

button {
  background-color: var(--sky-dark);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  font-size: 0.875rem;
  border: none;
}
button:hover {
	background-color: var(--sky);
	color: var(--woodland-dark);
}

input, textarea {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}
