/* ==========================================================================
   Lost Control — shared stylesheet
   Originally extracted from lostcontrol/index.html.
   NOTE: url() paths are relative to this file (assets/css/), so image
   references use ../images/... instead of ../assets/images/...
   ========================================================================== */

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { min-height: 100%; }
body { margin: 0; font-family: 'Futura', 'Futura PT', Arial, sans-serif; }

:root{
  --header-h: 84px;
  --footer-h: 84px;
  --pad: clamp(16px, 2.5vw, 28px);
  --pink: #ff7fcf;
  --dark-pink: #b11f59;
}

/* Page layout */
body{
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #000;
}

header{
  height: var(--header-h);
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 var(--pad);
}

.logo-ylc{
  height: 40px;
  width: auto;
  max-width: 70vw;
  display: block;
}
a:hover .logo-ylc{
  content: url('../images/logos/tec-website-logo-lostcontrol-hover-ff7fcf.svg');
}

.header-socials{
  display: flex;
  gap: 14px;
  align-items: center;
}
.header-socials a{
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.header-socials a:hover{ color: var(--pink); }

main{
  flex: 1;
  background: url('../images/backgrounds/tec-website-bg-ylc-bw.jpg') top center no-repeat;
  background-color: #000;
  background-size: cover;
  color: #fff;
  padding: 0;
}

/* --- About Section --- */
#about{
  background: url('../images/backgrounds/tec-website-bg-ylc.jpg') top center no-repeat;
  background-color: #b11f59;
  background-size: cover;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

.about-content{
  max-width: 900px;
  margin: 0 auto;
}

.about-main-photo{
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.about-text h1{
  font-family: "grand-central", serif;
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 52px);
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.about-description{
  color: #fff;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 600px){
  #about{ padding: 2rem 1rem; }
}

/* Section */
.section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.section h1{
  font-family: "grand-central", serif;
  font-weight: 700;
  font-size: 56px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 32px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 1 / 1;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
  line-height: 1;
  padding: 0 1rem;
}

.close-btn:hover {
  color: var(--pink);
}

@media (max-width: 768px){
  .section h1{
    font-size: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
  }
  .close-btn {
    font-size: 2.5rem;
    top: 1rem;
    right: 1rem;
  }
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
  padding-top: 2rem;
  background: #000;
}

.lyrics-container {
  padding: 2rem 1rem 0.5rem;
}

.lyrics-text {
  font-style: italic;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-line;
}

.lyrics-credit {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
}

.footer-socials {
  margin: 1rem 0 0.5rem 0;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.footer-socials a {
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
}

.footer-socials a:hover {
  color: var(--pink);
}

.footer-links {
  margin: 0 0 0.4rem 0;
  color: #aaa;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-links .bullet-separator {
  margin: 0 0.4rem;
  color: #aaa;
}

.footer-copyright {
  margin-bottom: 0.6rem;
}

.footer-padding {
  padding-bottom: 3rem;
}

/* Desktop nav */
.nav-desktop{
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav-desktop a{
  color: #fff;
  text-decoration: none;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-desktop a:hover{ color: var(--pink); }

/* Hamburger / X button */
.menu-btn{
  width: 56px;
  height: 56px;
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.menu-btn:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.icon-bars{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.icon-bars span{
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 220ms ease;
  position: absolute;
  transform-origin: center;
}
.icon-bars span:nth-child(1){ transform: translateY(-8px); }
.icon-bars span:nth-child(2){ transform: translateY(0); }
.icon-bars span:nth-child(3){ transform: translateY(8px); }

/* Morph to X */
body.menu-open .icon-bars span:nth-child(1){ transform: rotate(45deg); }
body.menu-open .icon-bars span:nth-child(2){ transform: scaleX(0); }
body.menu-open .icon-bars span:nth-child(3){ transform: rotate(-45deg); }

/* Full-screen mobile menu overlay */
.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1000ms ease;
  display: grid;
  grid-template-rows: var(--header-h) 1fr;
}
body.menu-open .menu-overlay{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-header{
  height: var(--header-h);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}

.menu-inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 34px;
  padding: var(--pad);
  text-align: center;
}

.menu-links{
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu-links a{
  color: #fff;
  text-decoration: none;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
  font-size: clamp(30px, 7vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.menu-links a:hover{ color: var(--pink); text-decoration: none; }

.menu-social{
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.menu-social a{
  color: #fff;
  font-size: 27px;
  text-decoration: none;
}
.menu-social a:hover{ color: var(--pink); text-decoration: none; }

/* Responsive rules */
@media (max-width: 960px){
  header{ justify-content: space-between; }
  .nav-desktop{ display: none; }
  header > .header-socials{ display: none; }
  .menu-btn{ display: inline-grid; place-items: center; }
}

@media (max-width: 600px){
  .bullet-separator{ display: none; }
  .footer-links a{ display: block; }
  .footer-copyright{ max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* Prevent background scroll when menu is open */
body.menu-open{
  overflow: hidden;
}

/* ==========================================================================
   Photos page — overrides for shared rules
   (scoped via `body.lc-photos` class on the photos page <body>)
   ========================================================================== */
body.lc-photos a:hover .logo-ylc{
  content: url('../images/logos/tec-website-logo-lostcontrol-ro.svg');
}
body.lc-photos main{
  padding: 0 var(--pad);
}

/* ==========================================================================
   Contact page
   ========================================================================== */
#contact{
  background: transparent;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

#contact h1{
  font-family: "grand-central", serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.7rem;
  border: none;
  border-radius: 3px;
  background: #000;
  color: #fff;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color: #aaa;
}

.contact-form textarea{
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn{
  display: inline-block;
  background: #2f0b37;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
  border: 1px solid #fff;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin: 0.5rem auto 0;
  align-self: center;
}

.contact-form .btn:hover{
  background: var(--pink);
  color: #fff;
}

.contact-form .btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

#form-message{
  display: none;
  max-width: 500px;
  margin: 1rem auto 0;
  padding: 1rem;
  color: #fff;
  font-size: 1rem;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
}

@media (max-width: 600px){
  #contact{ padding: 2rem 1rem; }
  .contact-form{ padding: 1.25rem; }
}

/* ==========================================================================
   Shows page
   ========================================================================== */
#shows{
  background: transparent;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

#shows .shows-inner,
#shows > h1,
#shows > table,
#shows > .stage-plot,
#shows > .btn{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#shows h1{
  font-family: "grand-central", serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 2rem;
  letter-spacing: 0.02em;
}

.shows-table{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  border-collapse: collapse;
  color: #fff;
}

.shows-table th,
.shows-table td{
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #333;
  font-size: 1rem;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
}

.shows-table th{
  color: var(--pink);
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.shows-table td a{
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}
.shows-table td a:hover{
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.stage-plot{
  text-align: center;
  margin: 2rem auto 2.5rem;
}

.stage-plot a{ display: inline-block; }

.stage-plot-photo,
.stage-plot img{
  max-width: 100%;
  width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#shows > .btn,
#shows .btn{
  display: inline-block;
  background: #2f0b37;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
  border: 1px solid #fff;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
}

#shows .btn:hover{
  background: var(--pink);
  color: #fff;
}

@media (max-width: 600px){
  .shows-table th,
  .shows-table td,
  .shows-table td a{
    padding: 0.75rem 0.4rem;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Videos page
   ========================================================================== */
#videos{
  background: transparent;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

#videos h1{
  font-family: "grand-central", serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: 0.02em;
}

.videos-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  text-align: left;
}

.video-featured{
  grid-column: 1 / -1;
}

.videos-grid > div > div:last-child{
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: center;
}

.video-responsive{
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 */
  margin-bottom: 0.5rem;
  background: #000;
  border-radius: 4px;
}

.video-responsive iframe{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.spacer-lg{
  min-height: 3rem;
  height: auto;
}

#videos .btn{
  display: inline-block;
  background: #2f0b37;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Futura', 'Futura PT', Arial, sans-serif;
  border: 1px solid #fff;
  transition: background 0.2s, color 0.2s;
  margin-top: 1rem;
}

#videos .btn:hover{
  background: var(--pink);
  color: #fff;
}

@media (max-width: 700px){
  .videos-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 600px){
  #videos{ padding: 2rem 1rem; }
}