/**
* Page-level
* 2026 palette: Golden Hour
*   marigold #F2A93B (primary accent)
*   plum     #5B2A5C (secondary accent / headers)
*   charcoal #2E2E2E (body text)
*   cream    #FAF6EE (background)
*   amber    #8a5a1e (visited links / dirt tags)
*/
*, *:before, *:after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Jost', sans-serif;
  font-optical-sizing: auto;
	background-color: #FAF6EE;
	color: #2E2E2E;
}



strong {
	font-weight: 600;
}

a {
	color: #5B2A5C;
}

a:visited {
	color: #8a5a1e;
}

a:hover,
a:active {
	color: #F2A93B;
}

nav,
main,
footer {
	padding: 1rem;
}

/**
* Header
*/
header {
	border-bottom: 1px solid #8f8f8f;
}

nav ul {
	list-style: none;
	display: inline;
	margin: 0;
	padding: 0;
}

nav li {
	display: inline;
}

nav li:not(:last-child)::after {
	content: "|";
	margin-left: 6px;
}
.preserve-tabs {
  white-space: pre-wrap; /* Preserves tabs, spaces, and line breaks while wrapping text naturally */
  tab-size: 1;           /* Customizes the tab width (defaults to 8 spaces) */
}

.splash-header {
	background-image: url("bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 480px;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#week1 .splash-header {
	background-image: url("week1_bg.jpg")
}

#week2 .splash-header {
	background-image: url("week2_bg.jpg")
}

#week3 .splash-header {
	background-image: url("week3_bg.jpg")
}

#week4 .splash-header {
	background-image: url("week4_bg.jpg")
}

#week5 .splash-header {
	background-image: url("week5_bg.jpg")
}

#week6 .splash-header {
	background-image: url("week6_bg.jpg")
}

#week7 .splash-header {
	background-image: url("week7_bg.jpg")
}

#week8 .splash-header {
	background-image: url("week8_bg.jpg")
}

#week9 .splash-header {
	background-image: url("week9_bg.jpg")
}


.welcome {
	padding: 1rem;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	text-align: center;
}

.welcome .title {
	font-size: 3rem;
	margin: 0;
	text-align: center;
}

.welcome .subtitle {
	font-size: 1.75rem;
	margin: 0;
	color: #F2A93B;
	text-align: center;
}

/**
* Main
*/

table {
	border-collapse: collapse;
	text-align: center;
}

th {
	padding: .5rem;
	background-color: #5B2A5C;
	color: white;
}

td {
	padding: .5rem;
}



tr {
	border: 1px solid #5B2A5C;
}

.scrolling-table {
	max-width: 100%;
	overflow: auto;
}

.climb-subtext {
	font-size: .875rem;
	margin: .5rem 0;
}

.header-row {
	background-color: #5B2A5C;
	color: white;
}

td.date {
	white-space: nowrap;
}

td.previous-years {
	font-size: .875rem;
}

.minimal-heading {
	font-size: 1.25rem;
	margin-top: 0;
}

.archives {
	display: flex;
	gap: .5rem;
}

.current-year {
	font-weight: 600;
}

/**
* Extras used on the 2026 pages (safe to keep even if unused elsewhere)
*/
td.location {
	white-space: nowrap;
	color: #6b4423;
	font-size: .9rem;
}

.dirt-tag {
	color: #8a5a1e;
	font-size: .8em;
}

tbody tr:nth-child(even) {
	background-color: #FCEBD5;
}

tbody tr.anchor-week {
	background-color: #F6D9A8;
}

/**
* Footer
*/

footer {
	border-top: 1px solid #8f8f8f;
}

footer p {
	margin: 0;
}

caption {
  caption-side: bottom;
  padding: 10px;
	text-align: left;
}

.profile-thumb {
	height: 30px;
	width: auto;
	display: block;
}