/* style.css */
/* IMPORTANT: This file now contains ALL styles from both the <style> section and previous CSS */

/* ==== HTML-SPECIFIC STYLES (take precedence as they were in <style>) ==== */
html {
    scroll-behavior: smooth;
}

/* BANNER STYLES */
.news-banner {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

body {
    margin: 0;
    padding-top: 60px; /* Matches banner height */
    padding: 0 1rem; /* Added from HTML style */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #eee;
    background: #111;
}

@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.close-banner {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

/* ==== Reset & Basics ==== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

/* ==== Hero Section ==== */
.hero {
    position: relative;
    height: 100vh;
    background: url('hero-main.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6); /* Darker overlay from HTML */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

h1 {
    font-size: 4rem;
    margin-bottom: .5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.links a {
    color: #fff;
    margin: 0 .8rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color .3s;
}

.links a:hover { 
    color: #1db954; 
}

/* ==== Artists Section ==== */
.artists {
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.artists h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #fff;
}

.artist {
    margin-bottom: 4rem;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.artist h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #4fc3f7;
    text-align: center;
}

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.genres {
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
    color: #ccc;
}

.umbrella-links {
    margin: 1rem 0;
}

.umbrella-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.umbrella-links a:hover {
    color: #1db954;
}

.umbrella-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.per-artist-notice {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #aaa;
    font-style: italic;
}

.per-artist-notice .inline-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    vertical-align: middle;
    margin: 0 4px;
}

.sample {
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    transition: transform .2s;
}

.sample:hover {
    transform: translateY(-4px);
}

.sample audio {
    width: 100%;
    margin-bottom: .5rem;
    border-radius: 6px;
}

.sample p {
    font-size: .95rem;
    color: #ccc;
}

.sample .links {
    margin-top: .5rem;
    display: flex;
    justify-content: center;
    gap: .8rem;
}

.sample .links img {
    width: 18px; /* HTML style: 18px overrides 20px from CSS */
    height: 18px;
    filter: brightness(0) invert(1); /* HTML style overrides CSS grayscale */
    opacity: 0.8;
    transition: filter 0.2s ease; /* Updated to include filter transition */
}

.sample .links a:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

/* COMING SOON BADGE */
.coming-soon-badge {
    display: inline-block;
    margin-top: .5rem;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.2s ease;
}

.coming-soon-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.album-links {
    text-align: center;
    margin: 1rem 0 2rem;
}

.platform-links {
    display: inline-flex;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.platform-links img {
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
    transition: all 0.2s;
}

.platform-links a:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255,255,255,0.5));
}

.release-date {
    font-size: 0.95rem;
    color: #ff6b6b;
    font-weight: bold;
    font-style: italic;
    margin: 0.5rem 0 0;
}

/* ==== Lucas addition ==== */
.album-title {
    font-size: 0.95rem;
    color: #4fc3f7;
    font-weight: bold;
    text-align: center;
}

/* ==== Footer ==== */
footer {
    text-align: center;
    padding: 2rem;
    font-size: .9rem;
    background: #000;
    margin-top: 3rem;
}
.social-icons {
  margin-bottom: 20px;
  text-align: center;
}

.social-icon {
  display: inline-block;
  margin: 0 12px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
}

.social-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* Makes black icons white */
  transition: filter 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon:hover img {
  filter: none; /* Restore original colors on hover */
}

/* ==== Back to Top Button ==== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1db954;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1ed760;
    transform: translateY(-2px);
}

/* ==== RESPONSIVE STYLES ==== */
@media (max-width: 600px) {
    h1 { 
        font-size: 2.8rem; 
    }
    
    .hero p { 
        font-size: 1.2rem; 
    }
    
    .links a { 
        display: block; 
        margin: .5rem 0; 
    }
    
    .news-banner { 
        font-size: 14px; 
        padding: 10px 15px; 
    }
    
    body { 
        padding-top: 50px; 
    }
    
    .artists h2 {
        font-size: 1.8rem;
    }
    
    .artist h3 {
        font-size: 1.5rem;
    }
    
    .grid {
        gap: 1rem;
    }
}

/* NUCLEAR OPTION: Remove ALL link styling in footer */
footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active,
footer a:focus {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  background: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Remove any generated content */
footer a::before,
footer a::after,
footer a:before,
footer a:after {
  content: "" !important;
  display: none !important;
}
