body {
	margin: 0;
	background-color: #D6A979;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.wrapper {
	width: 800px;
	margin: 0 auto;
	background: url('images/woodbackground.png') no-repeat center center;
	background-size: 100% 100%;
	padding: 20px;
}

header {
	text-align: center;
}

h1 {
	font-family: 'Parisienne', cursive;
	margin: 0;
	font-size: 60px;
}

nav {
	margin-top: 10px;
}

.tab-group {
	display: flex;
	justify-content: flex-start;
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	padding-left: 339px;
}

.tab {
	background-color: #D6D6D6;
	border: none;
	padding: 8px 16px;
	margin-right: 5px;
	font-weight: bold;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.tab.active {
	background-color: #E1B986;
}

.tab:not(.active):hover {
	background-color: #8B5E3C;
	color: white;
}

.two-column {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	height: 424px; /* Match photo height */
	overflow: hidden;
}

.image-column {
	flex: none;
	width: 319px;
	height: 424px;
}

.image-column img {
	width: 319px;
	height: 424px;
	object-fit: cover;
	border: 2px solid #8B5E3C;
}

.content-column {
	flex: 1;
	background-color: #E1B986;
	padding: 15px;
	height: 424px; /* Match photo height */
	overflow-y: auto; /* Allow internal scroll if needed */
	box-sizing: border-box;
}

.song-block {
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 30px;
}

.song-block {
	border-bottom: 2px solid #8B5E3C;
	padding-bottom: 1em;
	margin-bottom: 1.5em;
}

.song-block:last-of-type {
	border-bottom: none;
}

.song-block h3 {
	margin-bottom: 8px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1em;
	text-align: left;
}

.song-block audio {
	display: block;
	margin-bottom: 0.5em;
}

footer {
	margin-top: 20px;
	text-align: center;
	font-size: 0.9em;
	line-height: 1.4;
}
