/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ============================================
   Western Canada Labour School - Site Styles
   ============================================ */

:root {
	--header-footer-bg: #F5E6D3;
	--dark-maroon: #6B1C23;
	--maroon: #8B2232;
	--red: #C0392B;
	--dark-red: #A01E2A;
	--orange: #E8732A;
	--light-orange: #F0943A;
	--gold: #D4881E;
	--white: #FFFFFF;
	--light-gray: #F5F5F5;
	--text-dark: #333333;
	--text-body: #444444;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: var(--text-body);
	background-color: var(--white);
}

a{
	color:#F68C3D;
	text-decoration: none;
}

a:hover{
	color:#922324;
	transition:.1s;
}
/* Header / Navigation */
.site-header {
	background-color: var(--header-footer-bg);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.site-header .logo img {
	height: 60px;
	width: auto;
}

.main-nav ul {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.main-nav a {
	display: inline-block;
	padding: 6px 14px;
	background-color: var(--maroon);
	color: var(--white);
	text-decoration: none;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 4px;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
	background-color: var(--red);
	color: var(--white);
}

.main-nav a.nav-cta {
	background-color: var(--orange);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.main-nav a.nav-cta:hover,
.main-nav a.nav-cta.active {
	background-color: var(--gold);
}

/* Back-to-top floating button */
#back-to-top {
	position: fixed;
	right: 18px;
	bottom: 18px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background-color: var(--maroon);
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	z-index: 90;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

#back-to-top:hover {
	background-color: var(--gold);
	transform: translateY(-2px);
}

#back-to-top[hidden] {
	display: none;
}

/* Hero Section */
.hero {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(107, 28, 35, 0.3) 0%,
		rgba(107, 28, 35, 0.1) 100%
	);
}

/* Main Content */
.main-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 30px;
}

.page-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 30px;
}

/* Info Sections */
.info-label {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--red);
	font-style: italic;
	margin-bottom: 4px;
}

.info-value {
	font-size: 0.95rem;
	margin-bottom: 20px;
}

/* Agenda Section */
.agenda-heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--red);
	font-style: italic;
	margin-bottom: 4px;
}

.agenda-note {
	font-size: 0.85rem;
	font-style: italic;
	color: #777;
	margin-bottom: 15px;
}

.day-heading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-top: 20px;
	margin-bottom: 8px;
	text-decoration: underline;
}

.schedule-item {
	font-size: 0.9rem;
	margin-bottom: 4px;
	padding-left: 10px;
}

.schedule-item .time {
	font-weight: 600;
	display: inline;
}

/* Workshop Topics Section */
.workshops-heading {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--red);
	margin-top: 35px;
	margin-bottom: 5px;
}

.workshops-subheading {
	font-size: 0.85rem;
	font-style: italic;
	color: #777;
	margin-bottom: 20px;
}

.workshop-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-top: 18px;
	margin-bottom: 6px;
}

.workshop-description {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 12px;
}

/* Content Warning */
.content-warning {
	margin-top: 35px;
	padding: 20px;
	background-color: var(--light-gray);
	border-left: 4px solid var(--red);
}

.content-warning h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--red);
	margin-bottom: 8px;
}

.content-warning p {
	font-size: 0.85rem;
	line-height: 1.5;
}

/* Contact Information */
.contact-info {
	margin-top: 30px;
	padding-bottom: 20vh;
}

.contact-info h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 5px;
}

.contact-info .contact-note {
	font-size: 0.85rem;
	margin-bottom: 12px;
}

.contact-list {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.contact-list .contact-item {
	font-size: 0.85rem;
}

.contact-list .union-name {
	font-weight: 700;
}

.contact-list a {
	color: var(--red);
	text-decoration: none;
}

.contact-list a:hover {
	text-decoration: underline;
}

.site-button{
	padding:9px 18px;
	background:#6B1C23;
	color:#fff;
	text-decoration:none;
	border-radius:3px;
}
.site-button:hover{
	color:#fff;
	background:#D4881E;
}

.site-button.inline{
	padding:3px 6px;
	font-size:80%;
}

/* Footer */
.site-footer {
	background-color: var(--header-footer-bg);
	padding: 30px;
	text-align: center;
}

.footer-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.footer-logos img {
	height: 50px;
	width: auto;
	opacity: 0.85;
}

.footer-logos span {
	color: var(--text-dark);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 1px;
}

/* New section styling */
.section-heading {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--maroon);
	margin-top: 38px;
	margin-bottom: 16px;
	padding-top: 12px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--header-footer-bg);
	background-color: var(--white);
	position: sticky;
	top: var(--header-height, 80px);
	z-index: 80;
}

.section-lede {
	font-size: 0.95rem;
	margin-bottom: 14px;
}

.cost-callout {
	display: inline-block;
	padding: 8px 14px;
	background-color: #FBEDD9;
	border-left: 4px solid var(--orange);
	color: var(--maroon);
	font-weight: 400;
	font-size: 0.9rem;
	margin-bottom: 16px;
	border-radius: 0 3px 3px 0;
}

.subheading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-top: 20px;
	margin-bottom: 6px;
}

#social-night p,
#things-to-do p,
#faq p {
	font-size: 0.9rem;
	margin-bottom: 10px;
}

/* Agenda cohort indent */
.schedule-item.indent {
	padding-left: 28px;
	font-size: 0.85rem;
}

.schedule-item .room {
	color: #777;
	font-style: italic;
}

.schedule-item .cohort {
	font-weight: 700;
	color: var(--maroon);
	margin-right: 4px;
}

/* Speakers */
.speaker {
	margin-bottom: 22px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--light-gray);
}

.speaker:last-child {
	border-bottom: none;
}

.speaker-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 2px;
}

.speaker-role {
	font-size: 0.85rem;
	font-style: italic;
	color: #777;
	margin-bottom: 8px;
}

.speaker-bio {
	font-size: 0.9rem;
	line-height: 1.5;
}

.tba {
	display: inline-block;
	font-size: 0.7rem;
	background: var(--gold);
	color: var(--white);
	padding: 2px 6px;
	border-radius: 3px;
	vertical-align: middle;
	margin-left: 6px;
	letter-spacing: 1px;
}

/* Location / floor plans */
.floorplan-heading {
	font-size: 1rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-top: 22px;
	margin-bottom: 6px;
}

.floorplan-caption {
	font-size: 0.85rem;
	color: var(--text-body);
	margin-bottom: 14px;
}

.floorplans {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	margin-top: 10px;
}

.floorplans figure {
	margin: 0;
}

.floorplans img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid var(--light-gray);
	border-radius: 4px;
}

.floorplans figcaption {
	font-size: 0.8rem;
	font-style: italic;
	color: #777;
	margin-top: 6px;
	text-align: center;
}

/* Responsive nav */
@media (max-width: 700px) {
	.site-header {
		padding: 10px 16px;
		gap: 12px;
	}
	.site-header .logo {
		flex: 0 0 auto;
	}
	.site-header .logo img {
		height: 44px;
	}
	.main-nav {
		flex: 1 1 auto;
		min-width: 0;
	}
	.main-nav ul {
		gap: 6px;
		justify-content: flex-end;
	}
	.main-nav a {
		padding: 5px 10px;
		font-size: 0.65rem;
		letter-spacing: 0.5px;
	}
	.main-content {
		padding: 30px 18px;
	}
}
