@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

body {
    background-color: black;
}

.navbar-container {
    position: relative;
}

.navbar-scrolled {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 120px;
    position: fixed;
    background-color: #000;
    z-index: 999;
}

.navbar {
    display: flex;
    align-items: center;
    width: 100vw;
    height: 120px;
    position: fixed;
    background-color: none;
    z-index: 999;
    transition: 0.3s;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
    gap: 3.5rem;
}

.navbar_logo img {
    width: auto;
    height: 25px;
    padding-left: 50px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon ion-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    padding: 0 40px 0 20px;
}

.cart-icon span{
    position: absolute;
    background-color: none;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    top: 50%;
    right: 22px;
}

.navbar_menu {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    background: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.navbar_item {
    list-style: none;
}

.navbar_links {
    text-decoration: none;
    color: white;
    background: none;
    transition: all 0.4s;
}

.navbar_links:hover {
    border-bottom: 2px solid white;
}

.social-media-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 5px;
    padding-right: 20px;
}

.social-media-container a {
    text-decoration: none;
}

.social-media-icons ion-icon {
    width: 20px;
    height: 20px;
    color: #fff;
}

.social-media-icons i {
    font-size: 1.3rem;
    color: #fff;
}


.navbar_toggle {
    display: none; /* Make the navbar toggle hidden by default */
    margin: 10px 0 0 0;
    cursor: pointer;
}

.navbar_toggle .bar {
    width: 30px;
    height: 3px;
    margin: 3px auto;
    transition: all 0.2s ease-in-out;
    background: #fff;
    display: block;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.large-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.large-logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/homepagebackground.png");
    background-size: cover;
    background-position: center;
    filter: brightness(80%);
    z-index: -10;
}

.large-logo-container img {
    max-width: 80%;
}

.homepage-information-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: black;
    padding: 50px;
}

.homepage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    min-width: 350px;
    padding-bottom: 50px;
}

.homepage-content-info {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1.4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.homepage-text {
    margin-bottom: 15px;
}

.homepage-headers {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 20px;
}

.homepage-links {
    border-radius: 5px;
    background-color: #7c02e7;
    width: 180px;
    height: 60px;
    line-height: 55px;
    cursor: pointer;
    transition: 0.2s;
    text-align: center;
    margin-bottom: 10px;
}

.homepage-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
}

.homepage-links:hover {
    background-color: rgba(123,3,231,0.7);
}

.homepage-images {
    width: 90%;
    max-width: 500px;
    padding: 5px 0 20px 0;
}

.homepage-images img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.homepage-images iframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.homepage-content-info h2 {
    font-weight: 200;
    font-size: 1.1rem;
    padding-bottom: 10px;
}

.homepage-content-info a {
    text-decoration: underline;
    color: white;
    font-size: 1.1rem;
    transition: ease-in-out 0.2s;
}

.homepage-content-info a:hover {
    color:#7c02e7;
    text-decoration: none;
}

.homepage-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
    background: black;
    width: 100%;
}

.homepage-signup h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
}

.signup-container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    gap: 1rem;
}

.email-input {
    width: 300px;
    height: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: black;
    padding-left: 20px;
}

.email-input:focus {
    outline: 2px solid white;
}

.signup-container button {
    border: none;
    border-radius: 5px;
    background-color: #7c02e7;
    width: 120px;
    height: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

.signup-container button:hover {
    background-color: rgba(123,3,231,0.7);
}


footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100vw;
    background-color: #7c02e7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1.2rem;
    color: #fff;
}

.events-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    background: #000;
    padding: 100px 100px 0 100px;
}

.events-large-header-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/eventsbackground.jpg");
    background-size: cover;
    background-position: 80% 0%;
    width: 100%;
    height: 100vh;
}

.events-large-header-img-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    color: #fff;
}

.events-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    background: black;
    padding-bottom: 100px;
}

.event-poster-container {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.event-poster-container img {
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 2/1.1;
}

.events-info-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.event-headers h1 {
    font-weight: 500;
    padding-bottom: 20px;
}

.event-text p {
    font-weight: 200;
    padding-bottom: 20px;
    line-height: 1.8;
}

.event-buttons {
    border: none;
    border-radius: 5px;
    background-color: #7c02e7;
    width: 180px;
    height: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 10px;
}

.event-buttons:hover {
    background-color: rgba(123,3,231,0.7);
}

.event-images-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-images-container img {
    max-width: 23%;
    flex: 1; /* Each image will take up equal space */
    width: 100%; /* Full width of their flex container */
    height: 100%; /* Full height to maintain aspect ratio */
    object-fit: cover; /* Crop to maintain aspect ratio */
    aspect-ratio: 1 / 1; /* Ensures the images are always squares */
}


.artists-large-header-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/artistsbackground.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.artists-large-header-img-container h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #fff;
}

.artist-hero {
    padding: 100px 100px 0 100px;
    width: 100%;
    max-width: 1200px;
}

.artists-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    background: black;
    padding-bottom: 100px;
}

.artist-image-container {
    width: 50%;
    max-width: 600px;
}

.artist-image-container img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.artist-info-container {
    width: 50%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-align: center;
}

.artist-headers h1 {
    font-weight: 500;
    font-size: 2.5rem;
    padding-bottom: 20px;
}

.artist-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.dropdown-button {
    border: none;
    border-radius: 5px;
    background-color: transparent;
    width: 80%;
    max-width: 400px;
    height: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #7c02e7;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 20px;
}

.dropdown-button:hover {
    background-color: #7c02e7;
    color: white;
}

.artist-content {
    font-weight: 200;
    line-height: 1.6;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.artist-content p {
    padding-bottom: 20px;
}

.close-artist-content {
    border: none;
    border-radius: 5px;
    background-color: transparent;
    width: 80%;
    max-width: 400px;
    height: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #7c02e7;
    cursor: pointer;
    transition: 0.2s;
    margin-bottom: 20px;
}

.close-artist-content:hover {
    background-color: #7c02e7;
    color: white;
}

.artist-socials-links {
    width: 260px;
    display: flex;
    flex-direction: column;
    margin-left: 40px;
}

.artist-socials-links p {
    padding-bottom: 20px;
}

.artist-socials-links a {
    text-decoration: none;
}

.artist-social-media-icons {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 45px;
    justify-content: flex-start;
    align-items: center;
}

.artist-social-media-icons p {
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

.artist-social-media-icons ion-icon {
    width: 40px;
    height: 40px;
    color: #fff;
    padding: 0 10px;
}

.artist-social-media-icons i {
    font-size: 2.4rem;
    color: #fff;
    padding: 0 10px;
    margin-left: 2px;
}

.artist-social-media-icons img {
    margin-left: 18px;
}

.listen-large-header-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/listenbackground.jpg");
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.listen-large-header-img-container h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #fff;
}

.listen-hero {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.listen-mix-container {
    width: 100%;
    padding: 50px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.listen-row-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    background: black;
}

.listen-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 50px;
}

.listen-content-info {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-size: 1.4rem;
    text-align: left;
    min-width: 300px;
}

.listen-headers {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 20px;
    padding-top: 20px;
}

.soundcloud-api-container {
    width: 100%;
    min-width: 300px;
}

.listen-images {
    height: 300px;
    width: 100%;
}

.listen-images img {
    width: 100%;
    min-width: 300px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.listen-text {
    font-weight: 200;
    font-size: 1.1rem;
    padding-bottom: 20px;
    line-height: 1.7;
}

.store-hero {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.store-large-header-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/storebackground.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
}

.store-large-header-img-container h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #fff;
}

.discount-code {
    text-align: center;
    padding-top: 50px;
}

.discount-code h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    color: #fff;
}

.store-container {
    padding: 50px 100px;
}

.product-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.products {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.product-image-container .top:hover {
    opacity: 0;
    cursor: pointer;
}

.product-info {
    padding-top: 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.product-info .product-name {
    font-weight: 400;
    font-size: 1.5rem;
}

.product-info .product-price {
    font-weight: 200;
    font-size: 1.1rem;
}

.individual-product-page-container {
    width: 100vw;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
}

.link-container {
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

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

.individual-product-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.slideshow-container {
    width: 50%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.small-product-images {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 290px;
    gap: 10px;
}

.small-product-images img {
    width: 50px;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.slideshow {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.slideshow-large-image {
    position: relative;
    overflow: hidden;
}

.slideshow-images {
    width: 100%;
}

.slideshow-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/* Next & previous buttons */
.prev,
.next {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  cursor: pointer;
  width: auto;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 50px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    margin-right: 10px;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    margin-left: 10px;
}

.slide-in-left {
    animation-name: slide-in-left;
    animation-duration: 0.3s;
}

.slide-in-right {
    animation-name: slide-in-right;
    animation-duration: 0.3s;
}

@keyframes slide-in-left {
    from {
        transform: translateX(-100%);
        opacity: 0.8;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0.8;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/* Number text (1/3 etc) */
.number-text {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 5px 2px;

    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}


.individual-product-info-container {
    max-width: 650px;
    width: 45%;
}

.product-description {
    color: white;
    margin-left: 60px;
}

.product-description h1 {
    font-weight: 500;
    font-size: 2.3rem;
    padding-bottom: 30px;
}

.product-description .price {
    font-weight: 400;
    font-size: 1.3rem;
    padding-bottom: 30px;
}

.product-description p {
    font-weight: 200;
    font-size: 1.1rem;
    padding-bottom: 20px;
    line-height: 1.6;
}


.product-description ul {
    font-weight: 200;
    font-size: 1.1rem;
    padding-bottom: 20px;
    padding-left: 20px;
    line-height: 2;
}

.size-selector {
    width: 100%;
    max-width: 600px;
    margin-left: 60px;
    padding: 30px 0 50px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: white;
    font-weight: 300;
    font-size: 1.1rem;
}

.size-selector select {
    width: 80%;
    height: 70px;
    color: white;
    background-color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    padding-left: 20px;
}

.size-selector select:focus {
    outline: 2px solid white;
}

.size-selector span {
    color: grey;
    display: none;
}

.invalid-input {
    outline: 2px solid red;
}

.invalid-input span {
    display: block;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    margin-left: 60px;
    color: white;
    gap: 8px;
    font-weight: 300;
    font-size: 1.1rem;
    padding-bottom: 50px;
}

.quantity-selector input {
    width: 100px;
    height: 70px;
    color: white;
    background-color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    padding-left: 20px;
    border: 1px solid grey;
}

.quantity-selector input:focus {
    outline: 2px solid white;
}

.add-to-cart-button {
    border: none;
    border-radius: 5px;
    background-color: #7c02e7;
    width: 80%;
    height: 60px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    margin-left: 60px;
    max-width: 480px;
}

.add-to-cart-button:hover {
    background-color: rgba(123,3,231,0.7);
}

.size-guide-container {
    color: white;
    padding: 100px 50px 0 50px;
    font-weight: 200;
}

.size-guide-container p {
    padding-bottom: 25px;
}

.size-guide-container ul {
    line-height: 2;
    padding-bottom: 25px;
    padding-left: 15px;
}


/* cart */

.cart-container {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 100%;
    margin: auto;
    transition: transform .5s;
    font-family: 'Montserrat', sans-serif;
    z-index: 10000;
}

.cart-tab{
    width: 100vw;
    max-width: 450px;
    height: 100vh;
    background-color: #000;
    color: white;
    position: fixed;
    top: 0;
    right: -500px;
    bottom: 0;
    display: grid;
    grid-template-rows: 100px 1fr 70px;
    transition: .5s;
    text-align: center;
}
.cart-container.showCart .cart-tab{
    right: 0;
}
.cart-tab h1 {
    font-weight: 500;
    font-size: 1.8rem;
    padding-top: 30px;
}
.cart-tab .cart-buttons{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cart-tab button{
    background-color: #7c02e7;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
}
.cart-tab .close-button{
    background-color: #eee;
    color: #000;
}
.cart-items .item{
    display: grid;
    /*adjust column widths*/
    grid-template-columns: 100px 100px 100px 1fr;
    text-align: center;
    align-items: center;
    height: 50px;
}
.cart-items .quantity{
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-items .quantity span{
    width: 25px;
    height: 25px;
    background-color: none;
    border-radius: 50%;
    color: #eee;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 22px;
}
.cart-items .quantity span:nth-child(2){
    cursor: auto;
    font-size: 1.1rem;
}
.cart-items .quantity span:nth-child(1){
    line-height: 20px;
}
.cart-items .item:nth-child(odd){
    background-color: rgba(255,255,255,0.1);
}
.cart-items{
    overflow: auto;
}
.cart-items::-webkit-scrollbar{
    width: 0;
}

@media screen and (max-width: 1000px) {
    .store-container {
        padding: 50px 40px;
    }
}

/* Media query to display the toggle button on screens less than 920px */
@media screen and (max-width: 920px) {

    .navbar {
        position: fixed;
        justify-content: flex-end;
    }

    .navbar-container {
        position: relative;
    }

    .navbar_logo {
        position: absolute;
        top: 45px;
        left: 0;
    }

    .navbar-content {
        display: flex;
        flex-direction: column;
        width: 100vw;
        background: black;
        position: absolute;
        top: -300px;
        opacity: 0;
        gap: 2rem;
        transition: all 0.3s;
        pointer-events: none;
    }

    .navbar-content.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 110px;
        opacity: 1;
        pointer-events: auto;
        padding-bottom: 50px;
    }

    .navbar_menu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        font-size: 2.5rem;
        text-align: center;
    }

    .homepage-information-container {
        display: flex;
        flex-direction: column;
    }

    .homepage-content {
        width: 100%;
    }

    .social-media-container {
        flex-direction: row;
        justify-self: center;
        padding-right: none;
    }

    .social-media-icons ion-icon {
        width: 40px;
        height: 40px;
    }

    .social-media-icons i {
        font-size: 2.6rem;
    }

    .cart-icon ion-icon {
        padding-right: 90px;
    }

    .cart-icon span{
        position: absolute;
        top: 50%;
        right: 73px;
    }

    .navbar_toggle {
        display: grid;
        position: absolute;
        right: 40px;
        top: 35px;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .events-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        background: black;
    }

    .event-poster-container {
        width: 80%;
    }

    .events-info-container {
        width: 100%;
    }

    .artist-hero {
        padding: 100px 50px 0 50px;
    }

    .listen-row-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .listen-content {
        width: 80%;
        padding: 50px 0 50px 0;
    }

    .individual-product-page-container {
        width: 100vw;
        padding: 120px 0;
        display: flex;
        flex-direction: column;
        font-family: 'Montserrat', sans-serif;
    }

    .link-container {
        margin-left: 60px;
    }

    .individual-product-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .slideshow-container {
        width: 100%;
        padding: 0 60px 40px 60px;
    }

    .small-product-images {
        display: none;
    }

    .individual-product-info-container {
        width: 100%;
        max-width: none;
        padding: 0 60px;
    }

    .product-description {
        text-align: left;
        margin: 0;
    }

    .size-selector, .quantity-selector, .add-to-cart-button {
        margin: 0;
        width: 100%;
    }

    .size-selector select {
        width: 100%;
    }

    .size-guide-container {
        padding: 100px 20px 0 20px;
        width: 100%;
    }
}



@media screen and (max-width: 600px) {

    .events-hero {
        padding: 40px 40px 0 40px;
    }

    .events-container {
        padding-bottom: 80px;
    }

    .artist-hero {
        padding: 100px 30px 0 30px;
    }

    .artists-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .artist-image-container {
        padding: 0 0 20px 0;
        width: 100%;
        order: 1;
    }

    .artist-info-container {
        padding: 0;
        width: 100%;
        order: 2;
    }

    .dropdown-button {
        margin-bottom: 25px;
    }

    .listen-content {
        width: 100%;
        padding: 50px 20px 50px 20px;
    }

    .listen-content-info {
        min-width: 250px;
        width: 100%;
    }

    .soundcloud-api-container {
        min-width: 250px;
        width: 100%;
    }

    .listen-images img {
        width: 100%;
        min-width: 250px;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .product-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .products {
        width: 100%;
        padding-bottom: 50px;
    }

    .individual-product-page-container {
        width: 100vw;
        padding: 120px 0;
        display: flex;
        flex-direction: column;
        font-family: 'Montserrat', sans-serif;
    }

    .individual-product-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .slideshow-container {
        width: 100%;
        padding: 0 20px 40px 20px;
    }

    .small-product-images {
        display: none;
    }

    .individual-product-info-container {
        width: 100%;
        max-width: none;
        padding: 0 20px;
    }

    .product-description {
        text-align: left;
        margin: 0;
    }

}

