@charset "UTF-8";
/* CSS Document */

:root {
  --bg:
    radial-gradient(circle at 5% 5%, hsla(4, 89%, 60%, 0.25) 100px, transparent 25%),
    radial-gradient(circle at 0% 100%, hsla(230, 80%, 70%, 0.5) 50px, transparent 50%),
    radial-gradient(circle at 95% 50%, hsla(143, 52%, 79%, 1), transparent 50%),
    radial-gradient(circle at center top, #fff, transparent 50%), #fff;
	
		/* font sizes */
	--fs-1: .5rem;
	--fs-2: .75rem;
	--fs-3: 1rem;
	--fs-4: 1.125rem;
	--fs-5: 1.25rem;
	--fs-6: 1.375rem;
	--fs-7: 1.75rem;
	--fs-8: 4.5rem;
	--fs-9: 2rem;
	--fs-10: .875rem;
	--fs-11: .25rem;
	
	/* font weights */
	--fw-light: 100;
	--fw-med-light: 300;
	--fw-regular: 400;
	--fw-med: 500;
	--fw-med-bold: 600;
	--fw-bold: 700;
	--fw-heavy: 1000;
	
	/* line heights */
	--lh-tighter: .825;
	--lh-tight: 1.2;
	--lh-normal: 1.5;
	--lh-loose: 2;
	
	/* HSLA colors percentages rounded up from HSB */
	--color-primary: hsla(213, 63%, 30%, 1);
	--color-text-primary: hsla(226, 100%, 7.5%, 1);
	--color-secondary: hsla(180, 100%, 97%, 1);
	--color-secondary-2: hsla(180, 100%, 97%, .6); /* Transparent background */
	--color-bullets: hsla(35, 58%, 62%, 1);
	--color-highlight: hsla(180, 100%, 85%, 1);
	--gradient: linear-gradient(135deg, black, red) 1;
}

[data-theme="dark"] {
	--bg:
		radial-gradient(circle at 5% 5%, hsla(230, 89%, 60%, 0.25) 100px, transparent 25%),
		radial-gradient(circle at 0% 100%, hsla(4, 80%, 70%, 0.5) 50px, transparent 50%),
		radial-gradient(circle at 95% 50%, hsla(1, 100%, 100%, 0.5), transparent 50%),
		radial-gradient(circle at center top, hsla(143, 52%, 20%, 1), transparent 50%), #000;
	--color-primary: hsla(210, 85%, 65%, 1);
	--color-text-primary: hsla(0, 0%, 96%, 1);
	--color-secondary: hsla(226, 100%, 7.5%, 1);
	--color-secondary-2: hsla(210, 100%, 5%, 0.5);
	--color-bullets: hsla(35, 85%, 60%, 1);
	--color-highlight: hsla(210, 100%, 15%, 1);
}

body {
	background: var(--bg);
	color: var(--color-text-primary);
	transition: background 240ms ease, color 240ms ease;
}

.btn-icon .hover { display: none; }
.icon-btn:hover .default { display: none; }
.icon-btn:hover .hover { display: inline; }
.icon-btn[aria-pressed="true"] .default { display: none; }
.icon-btn[aria-pressed="true"] .hover { display: inline; }

body{
	/*
	border: 8px solid blue;
	*/
	background: var(--bg);
	height: 100vh;
	float: inherit;
	position: sticky;
	overflow: hidden;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 0px;
}
	
button {
	background-color: var(--color-primary); /* Green background */
	display: flex;
	align-self: flex-start;
	padding-right: 3.75rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: var(--color-secondary); /* White text */
	border: none; /* Remove default border */
	border-radius: 2000px; /* Rounded corners */
	cursor: pointer; /* Indicate it's clickable */
	margin: 0px;
	height: 3.75rem;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: var(--color-bullets);
	color: var(--text-primary);
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

button .icon{
	fill: currentColor;
}

#contact {
	padding-top: 4rem;
	padding-bottom: 1.5rem;
}

.contact-btn {
	display: inline-flex;
	text-decoration: none;
	background-color: var(--color-primary); /* Green background */
	align-self: flex-start;
	padding-right: 2.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	color: var(--color-secondary); /* White text */
	border: none; /* Remove default border */
	border-radius: 2000px; /* Rounded corners */
	cursor: pointer; /* Indicate it's clickable */
	margin-bottom: 1rem;
	height: 3rem;
	transition: background-color 0.3s ease;
}

.contact-btn:hover {
	background-color: var(--color-bullets);
	color: var(--text-primary);
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.15);
}

.contact-btn .icon{
	fill: currentColor;
}

.icon-btn {
	background-color: var(--color-primary); /* Green background */
	display: flex;
	color: var(--color-secondary); /* White text */
	border: none; /* Remove default border */
	border-radius: 2000px; /* Rounded corners */
	cursor: pointer; /* Indicate it's clickable */
	margin: 0px;
	padding: 0px;
	height: 3rem;
}

.btn-icon {
	fill: currentColor;
	transition: fill 0.3s ease;
}

.btn-icon .hover {
	display: none;
}

.icon-btn:hover .default {
	display: none;
}

.icon-btn:hover .hover {
	display: inline;
}

/*
	font-size: clamp(min, preferred, max); 
	preferred = font size in px ÷ browser width in px
	in this case 72px font ÷ 768px window = 9.3vw
	e.x. 1vw = 1% of browser width. 1000px wide browser = 1000 * 1 = 10px font size
*/

.asap {
	font-family: "Asap", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;
}

.public-sans {
	font-family: "Public Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}

h1 {
	font-size: var(--fs-8);
	font-weight: var(--fw-heavy);
	line-height: var(--lh-tighter);
	margin: 0px;
	font-family: "Asap", sans-serif;
	padding-bottom: 32px;
	color: var(--color-primary);
}

h2 {
	font-size: var(--fs-7);
	font-weight: var(--fw-bold);
	margin: 0px;
	font-family: "Asap", sans-serif;
	line-height: 0;
	color: var(--color-primary);
}

h3 {
	font-size: var(--fs-5);
	font-weight: var(--fw-regular);
	margin: 0px;
	font-family: "Public sans", sans-serif;
	line-height: var(--lh-normal);
	color: var(--color-text-primary);
}

h4 {
	font-size: var(--fs-5);
	font-weight: var(--fw-bold);
	margin: 0px;
	font-family: "Public sans", sans-serif;
	color: var(--color-secondary);
}

h5 {
	font-size: var(--fs-7);
	font-weight: var(--fw-bold);
	margin: 0px;
	font-family: "Asap", sans-serif;
	line-height: 1.2;
	color: var(--color-text-primary);
}

h6 {
	font-size: var(--fs-6);
	font-weight: var(--fw-bold);
	margin: 0px;
	font-family: "Public sans", sans-serif;
	padding-bottom: var(--fs-1);
	color: var(--color-primary);
}

.dates {
	font-size: var(--fs-10);
	margin: 0px;
	font-family: "Public sans", sans-serif;
	color: var(--color-primary);
	line-height: 1.4;
	margin-left: auto;
}

.roles {
	font-size: var(--fs-3);
	margin: 0px;
	font-family: "Public sans", sans-serif;
	line-height: 1.2;
	color: var(--color-primary);
	font-weight: var(--fw-bold);
	margin-left: auto;
}

.btn-text {
	font-size: var(--fs-5);
	font-weight: var(--fw-bold);
	margin: 0px;
	font-family: "Public sans", sans-serif;
}

p {
	font-size: var(--fs-3);
	margin: 0px;
	font-family: "Public sans", sans-serif;
	line-height: 1.4;
	color: var(--color-text-primary);
}

.icon {
	width: 3rem;
	height: 3rem;
	margin: 0rem;
	}

.icon .bg, .icon circle {
	fill: var(--color-primary);
}

.icon .fg, .icon .cls-1 {
	fill: var(--color-secondary);
	}

.icon-text {
	display: flex;
	align-items: center; /* Vertically center icon & text */
	gap: 0.5rem; /* Space between icon and text */
	padding-top: 0px;
	margin: 0px;
}

.title-dates {
	display: flex;
	align-items: center;
	padding: 0px;
	margin: 0px;
	padding-bottom: var(--fs-9);
}

#dates {
	margin-left: auto;
}

#toggle {
	margin-left: auto;
}

.content_box{
	padding-top: 1rem;
	padding-bottom: 4rem;
	display: flex;
	/* flex-direction inverts XY axis */
	flex-direction: column;
	flex-shrink: 1;
	gap: 24px;
	flex-wrap: wrap;
	/* Y-axis */
	justify-content: center;
	/* X-axis */
	align-items: flex-end;
}

.content{
	max-width: 834px;
	width: 100%;
	padding-top: 48px;
	padding-left: 48px;
	padding-right: 48px;
	padding-bottom: 24px;
	background-color: var(--color-secondary-2);
	font-size: var(--fs-5);
	border: 1px solid var(--color-highlight);
	/*
	border-image: var(--gradient);
	*/
	border-radius: 16px;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.15);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.columns{
	max-width: 1280px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 64px;
	padding-bottom: 0px;
	display: flex;
	height: 100vh;
	overflow: hidden;
	flex-direction: row;
	box-sizing: border-box;
	align-content: center;
}

.column_left{
	display: flex;
	flex-direction: column;
	flex-shrink: 1;
	max-width: 400px;
	min-width: 20px;
	float: inherit;
	position: sticky;
	height: 100vh;
	overflow: hidden;
	margin-right: 64px;
	padding-left: 1rem;
}

.column_right{
	display: flex;
	flex-direction: column;
	margin-left: auto;
	overflow-y: auto;
	padding-right: 1rem;
	padding-bottom: 0px;
}

.info{
	padding-top: 24px;
}

.list {
	list-style: none;
	margin-top: .5rem;
	padding-left: 1.5em; /* room for bullets */
}

.list li {
	position: relative;
	margin-bottom: 0.5em;
}

.list li::before {
	content: "";
	position: absolute;
	left: -1.5em;
	top: 0.25rem;
	width: 0.6em;
	height: 0.6em;
	background-color: var(--color-bullets); /* custom color */
	border-radius: 0.2em; /* rounded corners */
}

.mobile-nav {
	display: none;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none; /* For Firefox */
	-ms-overflow-style: none; /* For IE 10+ */
}

.mobile-nav::-webkit-scrollbar {
	display: none; /* For Chrome, Safari, and Opera */
}

/* Base state: show .default, hide .hover */
#toggle .fg.default {
	display: inline;
}

#toggle .fg.hover {
	display: none;
}

/* On hover: swap them */
#toggle:hover .fg.default {
	display: none;
}

#toggle:hover .fg.hover {
	display: inline;
}

/* Dark mode: invert logic */
[data-theme="dark"] #toggle .fg.default {
	display: none;
}

[data-theme="dark"] #toggle .fg.hover {
	display: inline;
}

[data-theme="dark"] #toggle:hover .fg.default {
	display: inline;
}

[data-theme="dark"] #toggle:hover .fg.hover {
	display: none;
}

/* Small laptop */
@media (max-width: 1280px) { ... }

/* Tablet (landscape) */
@media (max-width: 1024px) {
	:root {
		/* font sizes */
		--fs-1: 1rem;
		--fs-2: 1rem;
		--fs-3: 1rem;
		--fs-4: 1rem;
		--fs-5: 1.375rem;
		--fs-6: 1.5rem;
		--fs-7: 2rem;
		--fs-8: 3rem;
		--fs-9: 4.5rem;
	}

	body {
		height: auto;
		overflow-y: auto;
		overflow-x: hidden;
		padding-bottom: 0px;
		padding-top: 2rem;
	}
	
	h1 {
		font-size: var(--fs-9);
	}
	
	h3 {
		font-weight: var(--fw-med);
	}

	h5 {
		font-size: var(--fs-7);
		font-weight: var(--fw-bold);
		margin: 0px;
		padding-bottom: 0;
		font-family: "Asap", sans-serif;
		line-height: 1.2;
		color: var(--color-text-primary);
	}
	
	.title-dates {
		display: flex;
		align-items: center;
		padding-bottom: 2rem;
	}
	.content{
		max-width: 1024px;
		width: 100%;
		padding-top: 48px;
		padding-left: 48px;
		padding-right: 48px;
		padding-bottom: 1rem;
		margin: 0px;
		background-color: var(--color-secondary-2);
		font-size: var(--fs-5);
		border: 1px solid var(--color-highlight);
		/*
		border-image: var(--gradient);
		*/
		border-radius: 16px;
		box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.15);
		margin-left: auto;
		margin-right: auto;
		box-sizing: border-box;
	}
	
	.columns {
		display: flex;
		flex-direction: column;
		height: auto;
		overflow: visible;
		align-items: stretch;
		padding: 1rem;
		padding-right: 3rem;
		padding-bottom: 0px;
	}

	.column_left {
		position: static;
		height: auto;
		max-width: 100%;
		width: 100%;
		overflow: visible;
		margin-right: 0;
	}

	.column_right {
		position: static;
		height: auto;
		width: 100%;
		margin-left: 0;
		padding-top: 32px;
		padding-bottom: 0px;
		padding-left: 1rem;
		overflow: visible;
	}

	.content_box {
		flex-wrap: nowrap;
		align-items: stretch;
	}

	.mobile-nav {
		display: flex;
		position: sticky;
		top: 2rem;
		z-index: 2000;
		width: fit-content;
		margin: auto;
		margin-bottom: 1rem;
		margin-top: 1rem;
		background-color: var(--color-primary);
		border-radius: 1000px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
		overflow: hidden;
		text-decoration: none;
	}
	
	.mobile-nav .nav-item {
		flex: 1;
		padding: 1.5rem 3rem;
		margin: 0px;
		text-align: center;
		color: var(--color-secondary);
		cursor: pointer;
		font-family: "Asap", sans-serif;
		font-weight: var(--fw-med-bold);
		font-size: var(--fs-4);
		border-right: 1px solid hsla(0, 0%, 100%, 0.2);
	}
	
	.mobile-nav .nav-item:last-child {
		border-right: none;
	}
	
	.mobile-nav .nav-item a {
		text-decoration: none;
		color: var(--color-secondary); /* inherit or explicitly set */
		white-space: nowrap; /* Ensures no line breaks */
		display: block; /* Make the anchor fill the nav-item */
		width: 100%;
	}
	
	/* Ensure rest of content is pushed down */
	body {
		padding-top: .5rem; /* enough to clear sticky nav */
	}
}

/* Tablet (portrait) */
@media (max-width: 768px) {
	:root {
		/* font sizes */
		--fs-1: 1rem;
		--fs-2: 1rem;
		--fs-3: 1rem;
		--fs-4: 1rem;
		--fs-5: 1.375rem;
		--fs-6: 1.5rem;
		--fs-7: 2rem;
		--fs-8: 3rem;
	}

	body {
		height: auto;
		overflow-y: auto;
		overflow-x: hidden;
		padding-bottom: 0px;
		padding-top: 2rem;
		padding-right: 1rem;
	}
	
	h3 {
		font-weight: var(--fw-med);
	}

	.columns {
		display: flex;
		flex-direction: column;
		height: auto;
		overflow: visible;
		align-items: stretch;

		padding-bottom: 0px;
	}

	.column_left {
		position: static;
		height: auto;
		max-width: 100%;
		width: 100%;
		overflow: visible;
		margin-right: 0;
	}

	.column_right {
		position: static;
		height: auto;
		width: 100%;
		margin-left: 0;
		padding-top: 32px;
		padding-bottom: 0px;
		overflow: visible;
	}

	.content_box {
		flex-wrap: nowrap;
		align-items: stretch;
	}
	
	.mobile-nav {
		display: flex;
		position: sticky;
		top: 3.5rem;
		z-index: 2000;
		width: fit-content;
		margin: auto;
		margin-bottom: 1rem;
		margin-top: 1rem;
		background-color: var(--color-primary);
		border-radius: 1000px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
		overflow: hidden;
		text-decoration: none;
	}
	
	.mobile-nav .nav-item {
		flex: 1;
		padding: 1rem 2rem;
		margin: 0px;
		text-align: center;
		color: var(--color-secondary);
		cursor: pointer;
		font-family: "Asap", sans-serif;
		font-weight: var(--fw-med-bold);
		font-size: var(--fs-4);
		border-right: 1px solid hsla(0, 0%, 100%, 0.2);
	}

	.mobile-nav .nav-item:last-child {
		border-right: none;
	}

	.mobile-nav .nav-item a {
		text-decoration: none;
		color: var(--color-secondary);
		white-space: nowrap;
		display: block;
		width: 100%;
	}
}

/* Mobile (up to ~640px) */
@media (max-width: 640px) {
	:root {
		/* font sizes */
		--fs-1: 1rem;
		--fs-2: .5rem;
		--fs-3: 1rem;
		--fs-4: 1.25rem;
		--fs-5: 1.375rem;
		--fs-6: 1.5rem;
		--fs-7: 2rem;
		--fs-8: 3rem;
		--fs-9: 2.5rem;
	}

	body {
		height: auto;
		overflow-y: auto;
		overflow-x: hidden;
		padding-bottom: 0px;
		padding-top: 2rem;
	}

	h2 {
		font-size: var(--fs-6);
		font-weight: var(--fw-bold);
		margin: 0px;
		font-family: "Asap", sans-serif;
		line-height: 0;
		color: var(--color-primary);
	}
	
	h3 {
		font-weight: var(--fw-med);
	}

	h5 {
		font-size: var(--fs-6);
		font-weight: var(--fw-bold);
		margin: 0px;
		font-family: "Asap", sans-serif;
		line-height: 1.2;
		color: var(--color-text-primary);
	}

	h6 {
		font-size: var(--fs-4);
		font-weight: var(--fw-bold);
		margin: 0px;
		font-family: "Public sans", sans-serif;
		padding-bottom: var(--fs-1);
		color: var(--color-primary);
	}
	
	.icon {
		width: 2.5rem;
		height: 2.5rem;
		margin: 0rem;
	}
	
	.columns {
		display: flex;
		flex-direction: column;
		height: auto;
		overflow: visible;
		align-items: stretch;
		padding-bottom: 0px;
	}

	.column_left {
		position: static;
		height: auto;
		max-width: 100%;
		width: 100%;
		overflow: visible;
		margin-right: 0;
	}

	.column_right {
		position: static;
		height: auto;
		width: 100%;
		margin-left: 0;
		padding-top: 32px;
		padding-bottom: 0px;
		overflow: visible;
	}

	.content_box {
		flex-wrap: nowrap;
		align-items: stretch;
	}
	
	.mobile-nav {
		display: flex;
		position: sticky;
		top: 3.5rem;
		z-index: 2000;
		width: fit-content;
		margin: auto;
		margin-top: 1rem;
		margin-bottom: 1rem;
		background-color: var(--color-primary);
		border-radius: 1000px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
		overflow: hidden;
		text-decoration: none;
		flex-wrap: wrap; /* Allow wrapping if needed */
	}

	.mobile-nav .nav-item {
		flex: 1;
		padding: 1rem 1.5rem; /* Reduced padding for smaller screens */
		margin: 0px;
		text-align: center;
		color: var(--color-secondary);
		cursor: pointer;
		font-family: "Asap", sans-serif;
		font-weight: var(--fw-med-bold);
		font-size: var(--fs-3); /* Smaller font for smaller screens */
		border-right: 1px solid hsla(0, 0%, 100%, 0.2);
	}

	.mobile-nav .nav-item:last-child {
		border-right: none;
	}

	.mobile-nav .nav-item a {
		text-decoration: none;
		color: var(--color-secondary);
		white-space: nowrap;
		display: block;
		width: 100%;
	}
}

/* Mobile (< 640px) */
@media (max-width: 591px) {
	:root {
		/* font sizes */
		--fs-1: .5rem;
		--fs-2: .825rem;
		--fs-3: 1rem;
		--fs-4: 1.25rem;
		--fs-5: 1.375rem;
		--fs-6: 1.5rem;
		--fs-7: 2rem;
		--fs-8: 3rem;
		--fs-9: 2.5rem;
	}

	body {
		height: auto;
		overflow-y: auto;
		overflow-x: hidden;
		padding-bottom: 0px;
		padding-top: 2rem;
	}

	h2 {
		font-size: var(--fs-6);
		font-weight: var(--fw-bold);
		margin: 0px;
		font-family: "Asap", sans-serif;
		line-height: 0;
		color: var(--color-primary);
	}
	
	h3 {
		font-weight: var(--fw-med);
	}

	h5 {
		font-size: var(--fs-6);
		font-weight: var(--fw-bold);
		margin: 0px;
		font-family: "Asap", sans-serif;
		line-height: 1.2;
		color: var(--color-text-primary);
	}

	h6 {
		font-size: var(--fs-4);
		font-weight: var(--fw-bold);
		margin: 0px;
		font-family: "Public sans", sans-serif;
		padding-bottom: var(--fs-1);
		color: var(--color-primary);
	}
	
	.icon {
		width: 2.5rem;
		height: 2.5rem;
		margin: 0rem;
	}
	
	.columns {
		display: flex;
		flex-direction: column;
		height: auto;
		overflow: visible;
		align-items: stretch;
		padding-bottom: 0px;
	}

	.column_left {
		position: static;
		height: auto;
		max-width: 100%;
		width: 100%;
		overflow: visible;
		margin-right: 0;
	}

	.column_right {
		position: static;
		height: auto;
		width: 100%;
		margin-left: 0;
		padding-top: 32px;
		padding-bottom: 0px;
		overflow: visible;
	}

	.content_box {
		flex-wrap: nowrap;
		align-items: stretch;
	}
	
	.mobile-nav {
		display: flex;
		position: sticky;
		top: 3.5rem;
		z-index: 2000;
		width: fit-content;
		margin: auto;
		margin-top: 1rem;
		margin-bottom: 1rem;
		background-color: var(--color-primary);
		border-radius: 1000px;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
		overflow: hidden;
		text-decoration: none;
		flex-wrap: wrap; /* Allow wrapping if needed */
	}

	.mobile-nav .nav-item {
		flex: 1;
		padding: .825rem; /* Reduced padding for smaller screens */
		margin: 0px;
		text-align: center;
		color: var(--color-secondary);
		cursor: pointer;
		font-family: "Asap", sans-serif;
		font-weight: var(--fw-med);
		font-size: var(--fs-2); /* Smaller font for smaller screens */
		border-right: 1px solid hsla(0, 0%, 100%, 0.2);
	}

	.mobile-nav .nav-item:last-child {
		border-right: none;
	}

	.mobile-nav .nav-item a {
		text-decoration: none;
		color: var(--color-secondary);
		white-space: nowrap;
		display: block;
		width: 100%;
	}
}