*{
    /*outline: 1px solid red;*/
    box-sizing: border-box;
}

body{
  font-family: "Chivo Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: #000;
 margin: 0;
 padding: 0;
}
.img-full {
  width: 100%;
  display: block;
}

p{
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #F599B1;
}  

h1{
    font-family: "leather", serif;
    color: #F599B1;
    font-weight: 400;
    font-style: normal;
    }
h2{
  font-family: "Chivo Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

h3{ 
   font-family: "leather", serif;
    color: #F599B1;
    font-weight: 100;
    font-style: normal;
}

ul{
  list-style: none;   
  padding: 0;         
  margin: 0;          
}

/* Base reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* === LARGE PINK TOP SECTION === */
.top-section {
  position: relative;
  background-color: #F599B1;
  height: clamp(400px, 60vh + 200px, 1200px); 
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.header-image {
  max-width: clamp(150px, 30vw + 100px, 600px);
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: 5vh;
}

/* === MENU BUTTON === */
.menu-toggle {
  position: fixed; /* stays on screen */
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F599B1;
  cursor: pointer;
  z-index: 1001;
  padding: 2.5vw;
  border-radius: 25%; 
  background-color: rgba(245, 153, 177, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); 
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: 
    top 0.4s ease, 
    left 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
    padding 0.4s ease,
    backdrop-filter 0.4s ease, 
    background-color 0.4s ease;
  position: fixed;
}
.menu-toggle.fade-out {
  opacity: 0;
}

.menu-toggle.fade-in {
  opacity: 1;
}
.menu-toggle.scrolled {
  left: 5vw;
  transform: translateX(0);
  top: 1.35rem;
  padding: 2vw;
  border-radius: 25%; /* more rounded for fuzzy look */
  background-color: rgba(245, 153, 177, 0.6); /* semi-transparent pink */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px); 
}

.menu-toggle.scrolled::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 25%;
  filter: blur(6px);
  background-color: rgba(245, 153, 177, 0.3);
  z-index: -1; /* behind the button */
}

.menu-icon {
  width: 10vw;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.menu-toggle.scrolled .menu-icon {
  transform: scale(0.9);
  transition: transform 0.4s ease;
}


/* === MENU OVERLAY === */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.menu-close {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  right: 2vw;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0; /* start hidden */
  transition: opacity 0.4s ease;
  z-index: 1002; /* above overlay content */
}

.menu-overlay.active .menu-close {
  opacity: 1; /* fade in when menu opens */
}


.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay ul {
  font-family: "Chivo Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  list-style: none;
  text-align: center;

}

.menu-overlay li {
  margin: 1.5rem 0;
}

.menu-overlay a {
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.menu-overlay a:hover {
  color: #F599B1;
}

/* === MAIN CONTENT === */
main{
  padding: 2rem;
}

.cormac{
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.cormac img{
  width: 100%;
}
.cormac img:nth-child(1){
  display: none;
}

.cormac h1{
  font-size: clamp(0.5rem, 0.5rem + 4vw, 6rem);
}

.mccarthy {
  margin-top: clamp(3rem, 5rem + 1vw, 7rem);
}


.mccarthy h3{
  font-size: clamp(0.1rem, 0.1rem + 4vw, 5.5rem);
}

.mccarthy p {
 font-style: italic;
 font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
 margin-bottom: 0.5rem;

}

.dg{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.dg img:nth-child(1){
  width: clamp(200px, 50vw, 650px);
  margin: auto;
  transform: scaleY(-1);
  padding-bottom: clamp(2rem, 3rem + 1vw, 5rem);
  margin-bottom: -.5rem;
}

.dg h1{
  text-align: center;
  font-size: clamp(1.25rem, 1.25rem + 4vw, 7rem);
  margin-bottom: 1rem;
}

.dg img:nth-child(3) {
  width: clamp(250px, 60vw, 900px); 
  display: block;
  margin: 0 auto;
  transition: all 1s ease;
}

.dg img:nth-child(3):hover {
  transform: scale(1.05);            
  image-rendering: pixelated;         
  filter: blur(2px) contrast(100%) saturate(150%); 
  cursor: pointer;
}

.dg h3{
  text-align: center;
  font-size: clamp(1rem, 1rem + 4vw, 6.5rem);
  margin-top: -1.5rem;
  margin-bottom: .5rem;
}

.dg h3 a.dg-link {
  text-decoration: none;
  color: #F599B1;
  transition: all 1s ease;
}

.dg h3 a.dg-link:hover {
  filter: contrast(200%) saturate(150%);
  transform: scale(1.1);
  text-shadow:
    1px 1px #F599B1,
   -1px -1px #F599B1,
    1px -1px #F599B1,
   -1px 1px #F599B1;
  cursor: pointer;
}


.dg img:nth-child(5){
  width: clamp(200px, 50vw, 650px);
  margin: auto;
  transform: scaleX(-1);
  margin-bottom: clamp(-6rem, -4.5rem + -0.5vw, -3rem);
}

.dg a {
    display: block;   
    width: 100%;       
}

.dg a img.middle-image {
    width: clamp(250px, 60vw, 900px);
    display: block;
    transition: all 2s ease;
    transform: none;
}

.dg a img.middle-image:hover {
    transform: scale(1.05); 
    image-rendering: pixelated;
    filter: blur(2px) contrast(200%) saturate(150%);
    cursor: pointer;
}
.dg-anim{
 
  display: flex;
  white-space: nowrap;
  animation: scrollDG 15s linear infinite;
  /*font-size: clamp(1rem, 1rem + 4vw, 6.5rem);*/
  
  position: absolute;
  top: 36%; /* adjust to control where it sits behind cowboy */
  left: 0;
  width: max-content;
  min-width: 200%;
  justify-content: space-around;
  pointer-events: none;
  z-index: -100;
}
.dg-anim p{
  font-size: clamp(1rem, 2.5rem + 2.5vw, 18rem);
  color: #8BC7DE;
}

@keyframes scrollDG {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}


.utah1 img{
  width: clamp(250px, 65vw, 650px);
  display: block;
  margin: 0 auto; 
  margin-top: clamp(5rem, 8rem + 1vw, 12rem);
  margin-bottom: clamp(5rem, 8rem + 1vw, 12rem);
}

.videos{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.videos a.video-link img {
  width: 100%;                              
  max-width: clamp(250px, 50vw, 950px);      
  display: block;
  margin: 0 auto;
  transition: all 1s ease;
}

.videos p{
 text-align: center;
 font-size: clamp(1.25rem, 1.25rem + 4vw, 7rem);
 margin-top: 1rem;
 color: #F599B1;
}

.videos a.video-link {
  display: block;                
  text-align: center;
  text-decoration: none;         
  color: #F599B1;             
  transition: all 1s ease;     
}

.videos a.video-link p {
  font-size: clamp(1.25rem, 1.25rem + 4vw, 7rem);
  margin-top: 0.5rem;
  transition: all 2s ease;
}

.videos a.video-link:hover img,
.videos a.video-link:hover p {
  transform: scale(1.05);                     
  filter: blur(2px) contrast(120%) saturate(150%); 
  cursor: pointer;
}

.merch {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(4rem, 6rem + 1vw, 9rem);
}

/* === Moving MERCH text background === */
.merch-text {
  display: flex;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
  font-size: clamp(1rem, 1rem + 4vw, 6.5rem);
  
  position: absolute;
  top: 5%; 
  left: 0;
  width: max-content;
  min-width: 200%;
  justify-content: space-around;
  pointer-events: none;
}
.merch-text h1{
  color: #8BC7DE;
}

@keyframes scrollText {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

/* === Cowboy image overlay === */
.cowboy-link {
  z-index: 2;
}

.cowboy {
  width: clamp(150px, 40vw, 450px);
  transition: transform 1s ease, filter 1s ease;
}

.cowboy:hover{
    transform: scale(1.05); 
    image-rendering: pixelated;
    filter: blur(2px) contrast(200%) saturate(150%);
    cursor: pointer;
}

/* === Column under cowboy === */
.column {
  margin-top: clamp(-3rem, -20px + -0.2vw, 0);
  width: clamp(300px, 50% + 10vw, 900px);
  z-index: 1;
}

.talk2{
  margin-top: clamp(5rem, 8rem + 1vw, 12rem);
}

.talk2 h1{
  font-size: clamp(1.75rem, 1.75rem + 4vw, 7.5rem);
  text-align: center;
}

.talk2 a img {
  width: 100%;                                
  max-width: clamp(350px, 55vw, 950px);
  display: block;
  margin: 0 auto;
  transition: transform 2s ease, filter 2s ease;
}

.talk2 a img:hover{
    transform: scale(1.05); 
    image-rendering: pixelated;
    filter: blur(2px) contrast(200%) saturate(150%);
    cursor: pointer;
}

/*==ABOUT PAGE==*/
div.about-mobile{
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  margin-top: 10rem;
  margin-bottom: 10rem;

  }

  .about-mobile h1:nth-child(1){
    grid-column-start: 1;
    grid-column-end: 2;
    position: sticky;
    top: 10rem;
    align-self: start;
    writing-mode: vertical-lr;
    color: #8BC7DE;
    font-size: clamp(3rem, 10vw, 8rem);
    padding-top: .65rem;
  }

  .about-mobile p:nth-child(2){
    grid-column-start: 2;
    grid-column-end: 3;
    text-align: justify;
    color: #F599B1;
    font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
  }
  .about-mobile img:nth-child(3){
    grid-column-start: 3;
    grid-column-end: 4;
    position: sticky;
    top: 10rem;
    width: clamp(1rem, 1rem + 1vw, 4rem);
    justify-self: center;
    padding-top: .75rem;
  }

/* === ABOUT PAGE MOVING BACKGROUND === */
.about-bg {
  position: relative;
  /*overflow: hidden; */
}

/* Background layer */
.about-bg::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;

  background-image: url("images/ezmobile.jpg");
  background-size: auto;
  background-repeat: repeat-x;
  background-position: 0 50%;
  
  /*filter: blur(6px);          */
  /*opacity: 0.35;               */
  
  animation: bgScroll 45s linear infinite;

  z-index: -2;
  pointer-events: none;
}

/* Dark overlay */
.about-bg::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.55); /* darken */

  z-index: -1;
  pointer-events: none;
}

@keyframes bgScroll {
  from { background-position: 0 50%; }
  to   { background-position: 200% 50%; }
}

/*== MUSIC PAGE ==*/

.discog-back {
  background-color: #F599B1; 
  padding: 10rem 0 4rem 0; /* pink starts at top, no extra padding at bottom */
}

.discog-content {
  width: clamp(250px, 80vw, 900px);
  margin: 0 auto;
  margin-bottom: 4rem; /* space between content and footer */
}

.discog-top {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.discog-top p {
  color: #000;
  font-style: italic;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 7rem);
  text-align: center;
  padding-bottom: 0.5rem;
}

.discog-top a img {
  width: clamp(250px, 80vw, 900px);
  display: block;
  margin: 0 auto;
  transition: all 1s ease;
}

.discog-top a img:hover {
  filter: blur(2px) contrast(200%) saturate(150%);
}

.discog-top h1 {
  color: #000;
  text-align: center;
  font-size: clamp(1rem, 1rem + 7vw, 6.5rem);
  padding: 2rem 0;
}

.dgasongs {
  display: grid;
  grid-template-columns: 4fr 1fr;
}

.dg-tracklist {
  font-family: "leather", serif;
  color: #000;
  font-weight: 100;
  font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
  text-align: left;
}

.dg-track-number {
  font-family: "leather", serif;
  color: #000;
  font-weight: 100;
  font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
  text-align: right;
}

.dg-tracklist li,
.dg-track-number li {
  line-height: 3.6;
  margin-bottom: 1.5rem;
}

/*== CHROME ANGEL ==*/

.chrome-back {
  background-color: #fffef3;
  padding: 2rem 0 4rem 0;
}

.chrome-content {
  width: clamp(250px, 80vw, 900px);
  margin: 0 auto;
  margin-bottom: 4rem;
}

.chrome-top {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

/* ------- TITLE ------- */

.chrome-top h1 {
  color: #8BC7DE;
  font-size: clamp(1rem, 1rem + 7vw, 6.5rem);
  padding-bottom: 3rem;
}

/* ------- IMAGE + VERTICAL TEXT ------- */

.chrome-image-wrap {
 position: relative;
 display: inline-block;
}

.chrome-image-wrap img {
  display: block;
  width: clamp(250px, 80vw, 900px);
  margin: 0 auto;
  transition: all 1s ease;
}

.chrome-image-wrap img:hover {
  filter: blur(2px) contrast(200%) saturate(150%);
}

.chromedate {
  margin-top: 2rem;
}

.vertical-series {
  position: absolute;
  right: -2.5rem;
  top: 0;                       
  
  writing-mode: vertical-rl;    

  color: #8BC7DE;
  font-style: italic;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 7rem);
}
/* ------- DATE + TITLE ------- */

.chromedate {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #8BC7DE;
  text-align: center;
  font-size: clamp(1rem, 1rem + 1vw, 4.5rem);
}

.chrometitle {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #8BC7DE;
  text-align: center;
  font-size: clamp(1rem, 1rem + 2vw, 5.5rem);
  padding-bottom: 3rem;
}


/* ------- TRACKLIST ------- */

.chromesongs {
  display: grid;
  grid-template-columns: 4fr 1fr;
}

.chrome-tracklist,
.chrome-track-number {
  font-family: "leather", serif;
  color: #8BC7DE;
  font-weight: 100;
  font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
}

.chrome-tracklist {
  text-align: left;
}

.chrome-track-number {
  text-align: right;
}

.chrome-tracklist li,
.chrome-track-number li {
  line-height: 3.6;
  margin-bottom: 1.5rem;
}

/* ===== SINGLES CONTAINER ===== */
.singles {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 5rem;  /* space between singles */
}

/* ------- SINGLE TITLE AT TOP ------- */

.singles h1 {
  color: #F599B1;
  font-size: clamp(1rem, 1rem + 7vw, 6.5rem);
  padding-bottom: 3rem;
  text-align: center;
  margin: 2rem 0 -4rem 0;
}

/* ===== SINGLE ITEM ===== */
.single-item {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  row-gap: 2rem;  /* space between image and text */
}

/* ------- IMAGE + VERTICAL TEXT ------- */
.single-image-wrap {
  position: relative;
  display: inline-block;
}

.single-image-wrap img {
  display: block;
  width: clamp(250px, 80vw, 900px);
  margin: 0 auto;
  transition: all 1s ease;
}

.single-image-wrap img:hover {
  filter: blur(2px) contrast(200%) saturate(150%);
}

.vertical-series {
  position: absolute;
  right: -2.5rem;
  top: 0;                       
  
  writing-mode: vertical-rl;    

  color: #8BC7DE;
  font-style: italic;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 7rem);
}
/* ------- DATE + TITLE ------- */

.singledate {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #F599B1;
  text-align: center;
  font-size: clamp(1rem, 1rem + 1vw, 4.5rem);
}

.singletitle {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #F599B1;
  text-align: center;
  font-size: clamp(1rem, 1rem + 2vw, 5.5rem);
  padding-bottom: 3rem;
}

/*==TRUE RED==*/

.bones-back {
  background-color: #B71D1D;
  padding: 2rem 0 4rem 0;
}

.bones-content {
  width: clamp(250px, 80vw, 900px);
  margin: 0 auto;
  margin-bottom: 4rem;
}

.bones-top {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

/* ------- TITLE ------- */

.bones-top h1 {
  color: #F84C4E;
  font-size: clamp(1rem, 1rem + 7vw, 6.5rem);
  padding-bottom: 3rem;
}

/* ------- IMAGE + VERTICAL TEXT ------- */

.bones-image-wrap {
 position: relative;
 display: inline-block;
}

.bones-image-wrap img {
  display: block;
  width: clamp(250px, 80vw, 900px);
  margin: 0 auto;
  transition: all 1s ease;
}

.bones-image-wrap img:hover {
  filter: blur(2px) contrast(200%) saturate(75%);
}

.bonesdate {
  margin-top: 2rem;
}

.vertical-series-bones {
  position: absolute;
  right: -2.5rem;
  top: 0;                       
  
  writing-mode: vertical-rl;    

  color: #F84C4E;
  font-style: italic;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 7rem);
}
/* ------- DATE + TITLE ------- */

.bonesdate {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #F84C4E;
  text-align: center;
  font-size: clamp(1rem, 1rem + 1vw, 4.5rem);
}

.bonestitle {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  color: #F84C4E;
  text-align: center;
  font-size: clamp(1rem, 1rem + 2vw, 5.5rem);
  padding-bottom: 3rem;
}


/* ------- TRACKLIST ------- */

.bonessongs {
  display: grid;
  grid-template-columns: 4fr 1fr;
   width: 100%;          
  justify-items: stretch; 
}

.bones-tracklist,
.bones-track-number {
  font-family: "leather", serif;
  color: #F84C4E;
  font-weight: 100;
  font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
}

.bones-tracklist {
  text-align: left;
}

.bones-track-number {
  text-align: right;
}

.bones-tracklist li,
.bones-track-number li {
  line-height: 3.6rem;
  margin-bottom: 1.5rem;
}

.videos-page{
  margin-top: 10rem;
}

.videos-page a {
    display: block;   
    width: 100%; 
    text-align: center;
}

.videos-page a img{
    width: clamp(250px, 80vw, 900px);
    margin: 0 auto;
    display: block;
    transition: all 2s ease;
}

.videos-page a img:hover{
    transform: scale(1.05); 
    image-rendering: pixelated;
    filter: blur(2px) contrast(200%) saturate(150%);
    cursor: pointer;
}

.videos-page h1{
  font-size: clamp(0.5rem, 1rem + 4vw, 6rem);
  text-align: center;
}


.message-page{
  margin-top: 10rem;
}

.message-page img{
    width: clamp(250px, 80vw, 900px);
    display: block;
    justify-self: center;
    transition: all 2s ease;
    transform: none;
}

.message-page h1{
  font-size: clamp(0.5rem, 1rem + 4vw, 6rem);
  text-align: center;
}

.frame-wrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.message-box {
  position: absolute;

  top: 17%;        
  left: 15%;       
  width: 70%;      
  height: 67%;     

  resize: none;
  background: transparent;
  border: none;
  outline: none;

  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #F599B1;
  caret-color: #F599B1;

  font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
  padding: 2rem;

  overflow-y: auto;
}


.message-page button{
  display: block;
  margin: 2rem auto 0 auto;
  border: none;
  background: none;
  padding: 0;
  font-size: inherit;
  cursor: pointer;
  transition: all 2s ease;
}

.message-page button:hover{
 filter: contrast(200%) saturate(150%);
  transform: scale(1.1);
  text-shadow:
    1px 1px #F599B1,
   -1px -1px #F599B1,
    1px -1px #F599B1,
   -1px 1px #F599B1;
  cursor: pointer;
}


.message-box::-webkit-scrollbar {
  width: 6px;            
}

.message-box::-webkit-scrollbar-track {
  background: transparent;  
}

.message-box::-webkit-scrollbar-thumb {
  background: #F599B1;      
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.message-box::-webkit-scrollbar-thumb:hover {
  background: #ffb7c8;     
}

footer{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
   margin: 3rem 0 3rem 0;
}

footer{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
   margin: 3rem 0 3rem 0;
}

footer h1{
  font-size: calc(1rem + 4vw);
}
.starf1{
  padding-top: 3rem;
  padding-bottom: 3rem;
}
footer a, footer a:link{
  text-decoration: none;
  color: #F599B1;
}
footer h1:hover{
  color: #8BC7DE;
  transform: scale(1.02);
}

footer a:hover{
  color: #8BC7DE;
  transform: scale(1.02);
}
footer a img:hover{
  color: #8BC7DE;
  transform: scale(1.09);
}

footer ul li{
  padding-top: 1rem;
  font-size: calc(1rem + 4vw);
}
footer .footercolumn1 a img, footer .footercolumn2 a img{
  width: clamp(1.5rem, 20%, 50%);
  display: block;
}

img.mobilespotify{
  padding-top: 3.75rem;
}


footer div.footercolumn1{
  align-self: center;
  padding-left: 2rem;
}

footer .footerlist{
  text-align: center;
}

.starf1,
.starf2 {
  width: 100%;
  display: block;
}

.starf2{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer .footercolumn1 img {
  margin-bottom: 3rem;
}

.navbar-wrapper {
    display: none;
}

.menu-toggle {
    display: block;
}

.desktop-footer { 
  display: none; 
}


/* === MEDIA QUERIES === */

@media (min-width: 601px) {

.navbar-wrapper {
        display: block; 
    }

    .menu-toggle {
        display: none;
    }

    #menuOverlay {
        display: none !important;
    }


/* ------------------------------ */
/*   NAVBAR BACKGROUND WRAPPER    */
/* ------------------------------ */

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  background: #F599B1;
  padding: .2rem 0;     
  z-index: 999;
  transition: backdrop-filter 0.4s ease, background-color 0.4s ease;
 }

.navbar-wrapper.scrolled {
  background-color: rgba(245,153,177,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
 }


/* ------------------------------ */
/*         NAVBAR CONTENT         */
/* ------------------------------ */

#tabletMenu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100vw;
  margin: 0 auto;
  text-align: center;
 }

/* Nav links */

#tabletMenu a {
  color: #000;
  text-decoration: none;
  font-family: "Chivo Mono", monospace;
  font-weight: 300;
  text-transform: lowercase;
  font-size: clamp(0.6rem, 1.1vw, 1.4rem);
  padding: 0.4rem 0;
  letter-spacing: 0.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.2s ease;
 }

#tabletMenu .nhome img {
    max-width: 2rem; /* adjust as needed */
    height: auto;
 }

#tabletMenu a:hover {
  transform: scale(1.12);
 }

.nhome {
  grid-column: 1 / 2;
 }

.vertical-series {
  position: absolute;
   right: -4.5rem;
  top: 0;                       
  
  writing-mode: vertical-rl;    

  color: #8BC7DE;
  font-style: italic;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 7rem);
}

.vertical-series-bones {
  position: absolute;
  right: -4.5rem;
  top: 0;                       
  
  writing-mode: vertical-rl;    

  color: #F84C4E;
  font-style: italic;
  font-size: clamp(1.25rem, 1.25rem + 1vw, 7rem);
}

/* Desktop (1025px and up) */
@media (min-width: 1025px){
  
   .mobile-footer {
    display: none;   
  }
  .desktop-footer {
    display: block;
    margin: 2rem;
  }

  .cormac{
    grid-template-columns: 2fr 1fr 2fr;
  }
  .cormac h1{
    grid-column-start: 2;
  }
  .cormac img:nth-child(1){
  display: block;
  transform: scaleX(-1);
  } 
  .cormac h1{
    text-align: center;
  }

  .mccarthy h3, p{
    text-align: center;
  }
 


  .about-mobile p:nth-child(2){
  grid-column-start: 2;
  grid-column-end: 3;
  max-width: 300px;
  text-align: justify;
  color: #F599B1;
  font-size: clamp(1rem, 1.2rem + 1vw, 4rem);
  }

  .about-bg::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;

  background-image: url("images/ezmobilelite.jpg");
  background-size: clamp(35%, .5vw, 50%);
  transform: translateZ(0);
  
  filter: blur(0px);          
  opacity: 0.75;               
  
  animation: bgScroll 45s linear infinite;

  z-index: -2;
  pointer-events: none;
}
/* Top Row */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
 }

.nav-left { justify-self: start; }
.nav-between-left { justify-self: center; }
.nav-center { justify-self: center; }
.nav-between-right { justify-self: center; }
.nav-right { justify-self: end; }

.footer-top a {
  text-decoration: none;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #F599B1;
  transition: transform 0.2s, color 0.2s;
 }

.footer-top a:hover {
  color: #8BC7DE;
  transform: scale(1.05);
 }

/* Bottom Row */
.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 1fr 1fr 2fr;
  align-items: center;
  width: 100%;
  gap: clamp(1.5rem, 1.5vw, 2.5rem);
 }

.brand-left{
  grid-column-start: 1;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #F599B1;
  text-align: left; 
  transition: transform 0.2s, color 0.2s;
 }

.brand-right {
  grid-column-start: 7;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #F599B1;
  text-align: right;
  transition: transform 0.2s, color 0.2s;
 }

.spotify {
  grid-column-start: 2;
  justify-self: center;
 }

.applemusic {
  grid-column-start: 3;
  justify-self: center;
 }

 .youtube {
  grid-column-start: 5;
  justify-self: center;
 }

 .instagram {
  grid-column-start: 6;
  justify-self: center;
 }
 
.center-stars {
  grid-column-start: 4;
  height: clamp(2rem, 1.5vw, 3rem);
  justify-self: center;
 }

 
 .spotify img,
 .applemusic img,
 .youtube img,
 .instagram img{
  height: clamp(1.5rem, 1vw, 2.25rem);
  object-fit: contain;
  display: block;
 }

.social-left img:hover,
.social-right img:hover {
  transform: scale(1.1);
 }
}
/*END MEDIA QUERY*/