/* ADD THESE IMPORTS AT THE VERY TOP OF YOUR style.css FILE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Poppins:wght@400;600;700&display=swap');

/* --- Variables & Base Reset --- */
:root {
    --primary-neon: #00ffff;
    --secondary-neon: #ff0077;
    --text-color: #e0e0e0;
    --bg-dark: #121212;
    --bg-mid: #1e1e1e;
    --font-header: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg-dark); color: var(--text-color); line-height: 1.6; font-size: 1.6rem; font-family: var(--font-body); background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 4px, transparent 4px, transparent 8px); }
a { color: var(--primary-neon); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--secondary-neon); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-family: var(--font-header); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 700;}

/* --- Header & Navigation --- */
header { background: rgba(18, 18, 18, 0.8); backdrop-filter: blur(10px); position: sticky; top: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
body.home-page header { position: fixed; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 2rem; }
.header-content .logo img { height: 50px; transition: transform 0.2s ease; }
.header-content .logo img:hover { transform: scale(1.05); }
.navbar a { font-size: 1.7rem; margin: 0 1rem; padding: 0.5rem 0; color: var(--text-color); border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s; font-weight: 600; }
.navbar a .fab { font-size: 2.2rem; vertical-align: middle; margin-left: 5px; }
.navbar a:hover, .navbar a.active { color: var(--primary-neon); border-color: var(--primary-neon); }
#menu-btn { font-size: 2.8rem; color: var(--primary-neon); background: transparent; cursor: pointer; display: none; border: none; }

/* --- Buttons & Links --- */
.btn { display: inline-block; padding: 1.2rem 3rem; margin: 1rem; border-radius: 50px; font-size: 1.6rem; text-transform: uppercase; transition: all 0.3s; cursor: pointer; font-weight: 700; letter-spacing: 1px; }
.primary-btn { background: var(--primary-neon); color: var(--bg-dark) !important; border: 2px solid var(--primary-neon); }
.secondary-btn { background: transparent; color: var(--secondary-neon) !important; border: 2px solid var(--secondary-neon); }
.primary-btn:hover { background: transparent; color: var(--primary-neon) !important; box-shadow: 0 0 15px var(--primary-neon); }
.secondary-btn:hover { background: var(--secondary-neon); color: var(--bg-dark) !important; box-shadow: 0 0 15px var(--secondary-neon); }
.contact-inquiry { text-align: center; margin-top: 1rem; margin-bottom: 4rem; }
.contact-inquiry a { display: inline-block; padding: 0.8rem 2rem; border: 1px solid var(--secondary-neon); border-radius: 50px; color: var(--secondary-neon); font-weight: 600; transition: all 0.3s ease; }
.contact-inquiry a:hover { background: var(--secondary-neon); color: var(--bg-dark); box-shadow: 0 0 10px var(--secondary-neon); }

/* --- HOMEPAGE STYLES --- */
.hero-full { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; position: relative; padding: 2rem; }
.hero-full-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url('assets/background.png'); background-size: cover; background-position: center; opacity: 0.3; }
.hero-full-content { z-index: 2; }
.hero-full-icon { max-width: 280px; margin-bottom: 2rem; filter: drop-shadow(0 0 20px var(--primary-neon)); }
.hero-full-title { font-size: 7rem; color: #fff; text-shadow: 0 0 10px #fff, 0 0 20px var(--primary-neon); font-weight: 900; margin: 0; letter-spacing: 4px; }
.hero-full-subtitle { font-size: 2.5rem; color: var(--secondary-neon); margin: 0.5rem 0 3rem 0; text-shadow: 0 0 10px var(--secondary-neon); font-weight: 700; }
.page-content { padding-top: 8rem; padding-bottom: 8rem; }
.home-section { margin-bottom: 8rem; }
.home-section-title { font-size: 4rem; text-align: center; margin-bottom: 4rem; position: relative; padding-bottom: 1.5rem; }
.home-section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--secondary-neon); box-shadow: 0 0 10px var(--secondary-neon); }
.gigs-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.gig-card { background: rgba(30, 30, 30, 0.7); backdrop-filter: blur(10px); border: 2px solid rgba(0, 255, 255, 0.3); border-radius: 15px; padding: 3rem; text-align: left; transition: border-color 0.3s, box-shadow 0.3s; position: relative; }
.gig-card:hover { border-color: var(--primary-neon); box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
.next-up { border-color: var(--secondary-neon); }
.next-up:hover { border-color: var(--secondary-neon); box-shadow: 0 0 20px rgba(255, 0, 119, 0.5); }
.next-up-badge { position: absolute; top: -15px; left: 30px; background: var(--secondary-neon); color: var(--bg-dark); padding: 0.5rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 1.4rem; }
.countdown-timer { position: absolute; top: 1.5rem; right: 2rem; font-size: 1.6rem; color: var(--secondary-neon); font-weight: 700; }
.gig-date { font-size: 1.6rem; color: var(--text-color); }
.gig-title { font-size: 2.8rem; color: var(--primary-neon); margin: 0.5rem 0; }
.gig-location { font-size: 1.8rem; color: #ccc; margin-bottom: 2rem; }
.gig-location i { margin-right: 0.8rem; }
.gig-link { font-weight: 700; color: var(--secondary-neon); }
.gig-link i { margin-left: 0.5rem; transition: transform 0.3s; }
.gig-link:hover i { transform: translateX(5px); }
.gig-type-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg-dark);
}
.featured-release { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; background: var(--bg-mid); border-radius: 15px; overflow: hidden; }
.featured-release-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-release-info { padding: 4rem; text-align: left; }
.featured-release-info h3 { font-size: 3.5rem; color: var(--primary-neon); }
.featured-release-info .artists { font-size: 1.8rem; margin-bottom: 1rem; }
.featured-release-info .release-type { font-size: 1.6rem; color: var(--secondary-neon); font-weight: 700; margin-bottom: 2rem; }
.featured-release-info .release-buttons { display: flex; flex-wrap: wrap; }
.about-stats-container { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center; }
.about-bio p { 
    font-size: 1.9rem; 
    line-height: 1.7; 
}
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.stat-item { background: var(--bg-mid); border-radius: 10px; padding: 2rem; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
.stat-item i { font-size: 3rem; color: var(--primary-neon); margin-bottom: 1rem; }
.stat-number { font-size: 4rem; font-weight: 900; color: var(--primary-neon); }
.stat-label { font-size: 1.6rem; color: #ccc; }
.stat-text { font-size: 2.2rem; font-weight: 700; color: var(--primary-neon); }
.stat-text a { color: var(--primary-neon); }
.sound-gear-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.spotify-player-embed { border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; overflow: hidden; }
.gear-card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.gear-card { display: flex; align-items: center; background: var(--bg-mid); padding: 2rem; border-radius: 10px; font-size: 1.8rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.1); }
.gear-card i { font-size: 2.4rem; color: var(--secondary-neon); margin-right: 1.5rem; }

/* --- OTHER PAGE STYLES --- */
main { padding-top: 90px; }
body:not(.home-page) main { padding-top: 90px; }
.home-page main { padding-top: 0; }
.section-title { font-size: 4rem; text-align: center; color: var(--text-color); margin-bottom: 4rem; padding-bottom: 1.5rem; position: relative; width: fit-content; margin-left: auto; margin-right: auto; border: none;}
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: var(--secondary-neon); box-shadow: 0 0 10px var(--secondary-neon); }
.intro-text { text-align: center; font-size: 1.8rem; margin: -2rem auto 3rem; max-width: 800px; }


/* --- PAGE HEADER STYLES --- */
.page-header {
    position: relative;
    padding: 10rem 0;
    text-align: center;
    background-image: url('assets/djicon.png');
    background-size: cover;
    background-position: center 100%;
    background-attachment: fixed;
    margin-top: -90px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(5px);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-size: 5rem;
}

.page-header-content p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* --- DISCOGRAPHY PAGE STYLES --- */
.discography-section { padding-top: 4rem; padding-bottom: 4rem; }
.disco-section-title {
    font-size: 4.5rem;
    margin-bottom: 5rem;
    text-align: center;
}
.release-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.release-card { 
    position: relative; 
    overflow: hidden; 
    border-radius: 10px; 
    background: var(--bg-dark); 
    box-shadow: 0 0 10px rgba(0,0,0,0.5); 
    transition: box-shadow 0.4s ease, transform 0.4s ease; 
    aspect-ratio: 1 / 1;
}
.release-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.release-card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(18, 18, 18, 0.85) 30%, transparent 80%); opacity: 1; }
.release-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; text-align: left; }
.release-info h3 { font-size: 2.8rem; }
.release-info .artists { font-size: 1.6rem; font-weight: 600; margin-bottom: 0.5rem; }
.release-info .meta { font-style: italic; font-size: 1.4rem; color: #aaa; }
.release-tags { margin-bottom: 1rem; display: flex; gap: 0.8rem; justify-content: flex-start; }
.tag { background: rgba(0, 255, 255, 0.1); color: var(--primary-neon); padding: 0.3rem 0.8rem; border-radius: 5px; border: 1px solid var(--primary-neon); font-size: 1.2rem; font-weight: 600; }
.release-card .release-buttons { 
    margin-top: 1.5rem; 
    opacity: 1; 
    transform: none;
}
.release-buttons .btn { font-size: 1.4rem; padding: 1rem 2rem; }
.release-card:hover { 
    box-shadow: 0 0 20px var(--secondary-neon); 
    transform: scale(1.05); 
    z-index: 10; 
}
.release-card-details-mobile { display: none; }


/* --- EVENTS PAGE STYLES --- */
.events-section { padding-top: 4rem; padding-bottom: 8rem; }
.jump-link-wrapper { text-align: center; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-top: 2rem; }
.timeline::after { content: ''; position: absolute; width: 4px; background-color: var(--secondary-neon); top: 0; bottom: 0; left: 50%; margin-left: -2px; z-index: 0; }
.timeline-year { font-family: var(--font-header); font-size: 3rem; text-align: center; color: var(--primary-neon); background: var(--bg-dark); padding: 0.5rem 1rem; width: 150px; z-index: 1; margin: 2rem auto; border: 2px solid var(--primary-neon); position: relative; border-radius: 5px; }
.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; margin-bottom: 2rem; }
.timeline-item::after { content: ''; position: absolute; width: 15px; height: 15px; right: -10px; background-color: var(--primary-neon); border: 4px solid var(--bg-dark); top: 15px; border-radius: 50%; z-index: 1; }
.timeline-item:nth-child(even) { left: 50%; }
.timeline-item:nth-child(even)::after { left: -10px; }
.timeline-item .date { font-weight: 700; color: var(--secondary-neon); }
.timeline-item p { background: var(--bg-mid); padding: 1.5rem; border-radius: 6px; box-shadow: 0 0 5px rgba(255, 0, 119, 0.1); display: flex; align-items: center; gap: 1.5rem; }
.event-status { position: static; transform: none; padding: 0.4rem 1rem; font-size: 1.2rem; flex-shrink: 0; border-radius: 50px; font-weight: 700; text-transform: uppercase; color: var(--bg-dark); }
.event-status.live-event, .gig-type-badge.live-event { background-color: var(--secondary-neon); }
.event-status.stream-event, .gig-type-badge.stream-event { background-color: var(--primary-neon); }
.youtube-link-icon { display: inline-block; margin-left: auto; font-size: 2.4rem; color: #ff0000; transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
.youtube-link-icon:hover { transform: scale(1.1); color: #ff4d4d; }
.flat-event-list { max-width: 800px; margin: 5rem auto 2rem; padding: 2rem; background: var(--bg-mid); border-radius: 8px; border-left: 5px solid var(--primary-neon); }
.flat-event-list h3 { font-family: var(--font-header); font-size: 2.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--secondary-neon); padding-bottom: 0.5rem; }
.flat-event-list ul { list-style-type: none; padding-left: 0; }
.flat-event-list li { font-size: 1.6rem; margin-bottom: 1.2rem; display: flex; align-items: center; }
.flat-event-list li strong { font-family: var(--font-header); font-weight: 700; color: var(--primary-neon); font-size: 1.7rem; display: block; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.flat-event-list .event-status { position: static; flex-shrink: 0; min-width: 95px; text-align: center; margin-right: 1.5rem; border-radius: 50px; padding: 0.5rem 1.5rem; font-weight: 700; text-transform: uppercase; }
.flat-event-list .event-details { flex-grow: 1; }

/* --- GALLERY PAGE STYLES --- */
.gallery-section { padding-top: 4rem; }
.filter-buttons { text-align: center; margin-bottom: 4rem; }
.artwork-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.artwork-item { transition: transform 0.4s ease-out; }
.artwork-item:hover { transform: scale(1.05); z-index: 10; position: relative; }
.artwork-image-wrapper { position: relative; overflow: hidden; aspect-ratio: 1 / 1; border-radius: 8px; }
.artwork-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.artwork-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(to top, rgba(18, 18, 18, 0.85) 25%, transparent 75%); 
    opacity: 0; 
    transition: opacity 0.4s ease; 
}
.overlay-content { 
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem 2rem; 
    color: #fff; 
    width: 100%; 
}
.overlay-content .artwork-caption {
    margin-bottom: 1rem;
}
.artwork-caption { font-size: 1.6rem; color: #ccc; }
.artwork-buttons .btn { padding: 0.8rem 1.8rem; font-size: 1.4rem; }
.artwork-image-wrapper:hover .artwork-overlay { opacity: 1; }
.artwork-details-mobile { display: none; }
.year-badge {
    display: inline-block;
    background: var(--secondary-neon);
    color: var(--bg-dark);
    padding: 0.3rem 1.2rem;
    border-radius: 5px;
    border: none;
    font-size: 1.4rem;
    font-weight: 700;
}
.artwork-overlay .year-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.video-section { padding-top: 10rem; padding-bottom: 8rem; }
.featured-video-container { text-align: center; margin-bottom: 5rem; }
.featured-video-container h3 { font-size: 2.2rem; color: var(--secondary-neon); }
.featured-video-container #featured-video .video-thumbnail-container { max-width: 800px; margin: 1.5rem auto 0; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.video-thumbnail-container { position: relative; cursor: pointer; border: 2px solid var(--secondary-neon); border-radius: 5px; overflow: hidden; box-shadow: 0 0 10px rgba(255, 0, 119, 0.5); aspect-ratio: 16 / 9; }
.video-thumbnail-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 5rem; color: white; background: rgba(0, 0, 0, 0.6); border-radius: 50%; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; transition: background 0.3s; pointer-events: none; }
.video-thumbnail-container.video-player-active { border: none; box-shadow: none; background: transparent; padding: 0; }
.video-thumbnail-container.video-player-active iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* --- Footer & Light Mode --- */
footer { background: #000; padding: 3rem 0; margin-top: 5rem; text-align: center; border-top: 2px solid var(--primary-neon); }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.social-links a { font-size: 2.5rem; margin-left: 2rem; color: var(--text-color); }
.social-links a:hover { color: var(--secondary-neon); }

body.light-mode {
    --primary-neon: #ff0077;
    --secondary-neon: #00ffff;
    --text-color: #121212;
    --bg-dark: #f0f0f0;
    --bg-mid: #ffffff;
    background-image: none;
}
body.light-mode header { background: rgba(255, 255, 255, 0.8); }
body.light-mode .hero-full-bg { opacity: 0.1; }
body.light-mode .hero-full-title { color: #121212; text-shadow: 0 0 10px var(--primary-neon); }
body.light-mode .home-section-title::after { background: var(--secondary-neon); box-shadow: 0 0 10px var(--secondary-neon); }
body.light-mode .gig-card { background: rgba(255, 255, 255, 0.7); border-color: rgba(255, 0, 119, 0.3); }
body.light-mode .gig-location, body.light-mode .stat-label { color: #555; }
body.light-mode .timeline::after { background-color: var(--secondary-neon); }
body.light-mode .timeline-item p { background: var(--bg-mid); box-shadow: 0 0 5px rgba(0, 255, 255, 0.2); }
body.light-mode .event-status, body.light-mode .gig-type-badge { color: #fff; }
body.light-mode .event-status.live-event, body.light-mode .gig-type-badge.live-event { background-color: var(--secondary-neon); }
body.light-mode .event-status.stream-event, body.light-mode .gig-type-badge.stream-event { background-color: var(--primary-neon); }

/* --- Media Queries --- */
@media (max-width: 991px) {
    html { font-size: 55%; }
    .featured-release, .about-stats-container, .sound-gear-container { grid-template-columns: 1fr; }
    .featured-release-art { order: 1; }
    .featured-release-info { order: 2; text-align: center; }
    .featured-release-info .release-buttons { justify-content: center; }
    .about-bio { text-align: justify; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .release-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    #menu-btn { display: block; }
    .navbar { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-mid); border-top: 1px solid var(--primary-neon); padding-bottom: 1rem; clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: clip-path 0.3s ease-out; }
    .navbar.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .navbar a { display: block; text-align: center; margin: 1rem 0; border: none; padding: 1rem 0; border-bottom: 1px dashed var(--secondary-neon); }
    .hero-full-title { font-size: 4rem; }
    .hero-full-subtitle { font-size: 2rem; }
    .gigs-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .featured-release-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem; 
        padding: 2.5rem 2rem;
        text-align: center;
        flex-grow: 1;
    }
    .featured-release-info > * {
        margin: 0;
    }
    .featured-release-info .release-buttons {
        justify-content: center;
        margin-top: 0.5rem;
    }

    .timeline::after { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; padding-left: 50px; padding-right: 15px; left: 0; }
    .timeline-item::after, .timeline-item:nth-child(even)::after { left: 15px !important; right: auto !important; }
    .timeline-year { width: 80%; margin-left: 0; }
    
    /* Gallery Mobile View */
    .artwork-grid { grid-template-columns: 1fr; }
    .artwork-item {
        background: rgba(44, 44, 46, 0.75);
        padding: 2rem;
        border-radius: 10px;
    }
    .artwork-overlay { display: none; }
    .artwork-details-mobile {
        display: block;
        padding: 1.5rem 0 0 0;
        text-align: center;
    }
    .artwork-details-mobile .artwork-buttons {
        margin-top: 1.5rem;
    }
    .caption-group {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .caption-group .artwork-caption {
        margin-bottom: 0;
    }

    .video-grid { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 1.5rem; }
    .social-links a { margin: 0 1rem; }
}
