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

:root {
    /* Color Palette - Purple & Lavender Elegance */
    --primary-color: #8B7CBF;
    --primary-light: #A798D1;
    --primary-dark: #6B5B95;
    --accent-color: #C8B5D8;
    --accent-light: #E0D1E8;
    --secondary-color: #9B8FC7;
    
    /* Background Colors */
    --bg-primary: #F8F6FB;
    --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --bg-soft: linear-gradient(135deg, #F4F2F8 0%, #EDE8F2 100%);
    
    /* Text Colors */
    --text-primary: #3D3750;
    --text-secondary: #6B6280;
    --text-muted: rgba(255, 255, 255, 0.9);
    --text-white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(139, 124, 191, 0.12);
    --shadow-md: 0 4px 16px rgba(139, 124, 191, 0.18);
    --shadow-lg: 0 8px 32px rgba(139, 124, 191, 0.24);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    /* background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(139, 124, 191, 0.3);
}

h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: url('assets/images/hero.png');
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.hero-title-section {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-title {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-family: var(--font-primary);
    font-weight: 400;
}

/* SoundCloud Embed */
.soundcloud-embed {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    align-self: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.soundcloud-embed:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.soundcloud-embed iframe {
    border: none;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* Platform Buttons */
.platform-buttons h3,
.platform-buttons p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    justify-items: center;
    max-width: 650px;
    margin: 0 auto;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.4rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-gradient);
    color: white;
    box-shadow: var(--shadow-sm);
    border: none;
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 48px;
    flex-shrink: 0;
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.platform-btn:hover::before {
    left: 100%;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.platform-btn span {
    font-size: 0.9rem;
}

/* All platform buttons now use the same Listen Now style with gradient background */
.platform-btn.spotify,
.platform-btn.youtube,
.platform-btn.soundcloud,
.platform-btn.bandcamp {
    background: var(--bg-gradient);
    color: white;
}

.platform-btn.spotify:hover,
.platform-btn.youtube:hover,
.platform-btn.soundcloud:hover,
.platform-btn.bandcamp:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Image Animation */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.music-note-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}

.music-note-animation i {
    position: absolute;
    font-size: 3rem;
    color: var(--primary-color);
    animation: rotate 6s linear infinite;
}

.music-note-animation i:nth-child(1) {
    animation-delay: 0s;
    top: 20%;
    left: 30%;
}

.music-note-animation i:nth-child(2) {
    animation-delay: 2s;
    top: 50%;
    right: 20%;
    color: var(--accent-color);
}

.music-note-animation i:nth-child(3) {
    animation-delay: 4s;
    bottom: 15%;
    left: 10%;
    color: var(--secondary-color);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg) translateX(80px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(80px) rotate(-360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 1rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .platform-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 350px;
    }
    
    .soundcloud-embed {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: unset;
    }
    
    .platform-btn {
        padding: 0.8rem 1rem;
        width: 200px;
        max-width: 100%;
    }
    
    .hero-image {
        height: 200px;
        order: 1;
    }
    
    .music-note-animation {
        width: 150px;
        height: 150px;
    }
    
    .music-note-animation i {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .platform-btn span {
        font-size: 0.8rem;
    }
    
    .platform-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        max-width: 320px;
    }
    
    .soundcloud-embed {
        width: 100%;
        max-width: 280px;
        height: auto;
        min-height: unset;
    }
    
    .platform-btn {
        width: 150px;
        height: 45px;
        padding: 0.6rem 0.8rem;
        border-radius: 25px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .platform-btn i {
        font-size: 1.1rem;
    }
    
    .platform-buttons h3 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 0.8rem;
    }
    
    .platform-links {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 200px;
    }
    
    .soundcloud-embed {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    
    .platform-btn {
        width: 180px;
        height: 42px;
        font-size: 0.8rem;
    }
    
    .platform-btn i {
        font-size: 1rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 0.5rem 0;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .soundcloud-embed {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    
    .hero-image {
        height: 150px;
    }
}

/* Copyright Section */
.copyright-section {
    margin-top: 0.5rem;
    text-align: center;
    /* border-top: 1px solid rgba(255, 255, 255, 0.2); */
    padding-top: 0.5rem;
}

.copyright {
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Copyright responsive */
@media (max-width: 768px) {
    .copyright-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .copyright {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}