/* ==========================
   Reset & Layout Fixes
   ========================== */
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
  } 

  body {
    background: #252D3E;
  } 

  * {
    box-sizing: border-box;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 50px;
    font-size: 50px;
    cursor: pointer;
    transition: color 0.2s ease;
    color: #252D3E;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1;
    font-family: inherit;
  }  
  
  .close-btn:hover {
    color: #D4AF37;
  }

  .top-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .top-link:hover {
    color: #D4AF37;
  }  
  
/* ==========================
   Background Video
   ========================== */
  #bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
  }

/* ==========================
   Main Content Wrapper
   ========================== */
  .main-content {
    min-height: calc(100vh - 15vh);
    display: block;
  }
  
  .main-content.blurred {
    filter: blur(4px);
    transition: filter 0.3s ease-in-out;
    pointer-events: none;
    user-select: none;
  }  

/* ========================== 
    Top Nav 
    ========================== */
  .top-right-nav {
    position: absolute;
    top: 30px;
    right: 50px;
    font-family: 'Barrio', cursive;
    font-size: 30px;
    z-index: 100;
    color: white;
  }
  
  .top-right-nav p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .top-right-nav .top-link {
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .top-right-nav .top-link:hover {
    color: #D4AF37;
  }
  
  .inline-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
  }
  
/* ==========================
   Hamburger Menu & Animation
   ========================== */
   .hamburger-nav {
    position: absolute;
    top: 30px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 200;
    font-family: 'Barrio', cursive;
    font-size: 30px;
    color: white;
  }
  
  .hamburger-icon {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .hamburger-icon span {
    height: 4px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .hamburger-icon.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  
  .hamburger-icon.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-icon.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  
  .hamburger-icon:hover span {
    background-color: #D4AF37;
  }
  
  .hamburger-menu {
    position: absolute;
    top: 80px;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 199;
    font-family: 'Barrio', cursive;
    color: #252D3E;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
  }
  
  .hamburger-menu.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }  
  
  .hamburger-menu a {
    color: #252D3E;
    text-decoration: none;
    font-size: 28px;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .hamburger-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
  }
  
  .hamburger-menu a:hover {
    color: #D4AF37;
  }
  
  .hamburger-menu a:hover::after {
    width: 100%;
  }  

/* ==========================
   Hero / Info Section
   ========================== */
  .info-section {
    text-align: center;
    font-family: 'Epilogue', sans-serif;
    color: white;
    padding: 60px 30px 20px;
  }
  
  .cta1-logo {
    height: 130px;
    transition: content 0.3s ease-in-out;
  }
  
  .cta1-logo:hover {
    content: url("images/cta1-hover.png");
  }
  
  .tagline {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: white;
  }
  
  .show-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    font-size: 18px;
    color: white;
  }
  
  .show-list li {
    margin-bottom: 8px;
  }
  
/* ==========================
   Artist Split Layout
   ========================== */
   .artist-lineup {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto repeat(3, 1fr);
    gap: 15px;
    padding: 50px 5vw;
    width: 100%;
    font-family: 'Barrio', cursive;
    color: #B8B8B8;
  }  
  
  .artist-cell {
    font-size: 18px;
    text-align: left;
  }
  
  .artist-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .pulse-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: pulse 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #D4AF3788);
  }

  /* Pulse Animation */
  @keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
  } 

/* Artist name hover */
  .artist {
    transition: color 0.3s ease;
    cursor: pointer;
  }
  
  .artist:hover {
    color: #D4AF37;
  }
  
  .artist.headline {
    font-size: 20px;
    font-weight: bold;
    color: white;
  }  

  .genre {
    color: #D4AF37;
    font-weight: bold;
  }
  
/* ==========================
    Popup General
    ========================== */
  .artist-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    background: white;
    z-index: 100;
    padding: 25px 40px;
    display: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
  }

  .artist-popup.visible {
    display: block;
    transform: translateX(0);
    opacity: 1;  
  }
  
  .artist-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 48px;
    cursor: pointer;
  }

  .popup-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    background: none;
    border-radius: 0;
    text-align: left;
    font-family: 'Epilogue', sans-serif;
    color: #252D3E;
    position: relative;
    z-index: 2;
  }

  .artist-popup .privacy-title,
  .info-popup .privacy-title {
    font-family: 'Barrio', cursive;
  }

/* ==========================
   Headline Artist Popups
   ========================== */
  .artist-popup .artist-img {
    width: 100%;
    max-width: 460px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
  }

  .artist-popup .popup-content p,
  .artist-popup .popup-content li,
  .artist-popup .popup-content a {
    font-size: 14px;
    line-height: 1.5;
  }
  
  @media screen and (min-width: 1440px) {
    .artist-popup .artist-img {
      max-width: 600px;
    }
  
    .artist-popup .privacy-title {
      font-size: 42px;
    }
  
    .artist-popup .privacy-date {
      font-size: 14px;
    }
  
    .artist-popup p {
      font-size: 16px;
      line-height: 1.6;
    }
  }
  
  @media screen and (min-width: 1920px) {
    .artist-popup .artist-img {
      max-width: 700px;
    }
  
    .artist-popup p {
      font-size: 18px;
    }
  
    .artist-popup .privacy-date {
      font-size: 16px;
    }
  }  

/* ==========================
   Info Popups (Privacy & Terms)
   ========================== */
  .info-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 40%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    background: white;
    z-index: 100;
    padding: 25px 40px;
    display: none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
   }
  
  .info-popup.visible {
    display: block;
    transform: translateX(0);
    opacity: 1;
  }
  
  .info-popup .popup-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
    font-family: 'Epilogue', sans-serif;
    color: #252D3E;
  }
  
  /* Title for Privacy/Terms */
  .info-popup .privacy-title {
    font-family: 'Barrio', cursive;
    font-size: 32px;
    margin: 10px 0 6px 0;
  }
  
  /* Date for Privacy/Terms */
  .info-popup .privacy-date {
    font-family: 'Epilogue', sans-serif;
    font-size: 9px;
    margin-bottom: 4px;
    color: #777;
  }
  
  /* Subheadings for Privacy/Terms */
  .info-popup h3 {
    font-family: 'Epilogue', sans-serif;
    font-size: 9px;
    margin: 12px 0 4px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  
  /* Body text for Privacy/Terms */
  .info-popup p,
  .info-popup li {
    font-family: 'Epilogue', sans-serif;
    font-size: 8px;
    line-height: 1.3;
    margin-bottom: 2px;
  }
  
  .info-popup ul {
    padding-left: 14px;
    margin-bottom: 4px;
  }
  
  .info-popup a {
    font-size: 9px;
    color: #252D3E;
    font-weight: 500;
    text-decoration: underline;
  }  

/* ==========================
   About
   ========================== */
  .about-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #252D3E;
  }
  
  .about-title {
    font-family: 'Barrio', cursive;
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .about-inner {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    flex-wrap: nowrap;
  }
  
  .about-image {
    flex: none;
    width: 300px;
    max-width: 300px;
    margin-top: 30px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
  
  .about-text {
    flex: 2 1 100%;
  } 
  
  .signup-form {
    margin-top: 40px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    font-family: 'Epilogue', sans-serif;
    text-align: center;
  }
  
  .signup-form h3 {
    font-family: 'Barrio', cursive;
    font-size: 28px;
    margin-bottom: 10px;
    color: #252D3E;
  }
  
  .signup-form p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #252D3E;
  }
  
  .signup-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .signup-form input[type="email"] {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #252D3E;
    border-radius: 6px;
    width: 100%;
    max-width: 400px;
    font-family: 'Epilogue', sans-serif;
  }
  
  .signup-form button {
    background-color: #252D3E;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Barrio', cursive;
  }
  
  .signup-form button:hover {
    background-color: #D4AF37;
    color: #252D3E;
    transform: scale(1.03);
  }  

  .polaroid-slider {
    width: 300px;
    max-height: 120vh;
    overflow-y: auto;
    overflow-x: visible;
    padding-right: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    position: relative;
  }
  
  .polaroid-slider::-webkit-scrollbar {
    display: none;
  }
  
  .polaroid-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }  
  
  .polaroid-stack img {
    width: 100%;
    height: auto;
    border-radius: 0;
    background: white;
    padding: 12px 12px 30px 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: rotateZ(calc(-3deg + (6deg * var(--rand, 0))));
    transition: transform 0.3s ease;
    display: block;
  }  
  
  /* Add hover zoom */
  .polaroid-stack img:hover {
    transform: scale(1.05);
    z-index: 10;
  }  

/* ==========================
   FAQ
   ========================== */
  .faq-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    font-family: 'Epilogue', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #252D3E;
  }
  
  .faq-title {
    font-family: 'Barrio', cursive;
    font-size: 40px;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .faq-text {
    flex: 2 1 100%;
  }
  
  .faq-columns {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .faq-col {
    flex: 1 1 45%;
  }

  .faq-wrapper h2 {
    font-size: 38px;
  }  
  
  .faq-wrapper h3 {
    font-size: 22px;
    font-family: 'Barrio', cursive;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin: 50px 0 6px;
    color: #252D3E;
    letter-spacing: 0.5px;
  }

  .faq-col p {
    text-align: center;
  }
   
/* ==========================
   Footer
   ========================== */

   .site-footer {
    background-color: #252D3E;
    color: #D4AF37;
    font-family: "Barrio", cursive;
    width: 100%;
    position: relative;
    z-index: 10;
    padding: 40px 0;
    display: flex;
    justify-content: center;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    gap: 40px;
  }
  
  /* Left and right columns */
  .footer-left,
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-left {
    align-items: flex-start;
    text-align: left;
  }
  
  .footer-right {
    align-items: flex-end;
    text-align: right;
  }
  
  /* Center logo */
  .footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-center img {
    height: 100px;
    width: auto;
    transition: content 0.3s ease-in-out;
  }
  
  .footer-center:hover img {
    content: url("images/cta2-hover.png");
  }
  
  /* Text styles */
  .footer-left p,
  .footer-right p {
    margin: 0;
    transition: color 0.2s ease-in-out;
    cursor: pointer;
  }
  
  .footer-left p:hover,
  .footer-right a:hover {
    color: white;
    text-decoration: underline;
  }
  
  .footer-right a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: bold;
  }
  
  
/* ==========================
   Responsive Enhancements
   ========================== */
   @media screen and (min-width: 1440px) {
    .artist-lineup {
      gap: 20px;
      margin-top: 3%;
    }
  
    .artist-cell {
      font-size: 26px;
    }
  
    .artist.headline {
      font-size: 32px;
    }
  
    .pulse-logo {
      max-width: 500px;
    }

    .footer-left,
    .footer-right {
      font-size: 20px;
    }

    .popup-content h2.privacy-title {
      font-size: 38px;
    }
    
    .popup-content .privacy-date {
      font-size: 14px;
    }
    
    .popup-content h3 {
      font-size: 18px;
    }

    .info-popup .popup-content {
      max-width: 100%;
      padding: 10px 20px;
      margin: 0;
    }
    
    .popup-content p,
    .popup-content li,
    .popup-content a {
      font-size: 15px;
    }

    .about-title {
      font-size: 40px;
    }
    
    .about-image {
      max-width: 250px;
    }
  }
  
  @media screen and (min-width: 1920px) {
    .artist-lineup {
      gap: 80px;
    }
  
    .artist-cell {
      font-size: 30px;
    }
  
    .artist.headline {
      font-size: 36px;
    }
  
    .pulse-logo {
      max-width: 400px;
    }

    .footer-left,
    .footer-right {
        font-size: 24px;
    }
  
    .info-popup .popup-content {
      padding: 10px 40px;
    }
  }
  
  @media screen and (max-width: 768px) {
    /* HOME MOBILE */
    .artist-lineup {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 10px 20px 40px;
      align-items: center;
      text-align: center;
    }
    
    .artist-cell {
      font-size: 16px;
      text-align: center;
    }
    
    .artist-logo {
      order: -1;
    }

    /* POPUP MOBILE */
    .artist-popup,
    .info-popup {
      width: 90%;
      float: left;
    }    
    
    /* INFO SECTION MOBILE */
    .info-section {
      padding: 40px 20px;
      margin-top: 50px;
    }
  
    .cta1-logo {
      height: 80px;
    }
  
    .tagline {
      font-size: 20px;
      line-height: 1.4;
    }
  
    .show-list {
      font-size: 14px;
    }
  
    /* ABOUT INNER STACK MOBILE*/
    .about-wrapper {
      margin-top: 0px;
    }

    .about-inner {
      flex-direction: column;
    }
  
    .polaroid-slider {
      width: 100%;
      max-height: 250px;
      overflow-x: auto;
      overflow-y: hidden;
      display: flex;
      flex-direction: row;
      padding: 0 10px;
    }
  
    .polaroid-stack {
      flex-direction: row;
      padding: 10px 0 30px 0;
      gap: 10px;
    }    
  
    .polaroid-stack img {
      width: 100%;
      height: auto;
      border-radius: 0;
      background: white;
      padding: 12px 12px 30px 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      transform: rotateZ(calc(-3deg + (6deg * var(--rand, 0))));
      transition: transform 0.3s ease;
      display: block;
    }      
  
    /* SIGNUP FORM MOBILE*/
    .signup-form {
      padding: 20px;
    }
  
    .signup-form input[type="email"],
    .signup-form button {
      font-size: 14px;
      padding: 10px 18px;
    }
  
    /* FOOTER MOBILE */
    .site-footer {
      height: auto;
      padding: 20px 10px;
      background-color: #252D3E;
      color: #D4AF37;
      font-size: 12px;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }

    .footer-center {
      order: 1;
      width: 100%;
      text-align: center;
    }

    .footer-center img {
      height: 60px;
      width: auto;
      margin-top: 20px;
    }

    .footer-bottom-row {
      order: 2;
      display: flex;
      justify-content: space-between;
      width: 100%;
      max-width: 300px;
      gap: 20px;
      margin-top: 10px;
    }

    .footer-left,
    .footer-right {
      display: flex;
      flex-direction: column;
      font-size: 16px;
      line-height: 1.2;
      align-items: center;
      text-align: center;
      gap: 4px;
    }    

    .footer-left p,
    .footer-right p {
      margin: 2px 0;
    }

    .footer-right a {
      font-size: 16px;
      color: #D4AF37;
      text-decoration: none;
    }  
  }
  
  
  