@font-face {
    font-family: 'Sans-Serif';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
    font-display: swap;
}

.homePageSize {
    width: 100%;
    margin: auto;
}

.logo {
    padding: 5%;
    width: 8rem;
    /* filter: brightness(0); */
}

.authorNoteButton {
    background-color: transparent;
    color: #00DFFF;
    border: 2px solid #00DFFF;
    padding: 10px 20px;
    font-family: 'Electrolize', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.authorNoteButton:hover {
    background-color: #00DFFF;
    color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 223, 255, 0.4);
}

.authorNoteButton:active {
    transform: translateY(1px);
}

.authorNoteButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0, 223, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.authorNoteButton:hover::before {
    left: 100%;
}


.postTitle h1 {
    font-size: 3rem;
}

.subtitle a {
    text-decoration: none;
    color: white;
}

body {
    background-color: #222222;
    color: rgb(255, 255, 255) !important;
    font-family: 'Electrolize', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

strong, b {
    font-size: calc(1rem + 3px);
    -webkit-text-stroke: .7px white;
    color: white;
    /* text-shadow: 
      -1px -1px 0 rgba(0, 0, 0, .1),  
       1px -1px 0 rgba(0, 0, 0, .1),
      -1px  1px 0 rgba(0, 0, 0, .1),
       1px  1px 0 rgba(0, 0, 0, .1); */
  }

a {
    color: #00DFFF;
}

.listenUlSmacker ul {
    list-style-type: none;
    padding: 0%;
}

.listenTitle {
    font-size: 3.2rem;
}

.centerListenImageContainer {
    max-width: 320px;
}

/* .indexUl, .indexUl ul, .releaseGrid ul {
    padding: 0 !important;
} */

.carrotList li {
    list-style-type: none; /* Remove the default list style */
    position: relative; /* Ensure the pseudo-element is positioned relative to the li */
    padding-left: 20px;
}

.carrotList li::before {
    content: "> "; /* Example: use an arrow as the bullet */
    position: absolute;
    left: 0;
    top: 0; /* Align vertically if needed */
}

ul {
    padding: 0px;
}

.nav {
    padding: 0%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.title-bar {
    display: grid; /* Sets up a grid container */
    grid-template-columns: 1fr auto 1fr; /* Three columns: equal, content-based, equal */
    align-items: center; /* Centers items vertically */
    justify-items: center; /* Centers items horizontally */
}

.title {
    justify-self: start; /* Aligns the title to the start (left) of the grid area */
}

.title, .subtitle h2 {
    font-size: 26px;
}

.subtitle {
    justify-self: end; /* Aligns the subtitle to the end (right) of the grid area */
}

.logo img {
    width: 100px; /* Set a specific width for the logo */
    height: auto; /* Maintain aspect ratio */
}

/* .title-bar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.title, .subtitle {
    flex: 1;
}

.title {
    text-align: left;
}

.subtitle {
    text-align: right;
    flex-grow: 4;
}

.titleLogo {
    flex: 2;
    padding: 0 20px;
}

FUCKKKK */

/* @ idea {
    .titleBox {
        display: flex;
        flex-grow: 100%;
    }
    
    .titleBoxDiv {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .titleBoxDiv h2 {
        flex-grow: ;
    }
    
    .titleBoxC {
        flex: 2;
        justify-content: center;
    }
    
    .titleboxR {
        flex: 1;
        justify-content: flex-end;
    }
    
    .titleboxR {
        flex: 1;
        justify-content: flex-start;
    }
} */

h1 {
    font-size: 4rem;
}

.genre {
    color: grey;
}

.releaseGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default to 3 columns */
    /* gap: 10px; */
}

.releaseGrid img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
}

.releaseGrid li {
    list-style-type: none; /* Remove default list styling */
}

.discogImage img {
    width: 100%;
}

.philosophy ul {
    list-style-type: decimal;
}

.discogImage li {
    width: 20%;
}

.album {
    color: rgb(224, 255, 47);
}

.dateandloc {
    color: rgb(117, 246, 255);
}

h3 {
    font-size: 1.4rem;
    margin: 0px;
}

.bit-play-my-city-heading-text {
    display: none;
}

.bit-play-my-city-wrapper {
    padding: 0px !important;
}

.mainSection {
    padding: 0% 20%;
    width: 100%;
    max-width: 48rem;
    /* justify-content: space-evenly; */
}

.home2.mainSection {
    max-width: 40rem !important;
}

.listenAlbumArt {
    width: auto;
    max-width: 100%;
    max-height: 20rem;
}

.guesst-text-logo {
    margin: 16px auto;
    padding: auto;
    max-height: auto;
}

.homeImage img {
    width: 100%;
    max-width: 100%;
    /* aspect-ratio: 1/1; */
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
}

/* .homeNav {
    text-decoration: none;
    font-size: 30px;
} */

.homeNav ul {
    list-style-type: none;
    text-align: center;
}

.blogImage {
    width: 100%;
    max-width: 100%;
}

.amateursClubImage {
    width: 100%;
    max-height: 40rem;
    object-fit: cover;
}

.contactDiv {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 10px 0;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* filter: brightness(0); */
}

.contactDiv img {
    display: block;
    width: 100%;
    max-width: 80px;
    min-width: 20px;
    height: auto;
    -webkit-transform: scale(1);
    flex: 1;
    /* min-width: 0; */
    object-fit: contain;
    margin: 16px auto;
    /* filter: brightness(0); */
}

/* .discord-icon {
    min-width: 40px;
    min-height: 40px;
    aspect-ratio: 1/1;
} */

#substack-icon {
    width: 70%;
    margin: auto;
    padding: 0px;
}

@media (max-width: 600px) {
    .contactDiv {
        gap: 10px;
    }
    /* .homeImage img {
        aspect-ratio: 1/1;
    } */
}

/* #bell-icon {
    height: 40px;
} */

/* #performanceCard:first-of-type {
    display: none;
} */

/* .titleSequence {
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.titleSequence h1 {
    margin: 12% 0%;
}

/* .titleSequenceText {
    display: flex;
    align-items: center;
    padding: 5%;
} */

.secretTitleSequence {
    display: none;
}

.secretTitleSequence h1 {
    margin-bottom: 0px;
}

.listenText {
    max-width: 400px;
    margin: 0 auto; /* Center the container */
    text-align: left; /* Keep text alignment to the left */
}

/* PIC GRID */
.pic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}
  
.pic-grid-item {
  position: relative; /* Ensure absolute positioning works within this container */
  width: 100%;
  padding-bottom: 100%; /* Makes the item square */
  cursor: pointer;
}
  
.pic-grid-item img,
.pic-grid-item video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures content covers the container */
  top: 0;
  left: 0;
}
  
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #222222;
    justify-content: center;
    align-items: center;
}
  
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}
  
#lightbox-video {
    display: none;
}

.dlButton {
    background-color: #00DFFF; /* Same blue color as links */
    color: black; /* Black text */
    border: none; /* Remove default border */
    border-radius: 8px; /* Rounded corners */
    padding: 10px 20px; /* Padding for the button */
    font-size: 1rem; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 3D look */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}

.dlButton a {
    color: black; /* Black text */
    text-decoration: none;    
    text-align: center; /* Center text */
    display: block; /* Make the anchor a block element to center it */
}

.dlButton:hover {
    transform: translateY(-2px); /* Slight lift on hover */
    background-color: #0099cc; /* Darker blue on hover */
}
  
.close,
.arrow {
    position: absolute;
    top: 50%;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.close {
    right: 20px;
    top: 20px;
}
  
.arrow {
    transform: translateY(-50%);
}
  
.arrow.left {
    left: 20px;
}
  
.arrow.right {
    right: 20px;
}
  

@media (max-width: 950px) {
    h1 {
        font-size: 3.5rem;
    }
    h3 {
        font-size: 1.16rem;
    }

    .homeImage img {
        width: 100%;
        padding: 0px;
        /* aspect-ratio: 1.4/1; */
    }

    .listenTitle {
        font-size: 2.2rem;
    }

    .releaseGrid {
        grid-template-columns: repeat(1, 1fr); /* Change to 2 columns */
    }
    
    .mainSection {
        max-width: 80%;
        padding: 0%;
    }

    body {
        font-family: 'Electrolize', sans-serif;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 1.4rem;
    }

    .titleSequence {
        display: none;
    }

    .secretTitleSequence {
        display: inline;
    }

    .nav a {
        padding: 0% 2%;
    }

  }

  @media (max-width: 487px) {
    .title, .subtitle h2 {
        font-size: 20px;
    }

    .nav {
        font-size: 1.2rem;
    }
    
    .mainSection {
        max-width: 90%;
        padding: 0%;
    }

    .nav a {
        padding: 0% 1.5%;
    }

    .press-kit-icon {
        min-width: 40px;
    }
    
    .homePageSize {
        width: 100%;
        margin: auto;
    }

  }

  /* bandsintown widget */
  .bit-mobile-date {
    font-size: 16px;
  }

  .bit-venue {
    font-size: 16px;
  }

  .bit-streamingText {
    font-size: 16px;
  }

  .bit-rsvp-text {
    font-size: 16px;
  }

  .substack-watermark {
    display: none;
  }

/* Add new class for home page specific styling */
/* .home-page-body {
    overflow: hidden;
} */

/* Modify existing homeImage class to be more specific */
.home-container .homeImage {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 1;
}

.home-container .homeImage a {
    height: 100%; /* Make anchor tag fill the container height */
    display: flex; /* Make anchor a flex container */
    justify-content: center;
    align-items: center;
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove any default padding */
    /* Debug properties to see the anchor */
}

.home-container .homeImage img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.home-container .homeNav {
    text-decoration: none;
    font-size: min(4vh, 24px);
}

.home-container .homeNav ul {
    list-style-type: none;
    margin: 2vh 0;
}

/* New container class that only affects home page */
.home-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2vh;
    height: auto;
    /* max-height: 100vh; */
    min-height: 100dvh;
    box-sizing: border-box;
    gap: 1vh;
}

.home-container .service-logos {
    margin-top: auto;
}

.home-container .contactDiv {
    /* max-height: 10vh; */
    height: auto;
}

.listen-logos {
    display: flex;
    flex-direction: row; /* Ensure items are in a row */
    justify-content: space-between; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    flex-wrap: wrap; /* Allow items to wrap if necessary */
    gap: 1vw;
    margin: 10px auto;
    width: 100%;
    max-width: 20rem;
}

.listen-logos img {
    width: 40px; /* Set a specific width for all logos */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure it doesn't exceed the container */
    object-fit: contain; /* Ensure the image fits within its dimensions */
}

@media (max-width: 950px) {
    .home-container .homeImage {
        height: auto;
    }
    
    .home-container .substack-container {
        max-height: auto;
    }

    .home-container .homeNav {
        font-size: max(2.5vh, 20px);
    }
}

@media (max-width: 600px) {
    .home-container .homeImage img {
        height: auto;
        min-height: 30px;
        object-fit: inherit;
    }
    .home-container .substack-container {
        min-height: 200px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Make substack container responsive */
.home-container .substack-container {
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-container .substack-container iframe {
    max-width: 100%;
    max-height: auto;
    width: auto;
    height: auto;
}

/* Adjust service logos size */
.home-container .service-logos {
    max-height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.latest-release {
    width: 80%;
    max-width: 400px;
    margin: 20px auto;
}

.latest-release-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.bit-mail-signup {
    border: none;
    transform: scale(0.8);
}

.bit-mail-signup iframe {
    border: none;
}

.bodyContainer iframe {
    margin: 10px 0;
}

.home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Safari-specific fix for Bandsintown widget */
/* @media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .bit-widget-container {
            width: 100% !important;
            max-width: 800px !important;
            margin: 0 auto !important;
        }
    }
} */

/* Safari-specific fix for Discord icon
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .discord-icon {
            width: 100%;
            max-width: 80px;
            height: auto;
            flex: 1;
        }
    }
} */