/*RESET*/
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, font, 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 {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:display;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}
/*MAIN*/
/*
@font-face {
    font-family: 'AdventPro';
    src: url('http://www.kirkhopkins.com/LegacyChristianChurch/fonts/AdventPro-Light.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
*/

@font-face {
    font-family: 'Nunito';
    src: url('fonts/Nunito/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


* {
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
	font-family: Nunito;
	font-weight: 300;
	cursor: auto;
	background-color: #efefef;
	color: #020202;
}

body {
 background-color: #efefef;
}
/*
img {
 width:90%;
 margin:5%;
}
*/
ul {
	list-style: display;
	margin-bottom: 2em;
}
li {
	margin-top: .5em;
	margin-left: 2em;
	margin-bottom: .5em;
}
table {
 margin: 1em;
 border-collapse: separate;
 border-spacing: .1em;
}
td, th {
 padding: .5em;
}
tr:nth-child(odd) {
  background: #eee;
  color: #020202;
}

tr:nth-child(even) {
  background: #ddd;
  color: #030303;
}
th {
 color: #010101;
 font-weight: bold;
 background: #bbb;
}
details > summary {
  padding: 1em;
}

b {
 color: #030303;
}
h1, h2, h3, h4, h5 {
 font-weight: 500;
 color: #040404;
}
h1, h2 {
 margin-top: 4em;
 margin-bottom: .1em;
}
h3, h4, h5 {
 margin-top: 1em;
 margin-bottom: .1em;
}
h1 {
	font-size: 2em;
	line-height: 1.15em;
	margin-top: .2em;
	margin-bottom: .2em;
}
h2 {
	font-size: 1.25em;
	line-height: 1.15em;
}
h3 {
	font-size: 1.01em;
	line-height: 1.01em;
}
h4, h5 {
	font-size: 1.00em;
	line-height: 1.00em;
}
p {
	line-height: 1.45em;
	margin-bottom: 20px;
}
section {
	margin: 0em auto 0em;
	position: relative;
	padding: 1em;
}
div.favorites, div.main {
	position: relative;
	padding: 1em;
	margin:2em;
}

footer {
	background-color: #000;
	width: 100%;
	float: left;
	padding: 28px 64px;
	text-align: center;
}
footer h1 {
	font-size: 18px;
	font-weight: 300;
	color: #f4f4f4;
}
footer p {
	font-size: 12px;
	color: #f3f3f3;
}
footer a {
	font-size: 12px;
	color: #f2f2f2;
	text-decoration: none;
}
footer a:hover {
	cursor: pointer;
}
/*end of main*/
main {
 /* background-color:#000; */
 padding:2em;
}
.top_image {
 margin:0em;
 width:100%;
}

/* Center the main content and cap its width */
main{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;   /* keeps content off the edges on small screens */
  padding-right: 16px;
}

/* Optional: ensure grids don’t overflow */
main > *{
  max-width: 100%;
}


/* begin new gallery grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 column default */
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  align-content: start;
}

/* Medium screens (3 columns) */
@media (min-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px; /* Taller than 100px, but not square */
  }
}

/* Large screens (5 columns) */
@media (min-width: 1000px) {
  .grid-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

.grid-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Images default to auto height in 1-column view */
.grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

/* On multi-column views, fix the image height to fill grid row */
@media (min-width: 600px) {
  .grid-item img {
    height: 100%;
  }
}

/* Portraits span 2 rows for added height */
.portrait {
  grid-row: span 2;
}

.grid-item img:hover {
  transform: scale(1.05);
}
/* end new gallery grid */

/* begin video gallery grid */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-item {
  display: flex;
  flex-direction: column;
}

.video-item p {
  text-align: center;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
}
/* end video gallery grid */

.gallery_photo {
 margin-top: 1em;
 border: 1px solid #ccc;
 float: left;
 transition: transform .2s; /* Animation */
 transform: scale(.80);
 box-shadow: 5px 5px 6px #888;
 background-color: #f9f9ef;
}
.gallery_photo:hover {
 border: 1px solid #460472;
 transform: scale(1);
}
.gallery_photo img {
 width: 90%;
 height: auto;
}
.gallery_image_text {
 padding: .25em;
 text-align: center;
}
.SeeHowThisPageWorks {
 margin: .75em;
 padding: 1em;
 border: 1px solid #444;
 box-shadow: 5px 5px 6px #999;
 background-color: #efefef;
 font-size: .85em;
}
.photo_gallery_text {
 margin: .5em;
 text-align: center;
}
.photo_gallery_thumbnail {
 margin-top:2em;
 display: block;
 margin-left: auto;
 margin-right: auto;
 width:40%;
}
.Full_Width_Image_Then_Text a {
 clear:both;
 background-color: #fff;
 color: #121212;
 text-decoration: none;
 text-align: center;
 display: block;
 padding-top: 1em;
 padding-bottom: 2em;
 transition: transform .2s; /* Animation */
 transform: scale(.9);
}
.Full_Width_Image_Then_Text a:hover {
 background-color: #efefef;
 color: #010101;
 text-decoration: none;
 padding-top: 1em;
 padding-bottom: 2em;
 transition: transform .2s; /* Animation */
 transform: scale(1);
 z-index:-1;
 cursor: pointer;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
	margin: 3px 0px 60px 0px;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.videotitle {
	font-size: 1.05em;
	color: #388E3C;
	line-height: 1.05em;
	margin: 10px 0px 4px 0px;
}
/* gzuslivz original css */
pre {
 font-family: Consolas,monospace
}
.album_title {
  font-size: 2em;
  font-style: bold;
	 margin: 1em;
	 text-align: center;
}
.album_release_date {
  font-size: 1.5em;
  font-style: bold;
	 margin: .5em;
	 text-align: center;
}
.album_photo_credits {
  font-style: italic;
  text-align: center;
}
.album_purchase {
  font-size: 1.25em;
  font-style: bold;
	 margin: .5em;
	 text-align: center;
}
.song_name {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: -.5em;
  margin-top: .5em;
  color:#fff;
}
.song_name_for_chords {
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;
}
.collapse {
  display:block;
  color:#9aabd6;
}
.collapse + input {
  display:none;
}
.collapse + input + * {
  display:none;
}
.collapse + input:checked + * {
  display:block;
}
.See_More_Details_Message_Class{
  border:.4em solid #050505;
  background: #222;
  padding: 2em;
  xmargin-top: 1em;
  color:#eee;
}
.View_More_Class{
  margin-top: 1em;
  margin-bottom: -1em;
}
/* end of gzuslivz original css */
/* Navigation */
.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #232323;
  background: linear-gradient(to left, #000, #333);
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
  height: 50px;
  padding: 1em;
  font-size:1.75rem;
	 font-family: kirkfontmedium;
}
.menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}
.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#menu-toggle {
  display: none;
}
.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
.menu-button::before {
  content: '';
  margin-top: -8px;
}
.menu-button::after {
  content: '';
  margin-top: 8px;
}
#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

/* Navigation items */
.menu > li a {
  color: #fff;
  cursor: pointer;
  padding:.5em;
  text-decoration: none;
  font-weight: 700;
  font-size: .6em;
  /* font-family: kirkfontmedium; */
}
.menu > li a:hover {
  color: #232323;
  background-color: #fff;
  cursor: pointer;
}
.sample_audio {
  bottom:.4em;
  position:relative;
  padding-right:1em;
  margin-top:2.2em;
}
.video_show_on_load {
  width:75%;
  margin:auto;
}
.video_hide_on_load {
  margin-top:.5em;
  width:50%;
}

/* Responsive Design - Smartphone/Tablet size */
@media screen and (max-width: 848px) {
  .photo_gallery_thumbnail {
    width:90%;
  }
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index:999;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 3.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  .menu > li a {
    margin-top: .4em;
  }
  ul {
    margin-top: 1.5em;
  }
  li {
    margin-top: 1em;
  }
  .sample_audio {
    display:block;
    margin-top:2em;
  }
  .video_show_on_load {
    width:90%;
    margin:auto;
  }
  .video_hide_on_load {
    margin-top:1em;
    width:100%;
    margin:auto;
  }
}
.album_content {
 padding: 1em;
 height: 100%;
 /* float: left; */
 width: 50%;
}
.album_cover {
 padding: 1em;
 height: 100%;
 float: right;
 width: 50%;
}

/* ✅ PHONE: stack photo above text */
@media (max-width: 700px){
  .table{
    flex-direction:column;
    width:95%;
    gap:10px;
  }

  .column{
    padding:10px 0;
    text-align:center !important; /* overrides your inline text-align:right */
  }

  img{
    max-width:100%;
    margin:0 auto; /* center the image */
  }
}

/* Contact form sizing */
form input[type="text"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    max-width: 600px;   /* roughly 2x a default input */
    box-sizing: border-box;
    padding: 0.5em;
    font-size: 1rem;
}
form textarea {
    resize: vertical;
}
label, button {
  display: block;
  margin-top:1em;
}

.success, .error {
  color: #fff;
  padding: 2em;
  margin: 2em;
}
.success {
  background-color: #073d0e;
}
.error {
  background-color: #540b15;
}

.visually_hidden{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.photoshoot_signup_table{
  margin:0 auto;
  text-align:center;
}

.photoshoot_submit{
  display:block;
  margin:1em auto;
  padding:.75em 1.5em;
  border:none;
  border-radius:8px;
  background:#0d6efd;
  color:#fff;
  font-size:1rem;
  font-weight:bold;
  cursor:pointer;
  transition:background .2s ease,transform .1s ease;
}

.photoshoot_submit:hover{
  background:#0b5ed7;
}

.photoshoot_submit:active{
  transform:scale(.98);
}

/* =========================
   CSS-only Lightbox (:target)
   ========================= */

.grid-item{ position:relative; } /* needed for scroll-margin + anchor */

.grid-item{ scroll-margin-top: 90px; } /* optional: adjust for sticky headers */

/* opener link wraps the thumbnail */
.popup_open{
  display:block;
  line-height:0;
  text-decoration:none;
  color:inherit;
}

/* overlay container (hidden until targeted) */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:999999;
}
.lightbox:target{ display:block; }

/* black backdrop */
.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.92);
  cursor: zoom-out;
}

/* panel centering */
.lightbox__panel{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

/* big image */
.lightbox__img{
  max-width: min(100vw - 36px, 1600px);
  max-height: calc(100vh - 36px);
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}

/* clicking image closes */
.lightbox__img_link{
  display:inline-block;
  line-height:0;
  cursor: zoom-out;
}

/* close button */
.lightbox__close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:2;

  width:44px;
  height:44px;
  border-radius:999px;

  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.15);
  color: rgba(0,0,0,.85);

  display:flex;
  align-items:center;
  justify-content:center;

  text-decoration:none;
  font: 900 18px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.lightbox__close:hover{ background: rgba(255,255,255,.95); }

/* prevent background scrolling while open (works in modern browsers) */
body:has(.lightbox:target){
  overflow:hidden;
}



/*Responsive Design - album cover on album page stacked or not*/
@media (max-width:700px){
 .album_content {
  display: inline-block;
  width: 100%;
 }
 .album_cover {
  display: inline-block;
  float: left;
  width: 100%;
  margin-top: 0px;
 }
}