* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
    background-color: black;  /* <-- add this line */
}

.hero-container {
  width: 100vw;
  position: relative;

}




.background-image {
  width: 100%;
  height: auto;
  display: block;
}


:root { --gold: #fbcc3c; }

.hero-text-section {
  position: relative;
  width: 100%;
  height: 50vh;              /* adjust for how tall you want the top area */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* aligns text block to the right side */
  background-color: none;   /* matches your page background */
  padding: 0 5vw;
  z-index: 10004;            /* above background but below overlays if needed */
}

.hero-text-wrapper {
  max-width: clamp(40ch, 50vw, 70ch);
  text-align: right;
  margin-top: 20%;
}


.hero-text-comment {
  margin: 0;
  color: #ffffff;
  font: 600 clamp(1rem, 2.4vw, 2.5rem)/1.5 Inter, sans-serif;
  opacity: .7;
}

.hero-text-title {
  margin: .6rem 0 .6rem 0;
  color: var(--gold);
  font: 300 clamp(2rem, 3.8vw, 4rem)/1.1 Inter, sans-serif;
  letter-spacing: .5px;
}


.hero-text-copy {
  margin: 0;
  color: #fff;
  font: 400 clamp(1rem, 1.6vw, 1.75rem)/2.0 Inter, sans-serif;
  opacity: .9;
}

/* Mobile adjustment */
@media (max-width: 800px) {
  .hero-text-section {
    height: 45vh;
    margin-top: 16%;
    justify-content: right;
    text-align: center;
    
  }
}






.top-info-img {
  position: absolute;   /* overlay it on the background */
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10001;       /* above background, below your 10001+ text if needed */
  opacity: 0.9;
}


.top-layer-text h3 .word {
  display: inline-block;
  margin-right: 2rem; /* adjust the space between */
}



.top-layer-photo-one {
  width: 700px;
  max-width: 40vw;     /* shrink on small screens */
  height: auto;
  position: absolute;   /* tie it to the same container as the image */
  top: 33%;             /* adjust vertical placement */
  left: 40%;            /* adjust horizontal placement */
  z-index: 10002;       /* higher than .top-layer */
  opacity: 1.0;             /* make text transparent (0.0 = invisible, 1.0 = fully visible) */
}


.phone-photo {
  width: 500px;
  max-width: 36vw;
  height: auto;
  position: absolute;
  top: 42.5%;
  left: 37%;
  z-index: 10002;

  opacity: 1.0;                 /* start semi-transparent */
  transform: translateY(14px);
 
}

  @keyframes phoneIn {
 
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1.0; transform: translateY(0); }
}


/* Full-bleed overlay layer that spans the viewport */
.lyric-band {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* centers the band itself */
  width: 100vw;                /* not limited by inner hero content */
  height: 100%;
  pointer-events: none;        /* keep hero clickable if needed */
  z-index: 10002;
}

/* The text block, anchored near the lower-right of the hero */
.lyric-block-text {
  position: absolute;
  top: 89%;
  right: 6vw;                  /* controls right margin */
  transform: translateY(-50%); /* vertical centering around top% */
  max-width: min(70ch, 55vw);  /* wide, but stays readable */
  color: #fff;
  font-family: Courier, monospace;
  font-weight: 600;
  font-size: clamp(.9rem, 1.6vw, 2.1rem);
  line-height: 1.3;
  text-align: left;
}

/* (Optional) tighten on small screens */
@media (max-width: 800px) {
  .lyric-block-text {
    right: 5vw;
    max-width: 80vw;
  }
}






.heart-ache-mural {
  width: 1200px;
  max-width: 100vw;
  height: auto;
  position: absolute;
  top: 100%;
  left: 18%;
  z-index: 10;
}




.top-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10000;  /* On top of overlays and text */
  pointer-events: none;
}


.top-layer-text {
  position: absolute;   /* tie it to the same container as the image */
  top: 61%;             /* adjust vertical placement */
  left: 2.5%;            /* adjust horizontal placement */
  z-index: 10001;       /* higher than .top-layer */
  color: white;
  font-family: sans-serif;
  font-size: 7vw;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
  line-height: .4;         /* reduce line spacing (default ~1.5) */
  opacity: 0.3;             /* make text transparent (0.0 = invisible, 1.0 = fully visible) */
}

.highlight-word {
  color: #ffffff;       
  font-weight: 100;     /* make it stand out */
  opacity: .30;          /* slightly transparent if you like */
 font-size: 25vw;
}




.overlay-text h1{
  position: fixed;
  top: 5vh;
  left: 5vw;
  z-index: 10001;
  color: white;
  font-size: clamp(3rem, 5.5vw, 7rem);
  font-weight: 700;
  font-family: Inter, sans-serif;
  letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

/* This rule set is from the page2-styles.css
.overlay-text h1 {
  position: fixed;
  top: 5vh;
  left: 5vw;
  color: white;
  font-size: clamp(3rem, 5.5vw, 7rem);
  font-family: Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 0 6px rgba(0,0,0,0.6);

}
*/




.overlay-image {
  position: fixed;
  width: 40vw;
  height: auto;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity ease; /* no duration here */     
}

.overlay-image.visible {
  opacity: 1;
}

/* Slow down image1’s fade */
#overlayImage1 {
  position: fixed;
  top: 40vh;   /* lowers it from the top (try 10–30vh) */
  left: 10vw;  /* optional – adjust horizontal placement */
  transition: opacity 8s ease-in;  /* adjust to taste */
}


#overlayImage2 {
  position: fixed;
  top: 0vh;
  left: 0vw;
  width: 100vw;
  z-index: 9;
  opacity: .3; /* 50% visible — adjust as needed */
}

#phonePhoto {
  transition-duration: 14s; /* slowest fade */
  transition-delay: 5s; 
}

.content-section {
 margin-top: 20vh;
 position: relative;
 background-image: url('images/content-section-mist-2.png'); /* or whatever your image is named */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
  z-index: 9998;            /* one more than overlay z-index */
  padding: 5vw 0;
}

.content-wrapper {
  max-width: 1400px; 
  height: 600px;
  margin: 30% 0 5% 55%;
  padding: 0 5% 0 0;
  font-family: Courier;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #000;
}

.content-wrapper img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  display: block;
}

/* Section-2 version — normal flow, NOT overlayed */

.first-music-info {
  margin-top: 0rem;       /* space from the image */
  width: 100%;
  display: block;
  position: relative;     /* anchor for inner block if needed */
}

.first-music-info-block-text {
  color: #fff;
  font-family: Courier, monospace;
  font-weight: 600;
  font-size: clamp(.9rem, 1.6vw, 2.1rem);
  line-height: 1.3;
  text-align: left;
  max-width: 70ch;        /* readable width */
  padding: 1rem 0;        /* breathing room */
}

.first-music-info-block-text img {
  max-width: 50%;
  height: auto;
  display: block;
  margin-top: 1.5rem; /* optional, looks nice */
}


/* EP PANEL WRAPPER — CLEAN, RESPONSIVE, GRID-BASED */



.ep-row {
  display: grid;
  grid-template-columns: auto 1fr;   /* cover on left, flexible text on right */
  column-gap: .5rem;
  align-items: start;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);

  padding: 1.6rem 1.9rem;
  margin-top: 2rem;

  width: 100%;
  box-sizing: border-box;
}

.ep-art-wrapper {
  margin-left: .25rem;     /* try .5rem, 1rem, 1.5rem, etc. */
}

/* EP COVER IMAGE */
.ep-cover {
  width: clamp(130px, 28vw, 300px);
  height: auto;
  border-radius: 3px;
  display: block;
}

/* EP TITLE */
.ep-title {
  margin-top: 0.5rem;
  font-family: Courier, monospace;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  color: #fbcc3c;
  text-align: left;
}

/* TRACKLIST COLUMN */
.ep-tracklist {
  min-width: 0;                       /* allows text to shrink without overflow */
  font-family: Courier, monospace;
  color: #fff;
  font-size: clamp(.9rem, 1.3vw, 1.2rem);
  line-height: 1.28;

  display: flex;
  flex-direction: column;
}

/* TRACKLIST TITLE */
.ep-tracklist h3 {
  margin: 0 0 .4rem 0;
  color: #fbcc3c;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* FORCED WRAPPING (no more overflow) */
.ep-tracklist p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* —————————————
   RESPONSIVE TUNING
————————————— */

@media (max-width: 800px) {
  .ep-row {
    column-gap: 0.9rem;
    padding: 1.4rem 1.6rem;
  }

  .ep-cover {
    width: clamp(130px, 28vw, 300px);
  }
}

/* Keep the text column from collapsing into a few pixels */
.ep-row {
  /* cover | text (text has a hard minimum so it never becomes microscopic) */
  grid-template-columns: auto minmax(240px, 1fr);
}

/* Let text wrap normally (not between every character) */
.ep-tracklist {
  min-width: 0;                   /* allow the column to shrink, but... */
}

.ep-tracklist p {
  overflow-wrap: break-word;      /* only break long words when needed */
  word-break: normal;             /* no per-character breaking */
  white-space: normal;
}

/* Give the text more room at tighter widths by shrinking the cover */
@media (max-width: 800px) {
  .ep-cover { width: clamp(100px, 30vw, 240px); }
  .ep-tracklist { font-size: clamp(.85rem, 1.2vw, 1.05rem); }
}

@media (max-width: 560px) {
  .ep-cover { width: clamp(88px, 20vw, 200px); }
  .ep-row   { column-gap: 0.7rem; padding: 1.1rem 1.2rem; }
}

/* Make tracklist text smaller on medium screens */
@media (max-width: 900px) {
  .ep-tracklist {
    font-size: clamp(.75rem, 1.1vw, 1rem);
    line-height: 1.22;
  }
  .ep-tracklist h3 {
    font-size: clamp(.9rem, 1.5vw, 1.3rem);
  }
}

/* Make tracklist even smaller on mobile */
@media (max-width: 600px) {
  .ep-tracklist {
    font-size: clamp(.65rem, 1vw, .9rem);
    line-height: 1.18;
  }
  .ep-tracklist h3 {
    font-size: clamp(.8rem, 1.3vw, 1.1rem);
  }
}




.third-section {
  margin-top: 100vh;
  position: relative;
  background-color: black;
  z-index: 10002;
  padding: 5vw 0 0rem;   /* top spacing, bottom padding restored */


}


.third-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* narrower text column, wider image */
  align-items: start;
  gap: 3rem;                        /* space between columns */
  max-width: 1400px;
  height: auto;        /* add this */
  margin: 0 auto 0;
  padding-bottom: 0;       /* just to be explicit */
  color: #3658c3;

  /* your text style additions */
  font-family: Courier;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
}

.third-wrapper img {
  max-width: 100%;
  display: block;
}


/* bottom image strip where the footer will go one day */




.third-col.left {
  color: #ffffff;   /* white text */
  padding: 0 0 0 10%;
}
.third-title {
  color: white;
  font-family: inter, sans-serif;
  font-size: clamp(1.5rem, 2.75vw, 7rem);
  font-family: Inter, sans-serif;
  letter-spacing: 0.04em;

}

@media (max-width: 800px) {
  .third-wrapper {
    grid-template-columns: 1fr;  /* single column */
    height: auto;                /* let it grow naturally */
    gap: 2rem;                   /* slightly smaller gap */
    padding: 0 2rem 0 0;     /* no extra bottom padding on mobile */
  }

  .third-col.right{
    width: 100%;                 /* make image scale to container width */
    padding: 0 0 0 10%;
 
  }
}



.concert-info-wrapper{    
  display: grid;
  max-width: 2200px;
  width: 100%;
  margin: 0rem auto 0rem;   /* top | horiz | bottom */
  padding: 0 2rem;         /* inner gutter instead of left offset */
  background-color: #666666;
  border: 1px dashed #ffffff;
  position: relative;
  z-index: 10003;
}

.two-column-wrapper{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;          /* center the grid, not push it right */
  padding: 0 2rem 0 0;         /* even gutter */
  margin-bottom: 4rem;   /* add generous space below all rectangles */
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #3658c3;
  background-color: #666666;
}




/* Make sure the image scales with the viewport */
.two-column-wrapper .col.right img {
  width: 100%;        /* image fills its column */
  height: auto;       /* preserves aspect ratio */
  display: block;     /* removes stray bottom spacing */
  border-radius: 6px; /* optional, adds soft edges */
}

/* Adjust stacking behavior for mobile */
@media (max-width: 800px) {
  .two-column-wrapper {
    grid-template-columns: 1fr;   /* stack left + right vertically */
    gap: 2rem;
  }

  .two-column-wrapper .col.right img {
    width: 90%;                   /* a bit smaller on mobile */
    margin: 0 auto;               /* center the image */
  }
}





.four-column-wrapper{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:2rem;
  max-width:1200px;
  margin:2rem auto 4rem;    /* sits below the 2-col */
  padding:0 2rem;
}

.two-column-wrapper .col,
.four-column-wrapper .col{
  background:#000; color:#c7c6c6; /* for visibility; remove if not needed */
}

.two-column-wrapper .col {
  padding: 1.25rem 1.75rem;                   /* inner space inside black boxes */
  font-size: clamp(1rem, 1.5vw, 1.25rem);    /* responsive body text */
  line-height: 1.4;                            /* nicer stacking with <br> lines */
  border-radius: 4px;                          /* optional */
}


.highlight2-word {
   color:#fbcc3c;       
  font-weight: 300;     /* make it stand out */
  opacity: .90;          /* slightly transparent if you like */
 font-size: 3vw;
}

@media (max-width: 800px) {
  .two-column-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}


.concert-info-title{
  max-width: 1400px;
  margin: .5rem auto;   /* center the title block */
  padding: 2rem 2rem;      /* remove left pad hack */
  text-align: center;      /* center the text */
  font: 600 clamp(2.0rem, 3vw, 4.0rem)/1.1 Inter, sans-serif;
  color: #fff;
  opacity: 1;
}


.col {
  position: relative; /* anchor for the overlay */
}

.sold-out {
  position: absolute;
  top: 0.2rem;          /* adjust to place over desired text */
  right: 0.5rem;        /* or left: 0.5rem */
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.3em 0.7em;
  border-radius: 4px;
  transform: rotate(-10deg); /* optional “stamp” look */
  pointer-events: none;      /* prevents interfering with text below */
  z-index: 5;
}

.fourth-end-wrapper {
  max-width: 1400px;
  margin: 0 auto;       /* <-- centers the entire wrapper */
  padding: 0;


}




.fourth-end-wrapper img {
  max-width: 90%;
  height: auto;
  margin: 4rem auto;   /* <-- this centers the image horizontally */
  display: block;
}

.fourth-end-wrapper p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  line-height: 1.5;
  color: #c7c6c6;
  margin: 0;   /* keeps it tight */
  text-align: center;  /* optional: looks great for footer-style lines */
}


/* Panel */
.contact-section {
  position: relative;          /* create a stacking context */
  z-index: 10010;              /* higher than your overlays */
  display: grid;
  place-items: center;
  padding: 6vh 4vw;
  background-color: #000;      /* black background */
}
.contact-panel {
  width: min(920px, 100%);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  padding: 2rem clamp(1rem, 3vw, 2.25rem);
  color: #fff;
  box-sizing: border-box;
}

/* Title */
.contact-title {
  margin: 0 0 1rem 0;
  font-family: Courier, monospace;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: .5px;
  color: #f1b80d;
}

/* Form layout */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem clamp(.75rem, 2vw, 1.25rem);
  font-family: Courier, monospace;
}
.contact-form label {
  display: grid;
  gap: .45rem;
}
.contact-form label.full {
  grid-column: 1 / -1;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #fff;
  padding: .85rem 1rem;
  font: 600 1rem/1.3 Courier, monospace;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.55); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fbcc3c;
  box-shadow: 0 0 0 3px rgba(251,204,60,0.2);
  background: rgba(255,255,255,0.08);
}

/* Field labels */
.contact-form label > span {
  font-size: .95rem;
  color: rgba(255,255,255,0.85);
}

/* Button */
.contact-btn {
  grid-column: 1 / -1;
  justify-self: start;
  background: #f1b80d;
  color: #000;
  font: 700 1rem/1 Courier, monospace;
  padding: .9rem 1.2rem;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(251,204,60,0.25);
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}
.contact-btn:hover { filter: brightness(1.25); box-shadow: 0 8px 32px rgba(253, 234, 176, 0.32); }
.contact-btn:active { transform: translateY(1px); }

/* Honeypot (hidden) */
.hp { position: absolute; left: -9999px; }

/* Responsive */
@media (max-width: 720px) {
  .contact-form { grid-template-columns: 1fr; }
  .contact-btn { justify-self: stretch; text-align: center; }
}

/* Added last minute to fix layout issue */

.contact-form{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
}

.contact-form label{
  display: flex;           /* puts label text above input */
  flex-direction: column;
  font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea{
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form .hp{         /* honeypot stays invisible to users */
  position: absolute;
  left: -9999px;
}

