/* Music Redesign CSS */

body.music-redesign {
    background-color: #121212; /* Dark, sleek background */
    color: #f0f0f0;
    font-family: 'Source Sans Pro', sans-serif;
    background-image: linear-gradient(to bottom, #1a1a1a 0%, #121212 100%);
    overflow-x: hidden;
}

/* Header & Nav */
#header-music {
    background: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2em 0; /* Increased from 1.5em */
    backdrop-filter: blur(10px);
}

#nav ul {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Increased gap */
    list-style: none;
    margin: 0;
    padding: 0;
}

#nav ul li a {
    color: #fff; /* Brighter color */
    text-transform: uppercase;
    font-weight: 700; /* Bolder font */
    font-size: 1.1em; /* Larger font */
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5em 1em;
}

#nav ul li a:hover {
    color: #00e5ff;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.5);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2.5em 1em; /* Significantly reduced from 5em */
    background: radial-gradient(circle at center, #2a2a2a 0%, #121212 70%);
}

.hero-title {
    font-size: 2.8em; /* Reduced from 3.5em */
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.2em;
    background: linear-gradient(45deg, #ff4081, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: #888;
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto 4em;
    padding: 0 2em;
}

/* Sections */
.music-section {
    margin-bottom: 5em;
}

.section-header {
    border-bottom: 1px solid #333;
    padding-bottom: 0.5em;
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header h2 {
    font-size: 2em;
    color: #fff;
    font-weight: 300;
}

/* YouTube Grid */
.video-showcase {
    display: flex;
    justify-content: center;
    background: #1a1a1a;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Audio Player Section */
.audio-showcase {
    background: #1e1e1e;
    padding: 2em;
    border-radius: 8px;
    border-left: 4px solid #00e5ff;
}

.audio-track {
    margin-top: 1em;
}

audio {
    width: 100%;
    filter: invert(1) hue-rotate(180deg); /* Dark mode audio player styling */
}

/* Photo Grid */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
}

.photo-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
}

.photo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.photo-card header {
    padding: 1.5em;
}

.photo-card h3 {
    font-size: 1.1em;
    color: #ddd;
    margin: 0;
}

/* Floating Player Override */
.floating-audio-player {
    background: rgba(30, 30, 30, 0.95) !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px);
}

.drag-handle {
    background: #333 !important;
    color: #aaa !important;
}

.playlist ul li {
    border-bottom: 1px solid #333 !important;
    color: #ccc !important;
}

.playlist ul li:hover {
    background: #333 !important;
    color: #fff !important;
}

/* Footer */
#footer {
    background: #0d0d0d;
    padding: 2em 0; /* Reduced from 4em */
    text-align: center;
    border-top: 1px solid #222;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2em;
    list-style: none;
    padding: 0;
    margin-bottom: 1em; /* Reduced from 2em */
}

.social-icons li a {
    color: #666;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons li a:hover {
    color: #fff;
}
