/* --- FONTS & BASICS --- */
@font-face {
	font-family: 'Cinzel Decorative';
	src: url('cinzel-decorative-black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

body {
	background-color: #fff;
	margin: 0;
	padding: 0;
}

.content-wrapper {
	max-width: 850px;
	margin: 0 auto;
	padding: 0 20px 40px 20px;
	font-family: 'Montserrat', sans-serif;
	color: #333;
	line-height: 1.6;
}

/* --- HEADINGS --- */
h1 {
	font-family: 'Cinzel Decorative', serif;
	/* Use the exact name from above */
	font-weight: 900;
	font-size: 3.2rem;
	/* Slightly larger for that "Art" impact */
	color: #513c04;
	text-align: left;
	line-height: 1.1;
	margin-bottom: 0.5rem;
	letter-spacing: 1px;
}

h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	font-size: 1.4rem;
	letter-spacing: 2px;
	color: #555;
	text-transform: uppercase;
	margin-left: 0;
	/* Reset for better mobile alignment */
}

/* --- NAVIGATION & HAMBURGER --- */

.main-nav {
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
	display: block;
	/* Change from flex to block for the container */
}

.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	/* This keeps 'Home' and 'Instructor' perfectly level */
	gap: 2rem;
}

/* Rollover for Nav Links */
.nav-links a {
	text-decoration: none;
	color: #555;
	font-weight: 500;
	font-size: 0.95rem;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	/* Keeps things from jumping on hover */
	transition: all 0.3s ease;
}

.nav-links a:hover {
	color: rgb(46, 23, 1);
	border-bottom: 2px solid rgb(46, 23, 1);
}


.menu-toggle {
	display: none;
	/* Desktop hidden */
	flex-direction: column;
	width: 30px;
	cursor: pointer;
	margin: 0 auto;
}

.menu-toggle .bar {
	height: 3px;
	width: 100%;
	background-color: #513c04;
	margin: 4px 0;
	transition: 0.4s;
}

/* --- SLIDESHOW --- */
.slideshow-container {
	position: relative;
	width: 100%;
	/* height: 500px; */
	height: 75vh;
	margin: 30px 0;
	overflow: hidden;
	background: #f9f9f9;
}

.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 1.1s ease-in-out;
}

.slide.active {
	opacity: 1;
}

/* --- BUTTONS --- */
.button-container {
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.btn {
	padding: 10px 20px;
	background-color: rgb(97, 78, 64);
	color: white;
	text-decoration: none;
	font-weight: bold;
	border-radius: 4px;
	transition: 0.3s;
	border: 1px solid rgb(97, 78, 64);
}

.btn:hover {
	background-color: white;
	color: rgb(97, 78, 64);
}

/* --- LOGISTICS & GRID --- */
.schedule-list {
	list-style: none;
	padding: 0;
	margin: 40px 0;
}

.schedule-list li {
	display: grid;
	grid-template-columns: 140px 1fr;
	margin-bottom: 8px;
	align-items: baseline;
}

.label {
	font-weight: bold;
	color: #666;
	font-size: 0.9rem;
	text-transform: uppercase;
}

.info {
	color: rgb(46, 23, 1);
	font-weight: 400;
}

.description-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

/* --- SOCIAL & SHARING --- */
.social-section {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #eee;
	text-align: center;
}

.share-btn {
	display: inline-block;
	padding: 8px 16px;
	margin: 5px;
	border-radius: 4px;
	color: white;
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: bold;
}

.share-btn.fb {
	background: #1877F2;
}

.share-btn.sms {
	background: #4cd964;
}

.share-btn.email {
	background: #666;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
	h1 {
		font-size: 2.2rem;
	}

	.menu-toggle {
		display: flex;
	}

	/* Show Hamburger */

	.nav-links {
		display: none;
		/* Hide links */
		flex-direction: column;
		width: 100%;
		margin-top: 20px;
		gap: 0;
	}

	.main-nav.mobile-open .nav-links {
		display: flex;
	}

	.nav-links a {
		padding: 15px;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #f5f5f5;
	}

	.schedule-list li {
		grid-template-columns: 1fr;
		margin-bottom: 15px;
	}
}