/* Color Palette from "Not Over You" Cover Art */
:root {
    /* Primary Colors from Cover Art */
    --deep-blue: #1a365d;
    --storm-blue: #2d5a8a;
    --coral-red: #ff6b6b;
    --lime-green: #51cf66;
    --golden-yellow: #ffd43b;
    
    /* Atmospheric Colors */
    --cloud-white: #ffffff;
    --mist-gray: #f8f9fa;
    --shadow-dark: #0d1117;
    --gradient-start: #1a365d;
    --gradient-end: #2d5a8a;
    
    /* Accent Colors */
    --glow-blue: rgba(45, 90, 138, 0.3);
    --glow-red: rgba(255, 107, 107, 0.3);
    --glow-green: rgba(81, 207, 102, 0.3);
    --glow-yellow: rgba(255, 212, 59, 0.3);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--gradient-start);
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: var(--cloud-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, var(--glow-red) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, var(--glow-green) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, var(--glow-yellow) 0%, transparent 50%);
    opacity: 0.4;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.2; }
    100% { opacity: 0.6; }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 107, 107, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(81, 207, 102, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 212, 59, 0.4), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 54, 93, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--coral-red), var(--lime-green), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--cloud-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--coral-red);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral-red), var(--lime-green));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cloud-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 35vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 1rem 0 0.5rem 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--cloud-white), var(--coral-red), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    line-height: 1.1;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(81, 207, 102, 0.5)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-action {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--coral-red), var(--lime-green));
    color: var(--cloud-white);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--cloud-white);
    border: 2px solid var(--cloud-white);
}

.btn-secondary:hover {
    background: var(--cloud-white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0;
    background: linear-gradient(45deg, var(--cloud-white), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Release */
.featured-release {
    padding: 0.5rem 0 2rem 0;
    display: flex;
    align-items: center;
}

.release-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.release-artwork {
    position: relative;
}

.artwork-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    margin-top: 7.25rem; /* Desktop - perfect middle position */
}

.artwork-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Paint Strokes Effect */
.paint-strokes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stroke {
    position: absolute;
    border-radius: 10px;
    opacity: 0.8;
    animation: paintStroke 2s ease-in-out infinite alternate;
}

.stroke-red {
    width: 80px;
    height: 8px;
    background: var(--coral-red);
    top: 20%;
    right: -10px;
    transform: rotate(25deg);
    box-shadow: 0 0 20px var(--glow-red);
}

.stroke-green {
    width: 60px;
    height: 6px;
    background: var(--lime-green);
    bottom: 30%;
    left: -8px;
    transform: rotate(-15deg);
    box-shadow: 0 0 20px var(--glow-green);
    animation-delay: 0.5s;
}

.stroke-blue {
    width: 70px;
    height: 7px;
    background: var(--storm-blue);
    top: 50%;
    right: -5px;
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--glow-blue);
    animation-delay: 1s;
}

.stroke-yellow {
    width: 50px;
    height: 5px;
    background: var(--golden-yellow);
    bottom: 15%;
    left: -5px;
    transform: rotate(-30deg);
    box-shadow: 0 0 20px var(--glow-yellow);
    animation-delay: 1.5s;
}

@keyframes paintStroke {
    0% { transform: scale(1) rotate(var(--rotation, 0deg)); opacity: 0.6; }
    100% { transform: scale(1.1) rotate(calc(var(--rotation, 0deg) + 5deg)); opacity: 0.9; }
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.artwork-container:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--cloud-white);
}

.play-btn i {
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-left: 4px;
}

/* Release Info */
.release-info {
    padding: 1rem 0;
}

.release-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--coral-red), var(--lime-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.release-artist {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* Music Player */
.music-player {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--cloud-white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-pause {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--coral-red), var(--lime-green));
}

.play-pause:hover {
    background: linear-gradient(45deg, var(--lime-green), var(--coral-red));
}

.player-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral-red), var(--lime-green));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--cloud-white);
    border-radius: 50%;
    left: 0%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.volume-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--coral-red), var(--golden-yellow));
    border-radius: 2px;
    width: 70%;
}

/* Streaming Links */
.streaming-links h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--cloud-white);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--cloud-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.platform-btn.spotify:hover { border-color: #1db954; box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3); }
.platform-btn.apple:hover { border-color: #fc3c44; box-shadow: 0 8px 25px rgba(252, 60, 68, 0.3); }
.platform-btn.amazon:hover { border-color: #ff9900; box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3); }

.pandora-icon, .deezer-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.pandora-icon {
    background: #005483;
    color: white;
}

.deezer-icon {
    background: #ff0092;
    color: white;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-action {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cloud-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-action.follow:hover {
    background: var(--coral-red);
    border-color: var(--coral-red);
}

.btn-action.share:hover {
    background: var(--lime-green);
    border-color: var(--lime-green);
    color: var(--deep-blue);
}

.btn-action.buy:hover {
    background: var(--golden-yellow);
    border-color: var(--golden-yellow);
    color: var(--deep-blue);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    color: var(--cloud-white);
    line-height: 1.8;
}

.about-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--coral-red), var(--lime-green), var(--golden-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
    font-style: italic;
}

.about-story p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.highlight-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--coral-red);
}

.highlight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--lime-green);
}

.highlight-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.about-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--golden-yellow);
}

.about-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.about-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--cloud-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.spotify-btn:hover {
    background: #1db954;
    border-color: #1db954;
}

.youtube-btn:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-btn i {
    font-size: 1.2rem;
}

/* Other Releases */
.other-releases {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.release-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.release-artwork-small {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--deep-blue), var(--storm-blue));
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon {
    text-align: center;
    opacity: 0.7;
}

.coming-soon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.release-info-small h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.release-info-small p {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--coral-red);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cloud-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--coral-red);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        height: 35vh;
        min-height: 320px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .release-card.featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .release-title {
        font-size: 2rem;
    }
    
    .artwork-container {
        max-width: 350px;
        margin-top: 2rem; /* Tablet - moderate spacing */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .player-controls {
        gap: 0.5rem;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
    
    .play-pause {
        width: 55px;
        height: 55px;
    }
    
    .music-player {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        height: auto;
        min-height: 240px;
        padding: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .release-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .music-player {
        padding: 1rem;
    }
    
    .release-card.featured {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .featured-release {
        padding: 0.5rem 0 1rem 0;
    }
    
    .artwork-container {
        max-width: 330px;
        margin-top: 0.5rem; /* Mobile - minimal spacing */
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    .about-social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .about-intro h3 {
        font-size: 1.8rem;
    }
    
    .about-tagline {
        font-size: 1.1rem;
    }
}