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

body {
    font-family: "BioRhyme", serif;
    margin-left: 33.333%;
}

html {
    scroll-behavior: smooth;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 33.333%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mute-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 0;
}

.mute-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.mute-toggle:active {
    transform: scale(0.95);
}

.mute-toggle .sound-icon {
    width: 24px;
    height: 24px;
    color: #333;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

svg {
    width: 100%;
    height: auto;
    display: block;
}

section {
    min-height: 100vh;
    padding: 200px 20px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

section > * {
    max-width: 1280px;
    width: 100%;
}

.section-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.section-header svg {
    width: 100%;
    height: auto;
    display: block;
}

section:first-of-type {
    padding-top: 20vw;
}

section h1 {
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

section p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    text-align: center;
}

.band-content {
    margin-top: 5rem;
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}

.band-left {
    flex: 1;
}

.band-left img {
    width: 100%;
    height: auto;
    display: block;
}

.band-center {
    flex: 1;
}

.band-right {
    flex: 1;
    padding: 20px;
}

.music-header {
    font-size: 24px;
    margin-bottom: 10px;
    font-style: italic;
}

.music-artist {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.music-source {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.music-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.music-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background 0.2s;
}

.music-link:hover {
    background: #e0e0e0;
}

.music-link svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.track-list {
    list-style: none;
    padding: 0 1rem;
    background-color: white;
    border-radius: 20px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.track-item:last-child {
    border-bottom: none;
}

.play-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.play-button:hover {
    background: #555;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 2px;
}

.track-info {
    flex: 1;
}

.track-title {
    font-size: 16px;
    margin-bottom: 4px;
}

.track-clip {
    font-size: 12px;
    color: #999;
}

.track-artist {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.track-duration {
    font-size: 14px;
    color: #666;
}

.buy-link {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    padding: 10px 20px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.buy-link:hover {
    background: #555;
}

.buy-link svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

svg .active {
    fill: rgb(0, 175, 255);
}

#home {
    background: #BED8CB;
    color: purple;
}

#home .section-divider path {
    fill: #0058B5;
}

#sound {
    background: #64cee4;
}

#sound .section-header path {
    fill: #BED8CB;
}

#sound .section-divider path {
    fill: #C7D300;
}

#band {
    background: #C7D300;
    color: #FD8709;
    color: #0058B5;
}

#band .section-header path {
    fill: #0058B5;
}

#band .section-divider path {
    fill: #FD8709;
}

#contact {
    background: #FD8709;
}

#contact .section-header path {
    fill: #C7D300;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 10px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 999;
    padding: 80px 20px 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 10px;
}

.mobile-menu-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-size: 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    background: #f0f0f0;
}

.mobile-menu-link.active {
    background: rgb(172,213,171);
    font-weight: bold;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    body {
        margin-left: 0;
    }
    
    /* Hide video background on mobile */
    .video-background {
        display: none;
    }
    
    /* Hide desktop SVG menu on mobile */
    header .banner-container {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Show mobile menu container */
    .mobile-menu {
        display: block;
    }
    
    section {
        padding: 80px 20px 40px;
    }
    
    section:first-of-type {
        padding-top: 80px;
    }
    
    section h1 {
        font-size: 32px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    section p {
        font-size: 16px;
        text-align: center;
    }
    
    section h2 {
        font-size: 20px;
        text-align: center;
    }
    
    .band-content {
        flex-direction: column;
        margin-top: 2rem;
        gap: 20px;
    }
    
    .band-left,
    .band-center,
    .band-right {
        flex: none;
        width: 100%;
    }
    
    .music-links {
        gap: 10px;
    }
    
    .music-link {
        font-size: 16px;
        padding: 12px 16px;
    }
}
