/** Shopify CDN: Minification failed

Line 11:2 Expected ":"

**/
.page-artists .rich-text {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  background: linear-gradient(to bottom,hsl(0, 0.00%, 96.0%) 0%, #F2F2F2 100%)!important;
  position: relative; /* <-- CRITICAL: Gives it a stacking context */
  z-index: 20;
}


/* -------------------------------------------------------------------------- */
/* 1. ARTIST SECTION CONTAINER - Base for the page content */
/* -------------------------------------------------------------------------- */
#artistSection {
  position: relative; 
  width: 100%;
  height: 100vh;
  margin: 0 !important; 
  padding: 0 !important; 
  /* Must be overflow visible so the absolute thumbnails can extend outside */
  overflow: visible; 
}


.artist-toggle-wrapper {
  position: relative; 
  z-index: 4;
  min-height: 100%; 
  height: 100%; 
  width: 100%;
  display: flex;
  align-items: flex-start; 
  justify-content: flex-start;
  font-family: Helvetica, Arial, sans-serif;
  padding: 2rem; 
}


/* Left column: artist list - ALIGNMENT FIX */
.artist-list {
  width: min(50rem,25%);
  padding: 3rem 0 0 clamp(15px, 8vw, 16rem);
  flex-direction: column;
  display: flex;
  gap: clamp(1.45rem, 1vw + 1rem, 2.5rem);
  z-index: 4; /* Ensure names are clearly clickable above everything */
}


/* Each artist block - Key: position relative for thumbnails */
.artist-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 5; 
}


/* 1. Default state: This is how the text looks before any action. */
.artist-name {
    font-size: clamp(1.3rem, 1.5rem + 0.4vw, 1.8rem);
    font-weight: 400;
    cursor: pointer;
    line-height: 1.2;
    transition: color 0.25s ease, transform 0.25s ease;
    color: #222; 
    -webkit-text-fill-color: #222; 
    background: none; 
    white-space: nowrap; 
}


/* 2. Hover state: This is the visual hint when the user's mouse is over the name. */
.artist-name:hover {
    color: #f6d365; 
    -webkit-text-fill-color: #f6d365; 
    background: none;
    transform: translateX(4px);
}


/* 3. Active state: This is the color for the artist name that has been clicked. */
.artist-name.active {
    background: linear-gradient(90deg, #f6d365, #fda085);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    background-clip: text;
    text-fill-color: transparent;
}


/* 4. Inactive state within a list with an active artist. */
.has-active-artist .artist-name:not(.active) {
    color: #b0b0b0; 
    background: none;
}


/* 5. Hover state on inactive names. */
.has-active-artist .artist-name:not(.active):hover {
    color: #888; 
    -webkit-text-fill-color: #888;
}


/* This new rule applies when an artist is hovered (HEADER LINK COLOR) */

body {
    overflow-x: hidden;
}

.page-artists.header-light .custom-header { 
  background-color:transparent; 
  transition: background-color 0.5s ease;
}
.page-artists.header-light .custom-header .custom-header__nav a { 
color: #b0b0b0; 
transition: color 0.5s ease;
}

.page-artists.header-light .rich-text {
    background-color: transparent !important;
    transition: none !important;
}

.page-artists.header-light .rich-text p {
    color:#DEDEDE !important; /* Sets text to light grey */
    transition: color 0.5s ease;
}

body.header-light {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensures the image stays in place when scrolling */
    transition: background-image 0.5s ease; /* Smooth transition for the image change */
}

body.header-light::before {
    content: '';
    position: fixed; /* Use fixed to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Apply a semi-transparent dark overlay */
    background-color: rgba(0, 0, 0, 0.62); 
    z-index: 1; /* Must be below all content (z-index 3/4/5) and only above the background */
    pointer-events: none; /* Allows clicks to pass through to elements below */
    transition: background-color 0.5s ease;
}

/* -------------------------------------------------------------------------- */
/* 3. THUMBNAIL CONTAINER - FINAL VISIBILITY FIX */
/* -------------------------------------------------------------------------- */
.artist-thumbnails {
  display: flex; 
  flex-wrap: nowrap; 
  gap: 12px;
  z-index: 3; 
  align-items: center; 
  /* POSITIONING: Absolute relative to artist-block */
  position: absolute; 
  top: 50%;
    /* HIDING: Shift the element off the screen */
  left: 62.5vw;
  transform: translateY(-50%) translateX(200px); /* Start far off-screen */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
  max-width: 60vw;
  height: auto; 
  overflow: hidden; 
}


/* Show thumbnails when artist is clicked */
.artist-thumbnails.active {
  opacity: 1 !important; 
  visibility: visible !important; 
  pointer-events: auto;
  /* SHOWING: Pull the element back into position */
  left: 62.5vw;
  transform: translateY(-50%) translateX(-50%); /* Pull it close to the name */
  transition: opacity 0.5s ease, transform 0.5s ease;
}


/* Make clicked artist name visually different */
.artist-name.active {
  background: linear-gradient(90deg, #f6d365, #fda085);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  z-index: 5; 
}

/* Thumbnail images - FINAL STABILITY */
.artist-thumbnails img {
  object-fit: cover;
  border-radius: 4px;
  transition: transform .2s ease;
  position: relative; 
  width: 180px; 
  height: 180px; 
  transform: none !important; 
}
.artist-thumbnails img:hover { transform: scale(1.08) rotate(0deg) !important; z-index: 3; } 





/* Media - header first and then artist-toggle area */
@media screen and (max-width: 700px) {
   
    .page-artists .rich-text{
        /* Push content down to clear the top fixed bar (60px height) */
        padding-top: 15px !important;   
    }

    .artist-block {
    height: auto !important; 
    padding: 0;
    margin: 0;
    }

    .artist-list { /* Simplified this selector from #artistToggle.artist-list */
        gap: 2rem !important;
        padding: 0 !important;
        z-index: 10;
        height: auto;} 

    .artist-name {
        font-size: clamp(1.2rem, 1.4rem + 0.7vw, 1.7rem);
        line-height: 1.2;
        padding: 0; 
    }

    /* 3. CRITICAL FIX: Hide the entire thumbnail container on mobile */
    .artist-thumbnails {
        display: none !important;
        visibility: hidden !important; 
        /* Reset any large height just in case */
        height: 0 !important;
        padding: 0;
        margin: 0;
    }

}
    


