/* --------------------------------------------------
   General Body
-------------------------------------------------- */
body {
    background-color: #0d0d0d;
    color: white;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --------------------------------------------------
   Neon Text
-------------------------------------------------- */
.neon-text {
    color: #fff;
    text-shadow:
        0 0 5px #ff00ff,
        0 0 10px #ff00ff,
        0 0 20px #ff00ff,
        0 0 40px #ff00ff;
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */
.btn-neon {
    border: 2px solid #ff00ff;
    color: #fff;
    text-shadow: 0 0 5px #ff00ff;
    padding: 0.5rem 1rem;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-neon:hover {
    background-color: #ff00ff;
    color: #000;
}

/* --------------------------------------------------
   Navigation Menu
-------------------------------------------------- */
nav ul {
    display: flex;
    list-style: none;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

nav a {
    color: #fff;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #ff00ff;
}

/* --------------------------------------------------
   Music Section
-------------------------------------------------- */
.music-section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    text-shadow: 0 0 8px #ff00ff, 0 0 15px #ff00ff;
}

/* Music Grid Layout */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

/* Individual Track Card */
.track-card {
    background: #111;
    border: 2px solid #ff00ff55;
    border-radius: 10px;
    padding: 1rem;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 0 10px #ff00ff33;
}

.track-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px #ff00ff88;
}

/* Thumbnail Image */
.track-card img {
    width: 100%;
    border-radius: 6px;
    border: 2px solid #ff00ff;
    margin-bottom: .8rem;
}

/* Title + EQ Row */
.track-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .8rem;
}

.track-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.15rem;
    text-shadow: 0 0 8px #ff00ff;
    margin: 0;
}

/* Equalizer Bars */
.eq-bars {
    display: flex;
    gap: 3px;
}

.eq-bars span {
    width: 3px;
    background: #ff00ff;
    animation: eq 1.2s infinite ease-in-out;
}

.eq-bars span:nth-child(2) { animation-delay: .2s; }
.eq-bars span:nth-child(3) { animation-delay: .4s; }

@keyframes eq {
    0% { height: 6px; }
    50% { height: 18px; }
    100% { height: 6px; }
}

/* Video / Embed Styling */
.track-card video,
.track-card iframe {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid #ff00ff;
    margin-bottom: .8rem;
}

/* --------------------------------------------------
   Gallery Page
-------------------------------------------------- */
.gallery-card {
    position: relative;
    overflow: hidden;
}

.gallery-card .overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(255,0,255,0.3);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .overlay {
    opacity:1;
}

.overlay-text {
    color:white;
    font-weight:bold;
    text-transform: uppercase;
}

/* --------------------------------------------------
   Contact Page
-------------------------------------------------- */
form .form-label.text-light {
    color: #fff;
}

form .form-control.bg-dark {
    background-color: #0d0d0d;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
}

form .form-control.bg-dark:focus {
    border-color: #ff00ff;
    box-shadow: 0 0 10px #ff00ff;
    outline: none;
}

/* --------------------------------------------------
   Index Page
-------------------------------------------------- */
.index-hero {
    text-align: center;
    margin-top: 2rem;
}

.profile-img {
    max-width: 300px;
    width: 100%;
    border: 3px solid #ff00ff;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
}

/* Achievements styling */
.achievements-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.achievements-list .highlight {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #fff;
    text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
    transition: transform 0.2s ease;
}

.achievements-list .highlight:hover {
    transform: scale(1.05);
}

/* Audio Player Section */
.listen-section {
    max-width: 600px;
    margin: 0 auto;
}

.audio-track {
    margin-bottom: 1.5rem;
}

.audio-track audio {
    width: 100%;
    border: 2px solid #ff00ff;
    border-radius: 6px;
}

/* --------------------------------------------------
   Global Media Reset
-------------------------------------------------- */
img, video, iframe {
    display: block;
    max-width: 100%;
}

