:root {
    --primary-brand-color: #a69eb0;
    --secondary-brand-color: #a69eb0;
    --button-filled-color: #4b4f58;
    --menu-bg-color: #000000;
    --menu-text-color: #dadae3;
    --menu-button-color: #fff;
    --primary-text-color: #000000;
    --secondary-text-color: #4d4d4d;
    --mobile-menu-text-color: #dadae3;
    --secondary-bg-color: #f7f7f7;
    --album-size: 320px;
    --font-color: #3a3a3a;
    --font-header-color: #4b4f58;
}

@font-face {
    font-family: 'Noe Display';
    src: url('./fonts/noe-display-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Noe Display Italic';
    src: url('./fonts/noe-display-regular-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Noe Display Bold';
    src: url('./fonts/noe-display-bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Noe Display Bold Italic';
    src: url('./fonts/noe-display-bold-italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #000;
}

main {
    min-height: calc(100vh - 650px);
    background-color: #fff;
}

/* Style for the default state of <a> tags */
a {
    color: var(--primary-brand-color);
    text-decoration: none;
    font-weight: normal;
}

/* Hover state for <a> tags */
a:hover {
    color: var(--secondary-brand-color);

}

/* Active state for <a> tags when clicked */
a:active {
    color: var(--primary-brand-color);
}

/* Focus state for <a> tags (useful for accessibility) */
a:focus {
    text-decoration: none;
}

ul,
ol {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 2em;
    text-align: left;
}

hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

h1,
h2,
h3 {
    color: var(--font-header-color);
}

h1 {
    font-size: 3rem;
    line-height: 1.2em;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.125rem;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 10px;
}

p {
    color: var(--font-color);
    font-size: 1em;
    line-height: 1.6em;
    margin-bottom: 20px;
}

/* Button Styling */
.btn {
    display: inline-block;
    border: 2px solid;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 1em;
    font-size: 15px;
    font-size: 0.9375rem;
    border-radius: 2px;
    margin-top: 1rem;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    margin-top: 1rem;
    transition: 0.2s;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn:focus {
    text-decoration: none;
}

.btn-filled {
    border-color: var(--button-filled-color);
    background-color: var(--button-filled-color);
    color: white;
}

.btn-filled:hover {
    background-color: transparent;
    color: var(--button-filled-color);
    text-decoration: none;
}

.btn-outline {
    border-color: var(--button-filled-color);
    background-color: transparent;
    color: var(--button-filled-color);
}

.btn-outline:hover {
    background-color: var(--button-filled-color);
    color: #ffffff;
    text-decoration: none;
}

.btn-colored {
    border-color: var(--primary-brand-color);
    background-color: var(--primary-brand-color);
    color: white;
}

.btn-colored:hover {
    background-color: transparent;
    color: var(--primary-brand-color);
    text-decoration: none;
}

.is-column {
    flex-direction: column !important;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Wrapper for Desktop Screens */
.wrapper {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


/* Wrapper for Desktop Screens */
.slim-container {
    max-width: 900px !important;
    text-align: left;
}

@media (max-width: 768px) {

    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
        /* Set to full width on mobile */
    }
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.container {
    display: flex;
    /* Use flexbox for layout */
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
    justify-content: space-around;
    /* Distribute space evenly */
    gap: 16px;
    /* Optional: space between sub-containers */
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Sub-container styles */
.sub-1-3-container {
    flex: 1 1 30%;
    max-width: 30%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.sub-1-3-container img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .sub-1-3-container {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Sub-container styles */
.sub-1-2-container {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.sub-1-2-container img {
    max-width: 100%;
}

@media (max-width: 768px) {
    .sub-1-2-container {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

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

.align-right {
    text-align: right;
}







/* Container for text and image section */
.container-text-image {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
}

/* Image styling */
.container-image {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional shadow for effect */
}

/* Text container styling */
.container-text {
    flex: 1;
    font-family: Arial, sans-serif;
    color: #333;
    padding: 10px;
}

/* Heading and paragraph styling */
.container-text h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.container-text p {
    font-size: 1em;
    line-height: 1.5;
}

/* Stack image and text vertically on small screens */
@media (max-width: 768px) {
    .container-text-image {
        flex-direction: column;
        /* Stack vertically */
        text-align: center;
    }

    .container-image {
        width: 100%;
        /* Make image full width on mobile */
    }
}










/* Header Styling */
#header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: var(--menu-bg-color);
}

#header header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.header-logo {
    display: flex;
    justify-content: left;
    width: 100%;
}

.header-logo a {
    z-index: 1005;
    text-decoration: none;
    color: var(--menu-text-color);
    /* Default text color */
}

.header-logo a h1 {
    font-family: var(--menu-text-color);
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 600;
}

.header-logo img {
    position: relative;
    z-index: 1005;
    width: 120px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {

    #header {
        height: 75px;
    }

    #header header {
        padding-top: 1.3rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 1rem;

    }

    .header-logo {
        justify-content: center;
    }
}









/* Desktop Navigation */
.desktop-nav {
    display: flex;
    width: 100%;
    z-index: 1002;
    ;
    position: absolute;
    justify-content: center;
    transition: 1s;
    transition: transform 0.3s ease;
}

.desktop-nav a {
    text-transform: uppercase;
    color: var(--menu-text-color);
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    transition: 0.3s;
}

.desktop-nav a:hover {
    color: white;
}

.desktop-nav a:active {
    color: white;
}













/* Hamburger Icon */
.menu-toggle {
    right: 2rem;
    z-index: 1003;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.28rem;
    position: relative;
    z-index: 1001;
}

/* Hide mobile nav and hamburger icon on desktop */
.menu-toggle {
    display: none;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--menu-button-color);
    transition: all 0.3s ease;
}

/* Transform hamburger into an X when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.menu-toggle.active span {
    background-color: var(--mobile-menu-text-color);
}

/* Full-Screen Mobile Navigation */
.mobile-nav {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Links */
.mobile-nav a {
    color: var(--mobile-menu-text-color);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: white;
}

/* Mobile-specific styling */
@media (max-width: 768px) {

    /* Hide desktop nav */
    .desktop-nav {
        display: none;
    }

    /* Show hamburger nav */
    .menu-toggle {
        display: flex;
        position: absolute;
    }
}





#language-switcher,
#language-switcher-mobile {
    cursor: pointer;
}

.lang-switch {
    display: block;
    z-index: 1004;
}

/* Mobile-specific styling */
@media (max-width: 768px) {

    .lang-switch {
        display: none;
    }
}

.mobile-lang-switch {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 20px;
}

.mobile-lang-switch a {
    color: var(--secondary-brand-color);
    font-size: 1.4rem;
}









/* Hero Section Styling */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 1.5s ease-in-out forwards;
    background-image: url('/images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #ffffff;
    color: #000000;
    height: 100vh;
}

/* Hero Content Flexbox */
.hero-content {
    position: absolute;
    bottom: 150px;
    align-items: center;
    max-width: 900px;
    /* Controls max width */
    gap: 1.5rem;
}

/* Hero Text */
.hero p {
    color: #ffffff;
    margin: 0.5rem 0;
}

.hero h1 {
    font-size: 4rem;
    margin: 1rem 0;
    color: #ffffff;
}

.hero h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero .btn {
    font-size: 1.1rem;
    background-color: #fff;
    color: #000000;
}

.hero .btn:hover {
    background-color: #cacaca;
    color: #000000;
}

/* Responsive Styling for Desktop */
@media (min-width: 768px) {
    .hero-text {
        flex: 1;
        /* Takes up available space */
        text-align: left;
    }


}








/* Slideshow container */
.slideshow {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
}

/* Individual slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Slide image */
.slide .picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide image */
.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    /* Adjust based on gradient height */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    pointer-events: none;
    /* Ensures the overlay doesn't interfere with interaction */
}

/* Slide title container */
.slide-text {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.7);
}

/* Slide title */
.slide-title {
    font-size: 2.125rem;
    font-weight: 500;
    margin: 0;
    color: white;
}

/* Slide subtitle */
.slide-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 10px;
    color: white;
}

/* Slideshow navigation buttons */
.slideshow-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.slideshow-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .slideshow {
        height: 480px;
    }

    .slide-text {
        bottom: 50px;
    }

    .slide-title {
        font-size: 1.5rem;
    }

    .slide-subtitle {
        font-size: 0.875rem;
    }
}










.empty-page {
    min-height: 70vh;
}



















.page {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: left;
}










#index-about {
    background-color: white;
}

#index-releases {
    background-color: #f5f5f5;
}

#index-artists {
    background-color: white;
}

#index-player {
    background-color: #f5f5f5;
}

#soundcloud-embed {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

#index-contact {
    background-color: white;
}



#service-overview {
    background-color: white;
}

#service-intro {
    background-color: #f5f5f5;
}

#service-adds {
    background-color: white;
}

#service-questions {
    background-color: #f5f5f5;
}




.service-box {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 0px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .02), 0 1px 2px rgba(0, 0, 0, .14);
}

.service-name {
    font-size: 2rem;
    font-weight: 600;
    line-height: normal;
    min-height: 100px;
    margin-bottom: 20px;
}

.service-description {
    min-height: 200px;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}

.service-unit {
    padding-bottom: 40px;
    min-height: 90px;
}

.service-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .service-box {
        margin-bottom: 40px;
        max-width: 400px;
    }

    .service-name {
        min-height: 0px;
    }

    .service-description {
        min-height: 0px;
    }

    .service-unit {
        padding-bottom: 20px;
        min-height: 0px;
    }
}






.service-list {
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 30px;
    margin-top: 70px;
}

.service-list h3 {
    text-align: left;
}

.service-list ul {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.service-list ul li {
    list-style: none;
    text-align: left;
    padding-bottom: 30px;
}

.service-list ul li b {
    display: block;
    width: 100%;
    padding-bottom: 4px;
}








#contact {
    background-color: white;
    height: 100%;
    position: relative;
}

.contact-background {
    background: var(--secondary-bg-color);
    position: absolute;
    width: 70%;
    height: 100%;
    bottom: 40px;
    right: 0px;
    left: auto;
    top: 0px;
    z-index: 0;
    opacity: 1;
    animation: fade-in .4s ease-out .2s forwards;
}

/* Container for the contact section */
.contact-container {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20x;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1;
    position: relative;
}

/* Left column for the header text */
.contact-info {
    flex: 1;
    text-align: left;
}

/* Styling the header text */
.contact-info h2 {
    font-size: 2em;
    color: #333;
    text-align: left;
}

/* Contact form container */
.contact-form {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

/* Form group styling */
.form-row {
    text-align: left;
    margin-bottom: 30px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input,
textarea {
    all: unset;
    width: 100%;
    border: none;
    border-bottom: 2px solid #dedede;
    border-radius: 0px;
    font-size: 16px;
    line-height: 24px;
    padding-top: 16px;
    padding-bottom: 11px;
    /*padding: 11px 16px;*/
}

textarea {
    display: block;
    box-sizing: border-box;
    min-height: 50px;
    resize: vertical;
    overflow-y: auto;
}

input:focus,
textarea:focus {
    border: none;
    border-bottom: 2px solid #000000;
}

input:active,
textarea:active {
    border: none;
    border-bottom: 2px solid #000000;
}

.form-return {
    margin-top: 15px;
    font-size: 16px;
    color: green;
    text-align: center;
}

.form-return.error {
    color: red;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

button[type="submit"] {
    width: 100%;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .contact-background {
        display: none;
    }

    .contact-container {
        flex-direction: column;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
        /* Stack columns vertically */
    }

    .contact-info h2 {
        text-align: center;
    }

    .contact-form {
        margin: 0;
        padding: 0;
        max-width: 1000px;
    }

}







/* Container for the horizontal scrolling list */
.release-list-wrapper {
    padding-left: 0;
    padding-right: 0;
}

/* Container for the horizontal scrolling list */
.release-list-container {
    display: flex;
    overflow-x: auto;
    /* Enable scrolling */
    scroll-snap-type: x mandatory;
    gap: 0px;
    width: calc(100% - 140px);
    padding-bottom: 40px;
    margin-left: 70px;
    margin-right: 70px;
    box-sizing: border-box;
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
}

/* Each release item */
.release-item {
    flex: 0 0 auto;
    /* Prevent items from shrinking and set fixed width */
    width: 180px;
    padding-left: 15px;
    padding-right: 15px;
    /* Adjust as needed */
    text-align: center;
    scroll-snap-align: start;
}

/* Release cover image styling */
.release-cover {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.release-cover.loaded {
    opacity: 1;
}

/* Release title and artist text */
.release-info {
    margin-top: 8px;
}

.release-title {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    color: #333;
}

.release-artist {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* Optional: Styling the scroll bar (webkit browsers) */
.release-list-container::-webkit-scrollbar {
    height: 8px;
}

.release-list-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.release-list-container::-webkit-scrollbar-track {
    background: transparent;
}






.release-scroll-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 8px;
    /* Adjust as needed for spacing */
    z-index: 10;
    /* Ensure they appear above other elements */
}

.release-scroll-button {
    background-color: rgba(0, 0, 0, 0.7);
    /* Semi-transparent background */
    color: white;
    /* Icon or text color */
    border: none;
    border-radius: 50%;
    /* Circular buttons */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.release-scroll-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
    /* Darker on hover */
    transform: scale(1.1);
    /* Slightly enlarge on hover */
}

.release-scroll-button:active {
    transform: scale(0.9);
    /* Press effect */
}

.release-scroll-button.disabled {
    background-color: rgba(0, 0, 0, 0.3);
    /* Lighter background for disabled state */
    cursor: not-allowed;
    /* Indicate non-clickable state */
}

.release-scroll-button svg {
    width: 24px;
    height: 24px;
    fill: white;
    /* Icon color */
}

/* Ensure proper positioning */
.release-scroll-button.left {
    position: absolute;
    left: 0px;
    /* Adjust based on container */
    top: 75px;
    transform: translateY(-50%);
}

.release-scroll-button.right {
    position: absolute;
    right: 0px;
    /* Adjust based on container */
    top: 75px;
    transform: translateY(-50%);
}

@media (max-width: 768px) {

    .release-list-container {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }

    .release-scroll-buttons {
        display: none;
    }
}








.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
    .album-grid {
        grid-template-columns: 1fr;
        padding-left: 0px;
        padding-right: 0px;
        /* Single column */
    }
}

.album {
    background: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
    cursor: pointer;
}

.album:hover {
    background: white;
    transform: scale(1.01);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.album img {
    border-radius: 4px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.album img.loaded {
    opacity: 1;
}

.album-info {
    padding: 15px;
}

.album-title {
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px;
}

.album-artist {
    font-size: 14px;
    color: #666;
}

.album-credits {
    font-size: small;
    color: #a69eb0;
    padding-top: 18px;
}

.album-feature {
    font-size: 14px;
    color: #666;
}








#release-container {
    width: 100%;
    max-width: 520px;
    text-align: center;
    display: inline-block;
}

#release-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-wrap: balance;
}

.release-image {
    display: inline-block;
    width: 50%;
    margin-bottom: 20px;
}

.release-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.streaming-links img {
    width: 100%;
}

.artist-seperator::after {
    content: ", ";
}

.streaming-credits {
    font-size: small;
    padding-top: 50px;
}

.streaming-links {
    padding: 0px;
    margin-top: 20px;
}

.streaming-link-button {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    margin: 5px 0;
    border-radius: 5px;
    background-color: #f0f0f0;
    border: #f0f0f0 1px solid;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.platform-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: contain;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.streaming-link-button:hover {
    background-color: #f0f0f0;
    border: #000000 1px solid;
}

.streaming-link-button:hover .platform-icon {
    /*filter: brightness(0) invert(1);*/
}

.streaming-link-button span {
    flex-grow: 1;
}







#link-box {
    float: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh);
    margin: 0;
}

#link-box .btn {
    text-align: center;
    min-width: 300px;
}

#link-box .btn:hover {
    color: white;
    background-color: #333;
    text-align: center;
    min-width: 300px;
}













/* Basic Footer Styling */
footer {
    position: relative;
    background-color: #000000;
    color: #fff;
    margin-top: 70px;
}

/* Full-width Footer Sections */
.footer-section {
    width: 100%;
    padding: 30px 0;
    text-align: center;
    border-bottom: 0px solid #444;
    /* Optional: Add a separator line between sections */
}

.footer-section:last-child {
    border-bottom: none;
}

/* Social Links */
.social-links {
    gap: 1rem;
    /* Space between icons */
    justify-content: center;
}

.social-links h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    margin-left: 1rem;
    font-size: 1.9rem;
    /* Adjust icon size */
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links.bk a {
    color: #000000;
}

.social-links a:hover {
    color: var(--primary-brand-color);
}







/* Footer Menus */
.footer-menus {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-stack {
    text-align: left;
    width: 25%;
    padding-bottom: 0rem;
}

.menu-stack p {
    color: #b8b8b8;
}

.menu-stack h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.menu-stack a {
    display: block;
    color: #ddd;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.menu-stack a:hover {
    color: var(--primary-brand-color);
}

/* Logo & Legal Links */
.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid #444;
    gap: 2rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
    transition: 0.4s;
}

.logo-copyright {
    display: flex;
    align-items: center;
    /* Center items vertically */
    justify-content: center;
    /* Center items horizontally */
    gap: 10px;
    /* Space between logo and text */
}

/* Media Query for Mobile: Stack logo and text vertically */
@media (max-width: 768px) {
    .logo-copyright {
        flex-direction: column;
        /* Stack items vertically */
        text-align: center;
    }
}

.logo-copyright p {
    font-size: 0.9rem;
    color: #ddd;
}

.logo-copyright img {
    width: 40px;
    /* Adjust logo size as needed */
    height: auto;
}

.legal-links a {
    color: #ddd;
    text-decoration: none;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: var(--primary-brand-color);
}

/* Responsive Design */
@media (max-width: 768px) {

    /* Center-align content on mobile */
    .footer-section {
        text-align: center;
    }

    .footer-menus {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .menu-stack {
        text-align: center;
        width: 100%;
        padding-bottom: 2rem;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
    }
}












.cookie-consent {
    position: fixed;
    /* or absolute depending on how you want it positioned */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* light black with 50% transparency */
    z-index: 9999;
    /* ensures the cookie tool is on top of other content */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.cookie-management-button {
    cursor: pointer;
}

/* cookie-consent.css */
.cookie-consent-modal {
    display: block;
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 500px;
    width: auto;
    top: 50%;
    background-color: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 2px;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-consent-modal p {
    margin: 0;
    flex-grow: 1;
    padding-right: 20px;
}

.cookie-consent-buttons {
    display: block;
    gap: 10px;
}

.cookie-consent-footer {
    justify-content: center;
    display: flex;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    gap: 10px;
    border-top: 2px;
    border-bottom: 0px;
    border-left: 0px;
    border-right: 0px;
    border-style: solid;
    border-color: #ebebeb;
}


@media (max-width: 768px) {
    .cookie-consent-modal {
        left: 0;
        transform: translateX(0);
        max-width: none;
        width: 100%;
        bottom: 0;
        top: auto;
    }
}










.playlist-curation-page {
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
    padding-top: 0px;
}

.hero-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #000, transparent), url('hero-bg.jpg') no-repeat center/cover;
    color: white;
}

.hero-section h1 {
    font-size: 2.5em;
    color: white;
}

.hero-section p {
    color: white;
    font-size: 1.2em;
    margin-top: 10px;
}

.about-section {
    margin: 40px 0;
    text-align: center;
}

.about-section h2 {
    font-size: 2em;
}

.about-section p {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}

.platforms-section {
    text-align: center;
}

.platforms-section h2 {
    font-size: 2em;
}

.platform-list {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.platform-list a {
    text-align: center;
    color: #000;
    text-decoration: none;
}

.platform-list img {
    height: auto;
    width: 200px;
}

.featured-playlists {
    margin: 80px 0;
}

.featured-playlists h2 {
    text-align: center;
    font-size: 2em;
}

.playlist-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.playlist-item {
    background: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 300px;
    text-align: center;
}

.playlist-item img {
    width: 100%;
    border-radius: 10px;
}

.playlist-item h3 {
    font-size: 1.2em;
    margin: 10px 0;
}

.playlist-item p {
    color: #666;
    font-size: 0.9em;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background: #555;
}












.service-faq {
    background-color: #f5f5f5;
    border-radius: 4px;
}

.service-faq h3 {
    text-align: left;
}

.service-faq ul {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
}

.service-faq ul li {
    list-style: none;
    text-align: left;
    padding-bottom: 30px;
}

.service-faq ul li b {
    display: block;
    width: 100%;
    padding-bottom: 4px;
}




.page-hero {
    background-color: #000000;
    padding-bottom: 100px;
}

.page-hero p,
.page-hero h1,
.page-hero h2,
.page-hero h3 {
    color: #fff;

}

.page-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero .wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}