/*
	File Name: styles.css
	Date: 03/23/2026
*/
/* CSS Reset */
body,
header,
nav,
main,
footer,
img,
h1,
h2,
h3,
p,
ul,
li,
video {
	margin: 0;
	padding: 0;
	border: 0;
}

@font-face {
	font-family: 'Stensil';
	src: url('../fonts/Stensil-Normal.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* Style rule for images */
img {
	max-width: 100%;
	display: block;
}

.about-image {
	float: left;
	margin-right: 20px;
	width: 100px;
	height: 100px;
}

.resources-img {
	width: 25%;
	padding: 10px;
}

body {
	background: linear-gradient(rgb(255, 255, 128), rgba(255, 255, 128, .5));
}

/*Style rules for video*/
video {
	max-width: 80%;
	display: block;
}

/* ===== Site Header Component ===== */
.site-header {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 1rem 0;
}

.brand {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;

	/*Make logo visible by imparting a white background, as SVG is transparent*/
	background-color: #fff; /* white backing*/
}

.brand:hover {
	opacity: 0.9;
}

.brand-logo-img {
	display: block;
	width: 100%;
	max-width: 400px;   /* matches previous clamp upper bound */
	height: auto;
}

hr {
	background-color: #373684;
}

.resource-h2 {
	text-align: center;
}

.resource-p {
	text-align: center;
}

/*Style rules for navigation area */
nav {
	background-color: #000;
}

nav a.active { /* Highlight the current nav selection */
	background-color: #e5e9fc;
	color: #000;
}

nav ul {
	list-style-type: none;
	text-align: center;
}

nav li {
	display: block;
	font-size: 1.5em;
	font-family: Geneva, Arial, sans-serif;
	font-weight: bold;
	border-top: 0.5px solid rgba(255,255,255,0.25);
}

nav li a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 0.5em 1em;
	text-decoration: none;
}

nav li a:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
}

/*Style rules for main content */
main {
	padding: 1%;
	background-color: #000;
	font-family: 'Lora', serif;
	overflow: auto;
	color: #fff;
}

main p {
	font-size: 1.24em;
}

main h3 {
	padding-top: 2%;
}

main h4 {
	font-family: 'Emblema One', serif;
	font-size: 1.5em;
}

.about-h4 {
	float: left;
}

main ul {
	list-style-type: square;
	padding-left: 1%;
}

main li {
	font-family: 'Nunito', serif;
	font-size: 1.25em;
	padding: 10px;
}

main li ul {
	font-size: 1.0em;
}

main ol li {
	font-size: 1.0em;
}

.link {
	color: #4d3319;
	text-decoration: none;
	font-weight: bold;
	font-style: italic;
}

.action {
	font-size: 1.75em;
	color: #373684;
	text-align: center;
}

.round {
	border-radius: 6px;
}

.fig-img {
	height: 300px;
	width: 300px;
}

#invis {
	list-style: none;
}

#info {
	margin-left: 10%;
}

#bookings {
	text-align: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	line-height: 1.2;
	border: none;
	border-radius: 0.5rem;
	background-color: #41d2ff;
	color: #003366;
	cursor: pointer;
	text-decoration: none;
	font-family: inherit;
}

.btn:hover {
	filter: brightness(0.95);
}

.btn:active {
	transform: translateY(1px);
}

.btn:focus-visible {
	outline: 3px solid #373684;
	outline-offset: 2px;
}

.map {
	border: 5px solid #373684;
}

.tel-link {
	background-color: #2a1f14;
	padding: 2%;
	width: 80%;
	margin: 0 auto;
}

.tel-link a {
	color: #f6eee4;
	text-decoration: none;
	font-weight: bold;
}

/* Style rules for video content */
/* WATCH PAGE VIDEO GRID */
.video-grid {
  width: min(1100px, 100%);
  margin: 1.25rem auto 2rem;
  padding: 0 1rem;

  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.video-card {
  grid-column: span 12;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Responsive 16:9 embed wrapper */
.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 12px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  margin-top: 0.85rem;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
}

.video-meta {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.video-meta a {
  text-decoration: underline;
}

/* Two-up on wider screens */
@media (min-width: 800px) {
  .video-card {
    grid-column: span 6;
  }
}

/* Style rules for footer content */
footer {
	text-align: center;
	font-size: 1em;
	clear: left;
}

footer a {
	color: #4645a8;
	text-decoration: none;
}

.foot img {
	padding: 20px;
}

#fb img {
	width: 35px;
}

#yt img {
	width: 130px;
}

#bc img {
	width: 35px;
}

.foot {
	display: flex;
	justify-content: center;
}

/*Style rules for form elements*/
fieldset,
input,
textarea {
	margin-bottom: 1px;
}

fieldset legend {
	font-weight: bold;
	font-size: 1.25em;
}

fieldset {
	border: none;
	width: 200px;
}

label {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}

form {
	border: 2px solid #000;
}

.formContainer {
	/*add */
	display: flex;
	align-items: flex-end;
}

.formContainer img {
	/*add */
	display: none;
}

/* Media Query for Desktop Viewport */
@media screen and (min-width: 1000px) {

	/* Desktop Viewport: Style rules for nav area */
	nav ul {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
	}

	nav li {
		display: inline-block; /* override mobile stack */
		border-top: none;      /* remove stacked separators */
		font-size: 1.5em;
	}

	/* optional: thin separators between items (remove if you don't want them) */
	nav li + li {
		border-left: 0.5px solid rgba(255, 255, 255, 0.25);
	}

	nav li a {
		padding: 0.5em 1.5em;
	}

	nav li a:hover {
		color: #000;
		background-color: #fff;
	}

	/* Desktop Viewport: Style rules for main content */
	#info ul {
		margin-left: 5%;
	}

	.formContainer img {
		max-width: 95%;
		height: auto;
	}

	.grid {
		display: grid;
		grid-template-columns: auto auto;
		grid-gap: 10px;
	}
}

/* Media Query for Large-ish Desktop Viewport */
@media screen and (min-width: 1291px) {
	.formContainer img {
		/*add */
		max-width: 818px;
		height: auto;
	}
}

/* Media Query for Large Desktop Viewport */
@media screen and (min-width: 1921px) {
	#wrapper {
		width: 1920px;
		margin: 0 auto;
	}
}

/* Media Query for Print */
@media print {
	body {
		background-color: #fff;
		color: #000;
	}
}

/* Band bios accordion */
.member-bios {
  width: min(800px, 100%);
  margin: 2rem auto;
  padding: 0 1rem;
}

.member-bios h2 {
  font-family: 'Emblema One', serif;
  font-size: 2.3em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

details.bio {
  border: 1px solid #ffffff;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  background: #000000;
}

/* Accordion summary (member name) */
details.bio > summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;

  text-align: center;
  font-size: 1.6em;
  padding: 0.25rem 0;
}

details.bio > summary::-webkit-details-marker {
  display: none;
}

details.bio[open] > summary {
  margin-bottom: 0.5rem;
}

/* Bio content */
.bio-content {
  line-height: 1.5;
  overflow-wrap: anywhere; /* prevents weird overflow */
  overflow: hidden;        /* supports smooth height animation */
}

/* Keep markdown headings tight */
.bio-content :is(h1, h2, h3) {
  margin: 0.5rem 0;
}

/* Paragraph/list spacing */
.bio-content :is(p, ul) {
  margin: 0.5rem 0;
}

/* Lists: keep bullets inside the card nicely */
.bio-content :is(ul, ol) {
  list-style-position: outside;
  padding-left: 1.25rem;
  margin-left: 0;
}

/* Reset list styling inside bios so global main li rules don't wreck it */
.bio-content li {
  font-size: 1em;     /* overrides main li { font-size: 1.25em } */
  padding: 0.2rem 0;  /* overrides main li { padding: 10px } */
  font-family: inherit;
}

.bio-layout {
  display: grid;
  gap: 1rem;
  align-items: start;
}

/* On wider screens, put photo to the right */
@media (min-width: 650px) {
  .bio-layout {
    grid-template-columns: 1fr 160px;
  }
  .bio-photo {
    width: 160px;
  }
}

/* On small screens, photo drops below content */
.bio-photo {
  display: none;           /* hidden if no photo set */
  width: 100%;
  max-width: 220px;
  border-radius: 0.5rem;
  justify-self: center;
}

.tour-section {
  width: min(900px, 100%);
  margin: 2rem auto;
  padding: 0 1rem;
}

/* SEE PAGE IMAGEKIT GALLERIES */
.photo-page {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.gallery-status {
  text-align: center;
  margin: 1.5rem 0 2rem;
  font-size: 1.1rem;
}

.gallery-sections {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-block {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gallery-title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: 'Emblema One', serif;
  font-size: 1.4rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.photo-card {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.05);
}

.photo-card:focus-visible {
  outline: 3px solid #373684;
  outline-offset: 3px;
}

@media (min-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* WORDS PAGE - IMAGEKIT LYRICS */
.lyrics-page {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.lyrics-status {
  text-align: center;
  margin: 1.5rem 0 2rem;
  font-size: 1.1rem;
}

.lyrics-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.album-accordion {
  display: grid;
  gap: 1rem;
}

.album-panel {
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.album-panel summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-family: 'Emblema One', serif;
  font-size: 1.2rem;
  background: #1f1f1f;
  user-select: none;
  color: #fff;
}

.album-panel summary::-webkit-details-marker {
  display: none;
}

.album-content {
  height: 0;
  overflow: hidden;
  padding: 0 1.25rem;
}

.album-header {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0 0.5rem;
}

.album-cover {
  width: 110px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  display: block;
  background: #f2f2f2;
}

.album-cover-placeholder {
  display: grid;
  place-items: center;
  color: #666;
  font-size: 0.9rem;
}

.album-title {
  margin: 0 0 0.25rem;
  font-family: 'Emblema One', serif;
  font-size: 1.25rem;
}

.album-count {
  margin: 0;
  color: #444;
}

.song-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  display: grid;
  gap: 0.5rem;
}

.song-item {
  margin: 0;
  padding: 0;
}

.song-link {
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background: #fff;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.song-link:hover,
.song-link:focus-visible {
  background: #f7f7f7;
  border-color: #999;
  transform: translateY(-1px);
}

.song-link.is-active {
  box-shadow: 0 0 0 2px rgba(55, 54, 132, 0.15);
  background: #000;
  color: #fff;
  border-color: #000;
}

.song-empty {
  padding: 0.5rem 0;
  color: #666;
}

.lyrics-viewer-panel {
  border: 1px solid #ccc;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1rem;
  position: sticky;
  top: 1rem;
}

.viewer-title {
  margin: 0 0 0.35rem;
  font-family: 'Emblema One', serif;
  font-size: 1.3rem;
}

.viewer-meta {
  margin: 0 0 1rem;
  color: #444;
}

.lyrics-viewer-frame-wrap {
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #f7f7f7;
}

.lyrics-viewer {
  width: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.lyrics-viewer,
.lyrics-viewer-frame-wrap {
  height: 70vh;
  min-height: 600px;
}

.lyrics-viewer-panel {
  position: sticky;
  top: 1rem;
}

.viewer-actions {
  margin: 0.85rem 0 0;
}

.viewer-link {
  font-weight: 600;
}

@media (min-width: 900px) {
  .lyrics-layout {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 899px) {
  .lyrics-viewer-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .album-header {
    grid-template-columns: 1fr;
  }

  .album-cover {
    width: min(180px, 100%);
  }

  .lyrics-viewer-frame-wrap,
  .lyrics-viewer {
    min-height: 420px;
    height: 420px;
  }
}

.album-title,
.album-count,
.song-link,
.song-empty,
.viewer-title,
.viewer-meta,
.viewer-link {
  color: #222;
}