/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: white !important;  /* Using !important to override any other background-color */
    overflow-x: hidden;
}

p {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 100 !important;
}

section h2 {
    text-align: center;
    width: 100%;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 200;
    font-style: italic;
    color: #fff;
    text-shadow:
        0 0 7px rgba(128, 0, 32, 0.8),
        0 0 10px rgba(128, 0, 32, 0.8),
        0 0 21px rgba(128, 0, 32, 0.6),
        0 0 42px rgba(128, 0, 32, 0.4),
        0 0 82px rgba(128, 0, 32, 0.2);
    animation: neonPulse 1.5s ease-in-out infinite alternate;
}

/* Neon animation */
@keyframes neonPulse {
    from {
        text-shadow:
            0 0 7px rgba(128, 0, 32, 0.8),
            0 0 10px rgba(128, 0, 32, 0.8),
            0 0 21px rgba(128, 0, 32, 0.6),
            0 0 42px rgba(128, 0, 32, 0.4);
    }
    to {
        text-shadow:
            0 0 7px rgba(128, 0, 32, 0.9),
            0 0 10px rgba(128, 0, 32, 0.9),
            0 0 21px rgba(128, 0, 32, 0.7),
            0 0 42px rgba(128, 0, 32, 0.5),
            0 0 82px rgba(128, 0, 32, 0.3);
    }
}

/* Adjust section backgrounds to enhance neon effect */
.music-section h2,
.images-section h2,
.bio-section h2 {
    color: #fff;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 200 !important;
    font-style: italic !important;
}

/* Add smokey jazz bar feel to sections */
.music-section::before,
.bio-section::before {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(3px);
}

/* Adjust for mobile */
@media (max-width: 768px) {
    section h2 {
        font-size: 2rem;
        text-shadow:
            0 0 5px rgba(128, 0, 32, 0.8),
            0 0 8px rgba(128, 0, 32, 0.8),
            0 0 16px rgba(128, 0, 32, 0.6);
    }
}

/* body { */
    /* font-family: 'Montserrat', sans-serif; */
    /* line-height: 1.6; */
    /* color: white; */
    /* background-color: black; */
    /* overflow-x: hidden; */
/* } */

/* Navbar and Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: black;
    z-index: 1000;
}

/* Logo Styles */
.logo {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: 2rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #800020,
        0 0 42px #800020,
        0 0 82px #800020,
        0 0 92px #800020;
    animation: pulsate 1.5s infinite alternate;
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 1.2px;
    max-width: calc(100vw - 100px);
    text-align: center;
    padding: 0 20px;
    white-space: nowrap;
}

/* Neon pulsing animation */
@keyframes pulsate {
    100% {
        text-shadow: 
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px #800020,
            0 0 80px #800020,
            0 0 90px #800020;
    }
    0% {
        text-shadow: 
            0 0 2px #fff,
            0 0 4px #fff,
            0 0 6px #fff,
            0 0 10px #800020,
            0 0 45px #800020,
            0 0 55px #800020;
    }
}

/* Responsive adjustments */
@media (min-width: 1200px) {
    .logo {
        font-size: 2.4rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 991px) {
    .logo {
        font-size: 1.8rem;
        max-width: calc(100vw - 90px);
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        padding: 0 15px;
        max-width: calc(100vw - 80px);
        white-space: nowrap;
        line-height: 1.3;
        top: 25px;
        text-shadow: 
            0 0 4px #fff,
            0 0 7px #fff,
            0 0 15px #800020,
            0 0 25px #800020,
            0 0 35px #800020;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
        max-width: calc(100vw - 70px);
        padding: 0 10px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1002;
}

.hamburger:focus {
    outline: none;
}

/* .hamburger { */
    /* border: 1px solid red !important; */
/* } */

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Nav Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
}

.nav-menu.active {
    left: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #800020; /* Burgundy to match section titles */
}

/* Responsive adjustments */
@media (min-width: 769px) {
    /* Show regular nav menu */
    .nav-menu {
        position: static;
        flex-direction: row;
        justify-content: flex-end;
        background: none;
        height: auto;
        width: auto;
        left: 0; /* Ensure it's visible */
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0 1rem;
        margin: 0;
    }

    #menu {
        width: 300px;  /* Keep consistent width */
        background: black;  /* Maintain background */
        position: fixed;  /* Keep it fixed */
        transform: translate(-100%, 0);  /* Maintain off-screen position when closed */
    }
    
    #menuToggle input:checked ~ #menu {
        transform: none;  /* Ensure it slides in when checked */
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Section Layout */
section {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('images/CRchair.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

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

.hero-content {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 15px;
}

.hero-content .tagline {
    color: white;
    font-size: 1.2rem;
    display: inline-block;  /* Important for mobile */
    white-space: nowrap;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 24px;
    border-radius: 30px;
    margin: 0 auto;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        bottom: 30px;
    }

    .hero-content .tagline {
        font-size: 0.9rem;
        padding: 10px 20px;
        max-width: 90%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

/* Bio Section */
.bio-section {
    padding: 4rem 2rem;
    color: white;
    position: relative;
    background: url('images/PianoCR.jpeg') no-repeat center center;
    background-size: cover;
}

/* Add overlay for better text readability */
.bio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bio-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bio-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.bio-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.bio-text {
    flex: 1;
    text-align: left;
    color: white;
    font-family: 'Work Sans', sans-serif !important;
}

.bio-text p {
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 300 !important;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* .bio-text p:nth-child(4) { */
    /*line-height: 1.8;
    margin-top: 1rem;
}*/

/* Responsive adjustments */
@media (max-width: 768px) {
    .bio-content {
        flex-direction: column;
        align-items: center;
    }

    .bio-image {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

/* Music Section */
.music-section {
    padding: 0 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.music-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/CRmistletoe.PNG') no-repeat center center;
    background-size: cover;
    filter: blur(15px) brightness(0.7);
    z-index: 0;
    transform: scale(1.1);
}

.music-section > * {
    position: relative;
    z-index: 1;
}

.music-section h2 {
    color: black;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 100 !important;
    font-style: italic !important;
    margin-bottom: 2rem;
}

.streaming-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.stream-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.stream-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: white;
    color: black;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 180px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.spotify-embed {
    width: 100%;
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.streaming-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.stream-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.albums-grid {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.album {
    width: 375px;
    text-align: center;
    transition: transform 0.3s ease;
}

.album:hover {
    transform: scale(1.02);
}

.album img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album a:hover img {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .music-section {
        padding: 1rem;
    }

    .albums-grid {
        padding: 1rem;
        margin-bottom: 2rem;
    }

    .album {
        width: 300px;
    }

    .music-section::before {
        filter: blur(10px) brightness(0.6);
    }
}

/* Shows Section */
.shows-section {
    background-color: black;
}

.shows-grid {
    width: 100%;
    max-width: 1000px;
    margin-top: 2rem;
    padding: 0 1rem;
}

.show-card {
    background: #111;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
}

.show-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: white;
    color: black;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 150px;
}

.ticket-button:hover {
    background: #888;
    color: white;
    transform: translateY(-2px);
}

/* Videos Section */
.video-section {
    background-color: #111;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Create bokeh-style gradient background */
.video-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(128, 0, 32, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 32, 128, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(0, 32, 128, 0.3) 0%, transparent 60%);
    filter: blur(30px);
    transform: scale(1.5);
    z-index: 1;
    animation: slowMove 20s ease-in-out infinite alternate;
}

@keyframes slowMove {
    0% {
        transform: scale(1.5) translate(0, 0);
    }
    100% {
        transform: scale(1.5) translate(2%, 2%);
    }
}

/* Content stays above the gradient */
.video-section h2,
.video-section .video-grid {
    position: relative;
    z-index: 2;
}

.video-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    background: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 1rem 1rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .bio-content {
        flex-direction: column;
        align-items: center;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .spotify-embed {
        width: 100%;
    }
    
    .stream-buttons {
        width: 100%;
    }
}

/* Typography */
h1, h2, h3 {
    margin-bottom: 1rem;
}

h1 { 
    display: none;  /* Hide the bold "Chris Rob" text */
}

h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Footer */
footer {
    padding: 2rem;
    background-color: #111;
    text-align: center;
}

/* Image Control */
img {
    max-width: 100%;
    height: auto;
}

/* Images Section */
.images-section {
    background-color: rgb(240, 236, 236);
    padding: 4rem 2rem;
}

.image-scroll {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
}

.image-grid {
    display: flex;
    gap: 2rem;
    padding: 0 20px;
    min-width: min-content;
}

.image-card {
    flex: 0 0 auto;
    width: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 50px;
    box-sizing: border-box;
}

.modal img {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

/* Custom Scrollbar */
.image-scroll::-webkit-scrollbar {
    height: 8px;
}

.image-scroll::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.image-scroll::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

.image-scroll::-webkit-scrollbar-thumb:hover {
    background: #888;
}

/* Add media query for mobile view */
@media (max-width: 768px) {
    /* Hide the regular nav menu */
    .nav-menu {
        display: none;
    }

    /* Show hamburger only on mobile */
    .hamburger {
        display: flex;
    }

    /* When nav menu is active on mobile */
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }
}

/* Desktop view */
@media (min-width: 769px) {
    /* Hide hamburger on desktop */
    .hamburger {
        display: none;
    }

    /* Show regular nav menu */
    .nav-menu {
        display: flex;
        gap: 2rem;
    }
}

/* Menu Styles */
#menuToggle {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 45px;
    height: 45px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

#menuToggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff !important;
    border-radius: 3px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.8);
}

/* Hover effect enhancement */
#menuToggle:hover {
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}

/* Ensure the spans remain visible when menu is open */
#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: white;  /* Keep it white when menu is open */
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);  /* Maintain visibility */
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

/* When menu is open */
#menuToggle input:checked ~ #menu {
    left: 0;  /* Slide in from left */
}

#menu {
    position: fixed;
    top: 0;
    left: -100%;  /* Start completely off-screen */
    width: 250px;  /* Reduced width */
    height: 100vh;
    margin: 0;  /* Remove margin */
    padding: 70px 30px 30px;  /* Adjusted padding */
    background: rgba(0, 0, 0, 0.95);
    list-style-type: none;
    transition: left 0.3s ease;  /* Change to left transition */
    z-index: 9999;
}

#menu li {
    padding: 10px 0;
}

/* Ensure menu items are visible */
#menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
}

#menu li a:hover {
    color: #800020;  /* Hover color */
}

/* Hover effect for the hamburger */
#menuToggle:hover span {
    background: #f5ebeb;  /* Brighter white on hover */
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);  /* Enhanced glow on hover */
}
#menuToggle input:checked ~ ul {
    transform: none;
}

/* Adjust logo position */
.logo {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(45deg, #800020, #9a0026);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Work Sans', sans-serif;
    letter-spacing: 1px;
    max-width: calc(100vw - 80px);
    text-align: center;
    padding-left: 20px;
    white-space: nowrap;
}

/* Adjust for mobile screens */
@media (max-width: 768px) {
    .logo {
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding-left: 25px;
        max-width: calc(100vw - 70px);
        white-space: nowrap;
        line-height: 1.2;
    }
}

@media (min-width: 769px) {
    #menu {
        width: 200px;  /* Even smaller width for mobile */
        padding: 60px 20px 20px;
    }
    
    #menuToggle {
        top: 15px;
        left: 15px;
    }
}

.spotify-placeholder {
    width: 100%;
    height: 352px;
    background: #282828;
        display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 12px;
    font-size: 0.9rem;
}

.images-section h2 {
    color: black;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 100 !important;
    font-style: italic !important;
}

.music-section h2 {
    color: black;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 100 !important;
    font-style: italic !important;
}

/* Add color fixes for sections with white backgrounds */
.music-section, 
.images-section, 
.bio-section {
    color: black;
}

/* Album title and year */
.album h3,
.album p {
    color: black;
}

/* Tagline in hero section */
.hero-content .tagline {
    color: white;
    font-size: 1.4rem;
    white-space: nowrap;
    text-align: center;
    width: auto;
    margin: 0 auto;
    padding: 10px 20px;
    line-height: 1.4;
    text-shadow: 
        0 0 7px rgba(255,255,255,0.3),
        0 0 10px rgba(255,255,255,0.2),
        0 0 21px rgba(255,255,255,0.1);
    font-weight: 300;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-content {
        bottom: 40px;  /* Keep consistent with desktop */
    }
    
    .hero-content .tagline {
        font-size: 1.2rem;  /* Slightly smaller but still readable */
        padding: 10px 20px;  /* Keep consistent padding */
        white-space: nowrap;
        width: 85%;  /* Slightly narrower on mobile */
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .hero-content .tagline {
        font-size: 1rem;
        padding: 8px 15px;
        width: 90%;
    }
}

/* Landscape orientation */
@media (max-height: 480px) and (orientation: landscape) {
    .hero-content {
        bottom: 20px;
    }
    
    .hero-content .tagline {
        font-size: 1rem;
        padding: 8px 15px;
    }
}

/* Stream button text */
.stream-button {
    color: black;
}

/* Section headings for light background sections */
.music-section h2,
.images-section h2,
.bio-section h2 {
    color: black;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 100 !important;
    font-style: italic !important;
}

/* Signup Popup Styles */
.signup-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    backdrop-filter: blur(8px);
    width: 90%;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
    .signup-popup {
        padding: 20px;
        width: 85%;
    }

    .signup-content h3 {
        font-size: 1.5rem;
    }

    .signup-content p {
        font-size: 0.8rem;
    }

    .signup-form input,
    .signup-form button {
        padding: 8px;
    }
}

.signup-content {
    position: relative;
}

.signup-content h3 {
    color: black;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #800020, #9a0026);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.signup-content p {
    color: black;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-form input {
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.3);
    color: black;
    font-family: 'Work Sans', sans-serif;
}

.signup-form input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.signup-form button {
    padding: 10px;
    background: #800020;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    transition: background 0.3s ease;
}

.signup-form button:hover {
    background: #9a0026;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: black;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.close-popup:hover {
    background: rgba(0, 0, 0, 0.3);
}

.bio-title {
    font-weight: bold !important;
    font-size: 1.4em !important;
    margin-bottom: 1.5rem !important;
    text-align: center;
}

/* Music Section */
.music-section {
    padding: 0 1rem 1rem;  /* Reduce overall padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 1rem 1rem;
    }

    .music-section {
        padding-top: 0;  /* Remove top padding completely */
        padding-bottom: 1rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 0.25rem;  /* Minimal spacing under heading */
        margin-top: 0;  /* Remove top margin */
    }

    .album {
        margin-top: 0;  /* Remove top margin */
    }

    /* Adjust spacing between sections */
    .hero + .music-section {
        margin-top: -1rem;  /* Pull music section up slightly */
    }
}

/* Shows Section */
.shows-section {
    background-color: black;
}

.shows-section h2 {
    color: #fff !important;
    text-shadow:
        0 0 7px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 21px rgba(128, 0, 32, 1),
        0 0 42px rgba(128, 0, 32, 0.8),
        0 0 82px rgba(128, 0, 32, 0.6),
        0 0 92px rgba(128, 0, 32, 0.4);
    animation: neonPulseDark 1.5s ease-in-out infinite alternate;
}

/* Videos Section */
.video-section {
    background-color: #111;
}

.video-section h2 {
    color: #fff !important;
    text-shadow:
        0 0 7px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 21px rgba(128, 0, 32, 1),
        0 0 42px rgba(128, 0, 32, 0.8),
        0 0 82px rgba(128, 0, 32, 0.6),
        0 0 92px rgba(128, 0, 32, 0.4);
    animation: neonPulseDark 1.5s ease-in-out infinite alternate;
}

/* Specific animation for dark backgrounds */
@keyframes neonPulseDark {
    from {
        text-shadow:
            0 0 7px rgba(255, 255, 255, 0.8),
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 21px rgba(128, 0, 32, 1),
            0 0 42px rgba(128, 0, 32, 0.8);
    }
    to {
        text-shadow:
            0 0 7px rgba(255, 255, 255, 0.9),
            0 0 10px rgba(255, 255, 255, 0.9),
            0 0 21px rgba(128, 0, 32, 1),
            0 0 42px rgba(128, 0, 32, 0.8),
            0 0 82px rgba(128, 0, 32, 0.6),
            0 0 102px rgba(128, 0, 32, 0.4);
    }
}

/* Override any conflicting styles */
.music-section h2,
.images-section h2,
.bio-section h2,
.shows-section h2,
.video-section h2 {
    color: #fff;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 200 !important;
    font-style: italic !important;
    text-shadow:
        0 0 7px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 21px rgba(128, 0, 32, 1),
        0 0 42px rgba(128, 0, 32, 0.8),
        0 0 82px rgba(128, 0, 32, 0.6),
        0 0 92px rgba(128, 0, 32, 0.4);
    animation: neonPulseDark 1.5s ease-in-out infinite alternate;
}

/* Show info text styles */
.show-info .date {
    font-weight: bold;
    font-size: 1.2rem;
}

.show-info .venue {
    font-size: 1.1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .show-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .show-card {
        padding: 1rem;
    }
}

/* Footer social icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-icon {
    font-size: 1.5rem;  /* Set explicit size */
    color: white;
    transition: color 0.3s ease;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .social-icon {
        font-size: 1.2rem;  /* Slightly smaller on mobile */
        padding: 8px;  /* Add tap target padding */
    }
    
    .social-links {
        gap: 1.5rem;  /* Reduce gap on mobile */
    }
}