/* Fix for flexbox shrinkage caused by sticky footer */
.container, .mixes-grid, .contact-section {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  flex-shrink: 0;
}
/* Sticky footer layout */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
/* Footer stays at bottom */
footer, #site-footer {
  margin-top: auto !important;
}
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin: 15rem 0 0 0;
  padding: 0;
}

@media (max-width: 600px) {
  .photos-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin: 0.5rem 0 0 0;
  }
  .photos-grid img {
    min-height: 120px;
    height: 120px;
  }
}
@media (max-width: 600px) {
  .mixes-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin: 0.5rem 0 0 0;
  }
}

.photos-grid img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  height: 200px;
  display: block;
}
/* Center all page content with responsive horizontal padding */
.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 800px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;700&display=swap');

html, body {
  background: #000000;
  color: #ffffff;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}
/* Responsive Videos Grid */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 3rem;
  column-gap: 2rem;
  margin: 2rem 0;
  padding: 0;
}
.video-item {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.video-item:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.video-thumb {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.video-info {
  padding: 0 1rem 1rem 0;
  text-align: left;
}
.video-title {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  margin: 0.5rem 0 1rem 0;
  color: #fff;
  text-align: left;
  font-weight: 700;
}
.video-desc {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
  text-align: left;
  font-weight: 200;
}
@media (max-width: 600px) {
  .videos-grid {
    grid-template-columns: 1fr !important;
    row-gap: 2rem;
    column-gap: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .video-info {
    padding: 0.7rem;
  }
}
/* Shows List Styles */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin: 5rem 0 1.5rem 0;
}
.show-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 0;
}
.show-poster-wrap {
  position: relative;
  min-width: 500px;
  max-width: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.show-poster {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0;
  display: block;
  background: #222;
}
.show-date-overlay {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #ffffff;
  color: #a1a1a1;
  font-weight: 200;
  font-size: 1.1rem;
  padding: 0.5em 0.9em;
  border-radius: 0;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(45, 40, 40, 0.18);
  z-index: 2;
  text-align: center;
}
.show-date-month {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 0.1em;
  letter-spacing: 0.08em;
}

.show-date-day {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.1em;
}
.show-content {
  flex: 1;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}
.show-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
}
.show-location {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.show-desc {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 2rem;
}
.show-stage-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
}
.show-lineup {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.show-lineup li {
  font-size: 0.98rem;
  color: #eee;
  margin-bottom: 0.7rem;
}
.show-btn {
  display: inline-block;
  background: #222;
  color: #b0b0b0;
  font-weight: 200;
  font-size: 0.95rem;
  padding: 1em 1em 1em 1em;
  border-radius: 0;
  text-decoration: none;
  margin-top: 0.7rem;
  transition: none;
  text-align: center;
  width: auto;
  max-width: 120px;
  box-shadow: none;
  border: none;
}
.show-btn:hover {
  background: #444;
}
@media (max-width: 900px) {
  .show-item {
    flex-direction: column;
    gap: 0;
  }
  .show-poster-wrap {
    min-width: 100%;
    max-width: 100%;
    border-radius: 0;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }
  .show-content {
    padding: 1.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .shows-list {
    gap: 2rem;
    margin: 0.5rem 0 0.5rem 0;
  }
  .show-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .show-location,
  .show-desc,
  .show-stage-name,
  .show-lineup li {
    font-size: 1rem;
  }
  .show-poster-wrap {
    min-width: 100%;
    max-width: 100%;
  }
}
.about-text {
  font-size: 1.23rem;
  line-height: 1.7;
  color: #979797;
}
.about-section {
  margin-top: 12rem;
  gap: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 900px) {
  .container {
    padding-top: 0 !important;
  }
  .container > main > .about-section {
    margin-top: 5rem !important;
  }
  .about-section {
    margin-top: 5rem !important;
    align-items: center !important;
  }
@media (max-width: 900px) {
  .container > main > .contact-section {
    margin-top: 5rem !important;
  }
}
}
@media (max-width: 800px) {
  .about-section {
    flex-direction: column !important;
    gap: 32px !important;
    margin-top: 0.5rem !important;
    align-items: center;
  }
  .about-section img {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
    order: 1;
  }
  .about-text {
    font-size: 1.1rem;
    line-height: 1.6;
    width: 100%;
    order: 2;
  }
@media (max-width: 800px) {
  .contact-section {
    margin-top: 0.5rem !important;
  }
}
}
/* Footer styles */
#site-footer {
  width: 100%;
  color: #fff;
  padding: 32px 0 16px 0;
  text-align: center;
  margin-top: 48px;
  font-family: inherit;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}
.footer-socials {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 0px;
}
.footer-icon {
  display: inline-block;
  margin: 0 12px;
  vertical-align: middle;
  transition: transform 0.2s;
}
.footer-icon i {
  color: #aaa;
  font-size: 20px;
  transition: color 0.2s;
}
.footer-icon svg {
  width: 28px;
  margin-top: -2px;
  height: 28px;
  color: #aaa;
  vertical-align: middle;
  margin-bottom: 20px;
  display: inline-block;
  overflow: visible;
  transition: color 0.2s;
  transform: scale(1.6);
}
.footer-icon:hover svg {
  color: #fff;
}
.footer-icon:active svg,
.footer-icon:focus svg {
  color: #aaa;
}
.footer-icon:hover i {
  color: #fff;
}
.footer-icon:active i,
.footer-icon:focus i {
  color: #aaa;
}
.footer-error {
  color: #ff5555;
  font-size: 1em;
  margin-top: 12px;
}
.show-date-overlay.past-show::before {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transform: rotate(-45deg) translateY(-50%);
  z-index: 3;
  pointer-events: none;
}
.show-date-overlay.future-show .show-date-month,
.show-date-overlay.future-show .show-date-day {
  color: #000 !important;
}
/* Contact Page Layout */
.contact-section {
  display: flex;
  gap: 5rem;
  margin-top: 12rem;
  margin-bottom: 4rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column !important;
    margin-top: 5rem !important;
    gap: 1.5rem;
    margin-bottom: 1rem;
    align-items: center;
  }
  .contact-image {
    order: 1;
    width: 100%;
  }
  .contact-form {
    order: 2;
    width: 100%;
    padding: 1rem 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-image img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
    display: block;
  }
}
.contact-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  background: transparent;
}
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: transparent;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.contact-form h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
.contact-form label {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 0.3rem;
}
.contact-form input,
.contact-form textarea {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.8rem;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  font-family: inherit;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #444;
}
.contact-form button {
  background: #222;
  color: #b0b0b0;
  border: none;
  border-radius: 0;
  padding: 1em 1em 1em 1em;
  font-size: 0.95rem;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-weight: 200;
  text-align: center;
  width: auto;
  max-width: 120px;
  margin-top: 0.7rem;
  transition: background 0.18s;
}
.contact-form button:hover {
  background: #444;
}
@media (max-width: 900px) {
  .container {
    overflow-x: hidden;
  }
  .contact-section {
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem !important;
    overflow-x: hidden;
  }
  .contact-image img {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .contact-form {
    width: 100%;
    padding: 1.5rem 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
  }
}
/* Justified Photo Grid Styles */
.photo-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  justify-content: flex-start;
  align-items: stretch;
}
#photo-grid {
  margin-bottom: 4rem;
}

.photo-row li {
  position: relative;
  margin: 0;
  padding: 0;
}

.photo-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.2s;
  cursor: pointer;
  outline: none;
}

.photo-row img:focus {
  box-shadow: 0 0 0 3px #fff2;
}

.photo-row img:hover {
  transform: scale(1.04);
}

.photo-caption-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1rem;
  padding: 0.5em 1em;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

.photo-row li:hover .photo-caption-overlay,
.photo-row li:focus-within .photo-caption-overlay {
  opacity: 1;
}

.photo-lightbox {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  outline: none;
}

.photo-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.32);
  display: block;
}

.photo-lightbox div {
  position: absolute;
  bottom: 3vw;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1.2rem;
  padding: 0.7em 2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  text-align: center;
  max-width: 80vw;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .photo-row {
    min-height: 220px;
  }
}
@media (max-width: 800px) {
  .photo-row {
    min-height: 160px;
  }
}
/* Futuristic animated background for about page */
#futuristic-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}
body, html {
  overflow-x: hidden;
}
.container, .pf-header, main, footer, .about-section {
  position: relative;
  z-index: 1;
}
/* Move shows content lower */
.container main {
  margin-top: 6rem;
}
@media (max-width: 800px) {
  .container main {
    margin-top: 0.5rem;
  }
}
/* Move shows content lower */
.shows-list {
  margin-top: 40px;
}