/* ========== 
   CSS Variables & Theme Configuration
   ========== */
:root {
    --bg-base: #0a0a0a;
    --bg-surface: #141414;
    --bg-elevated: #1f1f1f;
    
    --text-primary: #f2f2f2;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    
    --accent-color: #ff3366; /* Configurable accent */
    --accent-hover: #ff668a;
    
    --border-color: #333333;
    
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========== 
   Resets & Base Styles
   ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
    outline: none;
}

/* ========== 
   Layout & Typography
   ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.bg-alt {
    background-color: var(--bg-surface);
}

/* ========== 
   Components
   ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all var(--transition-fast);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover:not(:disabled) {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.icon {
    width: 20px;
    height: 20px;
}

/* ========== 
   Header / Navbar
   ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: nowrap;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.nav-list a:hover::after, .nav-list a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 25px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    opacity: 0.8;
}

.menu-toggle:hover {
    opacity: 1;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-secondary);
    border-radius: 10px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

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

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

/* ========== 
   Hero Section
   ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 40px; /* Offset for header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,1) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 12vh;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* ========== 
   Biography Section
   ========== */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bio-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.bio-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.5);
    pointer-events: none;
}

.bio-text {
    margin-bottom: 2.5rem;
}

.bio-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.press-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* ========== 
   Music Player Section
   ========== */
.player {
    background-color: var(--bg-surface);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid var(--border-color);
}

.player-header {
    text-align: center;
    margin-bottom: 25px;
}

.current-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.current-artist {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ==========   */
.progress-area {
    width: 100%;
    height: 6px;
    background-color: var(--bg-elevated);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    transition: height var(--transition-fast);
    z-index: 10;
}

.progress-area:hover {
    height: 8px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--accent-color);
    border-radius: 3px;
    position: relative;
    pointer-events: none;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.progress-area:hover .progress-bar::after {
    opacity: 1;
}

.timer {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: monospace;
    margin-bottom: 25px;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.control-btn {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn svg {
    width: 28px;
    height: 28px;
}

.control-btn:hover {
    color: var(--text-primary);
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.4);
}

.play-pause-btn svg {
    width: 30px;
    height: 30px;
}

.play-pause-btn:hover {
    background-color: var(--accent-hover);
    color: #fff;
    transform: scale(1.05);
}

.hidden {
    display: none !important;
}

.playlist {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.track-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar for Tracklist */
.track-list::-webkit-scrollbar {
    width: 6px;
}
.track-list::-webkit-scrollbar-track {
    background: var(--bg-elevated);
    border-radius: 3px;
}
.track-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    margin-bottom: 5px;
}

.track-item:hover {
    background-color: var(--bg-elevated);
}

.track-item.playing {
    background-color: rgba(255, 51, 102, 0.1);
}

.track-index {
    width: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.track-item.playing .track-index {
    color: var(--accent-color);
}

.track-name {
    flex: 1;
    font-weight: 500;
}

.track-item.playing .track-name {
    color: var(--accent-color);
}

/* ========== 
   Photos Section
   ========== */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.photo-item.bw-filter img {
    filter: grayscale(100%);
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-item.bw-filter:hover img {
    filter: grayscale(0%);
}

/* ========== 
   Tour Section
   ========== */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.tour-item:hover {
    transform: translateX(5px);
    border-color: var(--accent-color);
}

.tour-date {
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 700;
    width: 120px;
}

.tour-details {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.tour-city {
    font-weight: 600;
    font-size: 1.1rem;
}

.tour-venue {
    color: var(--text-secondary);
}

/* ========== 
   Footer
   ========== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}

.footer-title {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    color: var(--text-secondary);
}

.email-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.email-link:hover {
    color: var(--accent-color);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.socials a {
    color: var(--text-secondary);
    background-color: var(--bg-elevated);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.socials a .icon {
    width: 24px;
    height: 24px;
}

.socials a:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========== 
   Responsive / Media Queries
   ========== */
@media screen and (max-width: 900px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }
    .bio-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .header {
        padding: 5px 0;
    }

    .hero-bg {
        background-size: contain;
        background-repeat: no-repeat;
        /* Push the image down slightly so heads are not clipped by the top edge or the header */
        background-position: center 25%;
    }
    
    .hero-content {
        margin-top: 0;
    }
    
    .member-dash {
        display: none;
    }
    
    .member-role {
        display: block;
        font-size: 0.9em;
        margin-top: 5px;
        color: var(--text-secondary);
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: auto;
        width: 180px;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border-color);
        border-top: none;
        border-radius: 0 0 0 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
        z-index: 1000;
        padding: 0;
        box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav.active {
        max-height: 400px;
        padding: 20px 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .tour-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .tour-action {
        width: 100%;
    }
    .tour-action .btn {
        width: 100%;
    }
    .photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
