
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&display=swap");

:root{
	--maxw: 960px;
	--minw: 320px; /* set this to prevent the layout from getting too narrow to e.g. 800 */
	--header-bg: #1f2937;
	--footer-bg: #1f2937; /*#111827;*/

	--header-pad-y: 16px;
	--header-pad-x: 24px;
	--footer-pad-y: 16px;
	--footer-pad-x: 24px;

	--bgcolor: #BFA781;
/*	--bgcolor: #60462F;*/
/*	--bgcolor-tr: #BFA781C0;*/
	--bgcolor-tr: #1f2937E0;

	--header-h: 0px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
	margin: 0;
	font-family: Montserrat, Lato, Roboto, Helvetica, Arial, sans-serif;
	font-size: 12pt;
	color: #fff;
	background: var(--bgcolor);
	min-width: var(--minw);
	line-height: 150%;
}

a {
	color: #fff;
}

a:hover {
	color: #fcc;
}

/* Page skeleton: header (sticky), main (flex), footer (bottom unless pushed) */
.page{
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Shared fixed-width “inner” container used by header/main/footer */
.inner{
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

/* Header: stuck to top */
.site-header{
	position: sticky;
	top: 0;
	z-index: 10;
	background: var(--header-bg);
	color: #fff;
}

.site-header .inner{
	padding-top: var(--header-pad-y);
	padding-bottom: var(--header-pad-y);
	padding-left: var(--header-pad-x);
	padding-right: var(--header-pad-x);
}

/* Middle: fills remaining space if content is short */
.site-main{
	position: relative;
	flex: 1 0 auto;
	overflow: hidden;
	padding-top: var(--header-h);
}

/*
Background image rules:
- Top edge at top of viewport (behind header): position: fixed; top: 0;
- Width follows viewport when > 1600, but never below 1600: width: max(1600px, 100vw);
- Centered horizontally for large image: left: 50%; transform: translateX(-50%);
- Keeps aspect ratio: height: auto;
*/
.main-bg{
	position: absolute;
	top: var(--header-h);
	left: 50%;
	transform: translateX(-50%);
	width: max(var(--maxw), 100vw);
	height: auto;
	z-index: -1;
	pointer-events: none;
	user-select: none;
}

/* Content area sits “over” the background image */
.site-main .inner{
	padding-top: 48px;
	padding-bottom: 48px;
}

/* Footer: at bottom if content is short, pushed down if content grows */
.site-footer{
	background: var(--footer-bg);
	color: #fff;
	font-size: 10pt;
}

.site-footer .inner{
	padding-top: var(--footer-pad-y);
	padding-bottom: var(--footer-pad-y);
	padding-left: var(--footer-pad-x);
	padding-right: var(--footer-pad-x);
}






.section{
	background-color:var(--bgcolor-tr);
	padding:20px;
	margin:60px 20px;
	clear:both;
}

@media (max-width: 720px){
.section{
	margin:40px 0px;
}
}

.section-columns{
	display: flex;
	gap: 16px;
}

.section-columns > .left,
.section-columns > .right{
	flex: 1;
	padding:0 0px;
}

.title, h1{
	text-transform: uppercase;
	text-shadow: 2px 2px 4px rgba(191, 167, 129, 0.8);
	font-weight:bold;
}

.title{
	text-align:center;
	font-size:24px;
	margin:20px auto;
	letter-spacing: 8px;
}

h1{
	font-size:18px;
	letter-spacing: 4px;
}

.list p{
margin:4px;
}

.two-col {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
}

/*
.two-col-main {
	display:grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	align-items:start;
}
*/

dt
{
	font-weight:bold;
}

.youtube {
	width: 100%;
	aspect-ratio: 16/9;
}

@media (max-width: 720px){
	.section-columns{
		flex-direction: column;
		gap: 16px;
	}
	.two-col-main{
		grid-template-columns: 1fr;
	}
	.title
	{
		font-size:18px;
	}
	h1
	{
		font-size:14px;
	}
	body
	{
		font-size:11pt;
	}
}

.yt-container {
	position: relative;
}

.yt-overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
}

