@import url('https://fonts.googleapis.com/css2?family=Calistoga&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Open+Sans:wght@300&display=swap');

body {
	font-family: 'Calistoga', cursive;
}

.logo {
	max-height: 200px;
	max-width: 300px;
	min-height: 150px;
	margin: auto; /* center the div horizontally */
	text-align: center;
}


@media only screen and (max-width: 500px) {
	.logo {
		max-height: 120px;
		max-width: 250px;
		min-height: 100px;
		margin: auto; /* center the div horizontally */
	}
}

/* Header Divider */
.header-divider {
	border: none;
	border-top: 3px solid black;
	margin: 1rem 0 0.5rem 0;
}

/* Professional Navigation */
.main-nav {
	background-color: #f8f8f8;
	padding: 0;
	margin: 0.5rem 0 1rem 0;
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #eee;
}

.nav-item {
	margin: 0;
}

.nav-link {
	display: block;
	padding: 1rem 1.5rem;
	text-decoration: none;
	color: #333;
	font-size: 1.1rem;
	font-family: 'Calistoga', cursive;
	transition: all 0.3s ease;
	border-right: 1px solid #ccc;
}

.nav-link:hover {
	background-color: #ddd;
	color: #000;
}

.nav-link.active {
	background-color: #333;
	color: white;
}

.nav-item:last-child .nav-link {
	border-right: none;
}

/* Mobile Navigation */
@media only screen and (max-width: 600px) {
	.nav-list {
		flex-direction: column;
	}

	.nav-link {
		border-right: none;
		border-bottom: 1px solid #ccc;
		font-size: 1rem;
		padding: 0.8rem 1rem;
		text-align: center;
	}

	.nav-item:last-child .nav-link {
		border-bottom: none;
	}
}

.blog-container {
	margin: auto; /* center horizontally */
	max-width: 800px;
	min-width: 320px;
}

.event {
	border: 2px solid black;
	padding-bottom: 1rem; /* padding goes inside the border */
}

.event-body {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	align-items: flex-start;
}

.event-title {
	margin-top: 1.2rem;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	width:100%;
	text-align: center;
}

.flex-item-left {
	text-align: center;
}

figure {
	margin-bottom: 1rem;
	margin-top: 0;
}

figcaption {
	font-size: 0.8rem;
	font-family: 'Open Sans', sans-serif;
}

img {
	padding-left: 1rem;
}

/* QR Code Styles */
.qrcode {
	max-width: 100%;
	min-height: 3rem;
	line-height: 3rem;
	border-top: 3px solid black;
	border-bottom: 3px solid black;
	text-align: center;
	vertical-align: middle;
	color: black;
	background-color: #eee;
	font-size: 1.2rem;
	margin: 1rem 0 1rem 0;
	padding: 1rem;
}

.qrcode img {
	width: 150px;
	height: auto;
	margin-top: 0.5rem;
}

/* About Page Styles */
.band-member {
	display: flex;
	margin-bottom: 2rem;
	padding: 1rem;
	border-bottom: 1px solid #eee;
}

.member-photo {
	flex: 0 0 150px;
	margin-right: 1.5rem;
}

.member-photo img {
	width: 150px;
	height: 150px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #333;
}

.member-info {
	flex: 1;
}

.member-info h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1.3rem;
	color: #333;
}

.member-info h4 {
	margin: 0 0 1rem 0;
	font-size: 1rem;
	color: #666;
	font-style: italic;
}

.member-info p {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	margin: 0;
}

.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background-color: #333;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1.1rem;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #555;
}

/* Mobile responsive for band members */
@media only screen and (max-width: 500px) {
	.band-member {
		flex-direction: column;
		text-align: center;
	}

	.member-photo {
		flex: none;
		margin: 0 auto 1rem auto;
	}
}

/* Contact Page Styles */
.contact-info {
	font-family: 'Open Sans', sans-serif;
}

.contact-details {
	margin: 1.5rem 0;
}

.contact-item {
	margin: 0.5rem 0;
	font-size: 1rem;
}

.contact-item a {
	color: #333;
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

.event-types {
	font-family: 'Open Sans', sans-serif;
	margin: 1rem 0;
}

.event-types li {
	margin: 0.3rem 0;
}

/* Contact Form Styles */
.contact-form {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	font-family: 'Open Sans', sans-serif;
}

.form-row {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.form-group {
	flex: 1;
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #333;
}

.submit-button {
	background-color: #333;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 4px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	font-family: 'Calistoga', cursive;
}

.submit-button:hover {
	background-color: #555;
}

/* Response Info Styles */
.response-info {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 2rem;
}

.response-step {
	flex: 1;
	min-width: 200px;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}

.response-step h4 {
	color: #333;
	margin-bottom: 0.5rem;
}

/* Mobile responsive for contact form */
@media only screen and (max-width: 500px) {
	.form-row {
		flex-direction: column;
		gap: 0;
	}

	.response-info {
		flex-direction: column;
		text-align: left;
	}

	.response-step {
		min-width: auto;
	}
}

/* Thank You Page Styles */
.thank-you-content {
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	max-width: 600px;
	margin: 0 auto;
}

.thank-you-content h3 {
	color: #333;
	margin-bottom: 1rem;
	font-family: 'Calistoga', cursive;
}

.thank-you-content ul {
	text-align: left;
	display: inline-block;
	margin: 1rem 0;
}

.thank-you-content li {
	margin: 0.5rem 0;
}

.thank-you-content a {
	color: #333;
	text-decoration: none;
}

.thank-you-content a:hover {
	text-decoration: underline;
}

.thank-you-actions {
	margin-top: 2rem;
}

.thank-you-actions .cta-button {
	margin: 0 0.5rem;
}

/* Photo Gallery Styles */
.photo-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin: 1rem 0;
}

.photo-item {
	text-align: center;
	border: 2px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.photo-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.photo-caption {
	padding: 1rem;
	background-color: #f9f9f9;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	color: #333;
}

/* Audio Gallery Styles */
.audio-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1rem;
	margin: 1rem 0;
}

.audio-item {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 1rem;
	transition: background-color 0.3s ease;
}

.audio-item:hover {
	background-color: #f0f0f0;
}

.audio-item figure {
	margin: 0;
}

.audio-item figcaption {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #333;
	font-family: 'Calistoga', cursive;
}

.audio-item audio {
	width: 100%;
	margin-top: 0.5rem;
}

/* Mobile responsive for galleries */
@media only screen and (max-width: 500px) {
	.photo-gallery {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.audio-gallery {
		grid-template-columns: 1fr;
	}

	.photo-item img {
		height: 150px;
	}
}

