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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #ff6b6b;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-container {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

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

.cta-button {
    background: var(--accent-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.cta-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.quick-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: var(--secondary-color);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Biography Section */
.bio-versions {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.bio-short, .bio-long {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.bio-versions h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bio-versions p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent-color);
}

.bio-facts {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.bio-facts h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.bio-facts ul {
    list-style: none;
}

.bio-facts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.bio-facts li:last-child {
    border-bottom: none;
}

/* Music Section */
.streaming-links {
    margin-bottom: 3rem;
}

.streaming-links h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.platform-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.platform-link svg {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.platform-link span {
    font-size: 0.95rem;
    font-weight: 500;
}

.spotify:hover { border-color: #1DB954; }
.spotify svg { color: #1DB954; }
.apple-music:hover { border-color: #FC3C44; }
.apple-music svg { color: #FC3C44; }
.youtube:hover { border-color: #FF0000; }
.youtube svg { color: #FF0000; }
.audiomack:hover { border-color: #FFA200; }
.audiomack svg { color: #FFA200; }
.soundcloud:hover { border-color: #FF5500; }
.soundcloud svg { color: #FF5500; }
.tidal:hover { border-color: #000000; }
.tidal svg { color: #000000; }

/* Discography Carousel */
.discography {
    margin-bottom: 3rem;
}

.discography h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.discography-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.discography-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.release-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: max-content;
}

.release-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 0 0 auto;
    width: calc((100% - 3rem) / 3);
    min-width: 280px;
    max-width: 400px;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.release-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 0px -18px;
}

.release-card h4 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.release-type, .release-year {
    color: var(--text-light);
    font-size: 0.9rem;
}

.release-type {
    padding: 0 1rem;
}

.release-description {
    padding: 0.5rem 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
}

.release-links {
    padding: 1rem;
}

.listen-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.listen-link:hover {
    background: #ff5252;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}

.carousel-arrow:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--border-color);
    color: currentColor;
    transform: none;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* Responsive Carousel */
@media (max-width: 1200px) {
    .release-card {
        width: calc((100% - 1.5rem) / 2);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .release-card {
        width: 100%;
        min-width: 280px;
        max-width: 100%;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .discography-carousel-container {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* View All Button */
.view-all-btn {
    display: block;
    margin: 2rem auto 0;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.view-all-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Discography Drawer */
.discography-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discography-drawer.active {
    pointer-events: all;
    opacity: 1;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    background: white;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    height: 100vh;
    width: 450px;
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 2;
}

.discography-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
    flex-shrink: 0;
    background: white;
}

.drawer-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.close-drawer {
    background: var(--secondary-color);
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.close-drawer:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

.drawer-body {
    padding: 1rem;
    overflow-y: auto;
    flex: 1;
    background: var(--secondary-color);
}

.all-albums-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.album-grid-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    transition: background 0.2s ease;
    box-shadow: none;
    cursor: pointer;
    position: relative;
}

.album-grid-card:hover {
    background: rgba(255, 107, 107, 0.05);
    transform: none;
    box-shadow: none;
    border-color: var(--border-color);
}

.album-grid-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.album-grid-card:hover::before {
    transform: scaleX(1);
}

.album-grid-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.album-grid-card-content {
    flex: 1;
    min-width: 0;
}

.album-grid-card h4 {
    padding: 0;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.album-grid-card .release-description {
    padding: 0;
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.album-grid-card .release-year {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.album-grid-card .release-links {
    padding: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.album-grid-card .listen-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: white;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    font-size: 0;
    transition: all 0.3s ease;
}

.album-grid-card .listen-link::before {
    content: "▶";
    font-size: 1rem;
}

.album-grid-card .listen-link:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Responsive Drawer */
@media (max-width: 1024px) {
    .drawer-content {
        width: 400px;
    }
}

@media (max-width: 768px) {
    .drawer-content {
        width: 85vw;
        max-width: 380px;
    }
    
    .drawer-header {
        padding: 1.25rem 1.5rem;
    }
    
    .drawer-header h3 {
        font-size: 1.3rem;
    }
    
    .drawer-body {
        padding: 0.75rem;
    }
    
    .album-grid-card {
        padding: 0.875rem 1.25rem;
    }
    
    .album-grid-card img {
        width: 50px;
        height: 50px;
    }
    
    .view-all-btn {
        margin: 1.5rem auto 0;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .drawer-content {
        width: 100vw;
        max-width: 100vw;
    }
    
    .drawer-header {
        padding: 1rem 1.25rem;
    }
    
    .drawer-header h3 {
        font-size: 1.2rem;
    }
    
    .drawer-body {
        padding: 0.5rem;
    }
    
    .album-grid-card {
        padding: 0.75rem 1rem;
    }
    
    .album-grid-card img {
        width: 45px;
        height: 45px;
    }
    
    .album-grid-card h4 {
        font-size: 0.95rem;
    }
    
    .album-grid-card .release-description {
        font-size: 0.85rem;
    }
    
    .album-grid-card .release-year {
        font-size: 0.7rem;
        padding: 0.15rem 0.5rem;
    }
    
    .album-grid-card .listen-link {
        width: 36px;
        height: 36px;
    }
    
    .close-drawer {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 5px;
}

.track-name {
    font-weight: bold;
    color: var(--primary-color);
}

.track-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Photos Section */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.photo-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.download-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.download-btn:hover {
    background: #ff5252;
}

.photo-credit {
    color: white;
    font-size: 0.9rem;
}

.download-all {
    text-align: center;
    margin-top: 2rem;
}

.download-all-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.download-all-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Press Section */
.press-quotes {
    margin-bottom: 3rem;
}

.press-quotes h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.quote-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.quote-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-card cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Performance Highlights */
.performance-highlights {
    margin-top: 3rem;
}

.performance-highlights h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.performance-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.performance-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.performance-card p {
    color: var(--text-light);
}

/* Press Highlights Section */
.press-highlights {
    margin-top: 3rem;
}

.press-highlights h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.press-links-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Press Link Item Styling (similar to main website) */
.press-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.press-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
    transition: width 0.3s ease;
    z-index: 0;
}

.press-link-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.press-link-item:hover::before {
    width: 100%;
}

.press-link-item:hover .press-icon {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.press-link-item:hover .press-arrow {
    transform: translateX(4px);
    color: var(--accent-color);
}

/* Press Icon */
.press-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 10px;
    font-weight: bold;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Press Content */
.press-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.press-content strong {
    display: block;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.press-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Press Arrow */
.press-arrow {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

/* Accordion Hidden Content */
.press-links-hidden {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-links-hidden.expanded {
    max-height: 2000px;
    opacity: 1;
    margin-top: 0;
}

/* Accordion Toggle Button */
.press-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.press-accordion-toggle:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.press-accordion-toggle:active {
    transform: translateY(0);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.press-accordion-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

/* Responsive Press Highlights */
@media (max-width: 768px) {
    .press-link-item {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .press-link-item:hover {
        transform: translateX(4px);
    }
    
    .press-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 0.9rem;
    }
    
    .press-content strong {
        font-size: 0.95rem;
    }
    
    .press-meta {
        font-size: 0.85rem;
    }
    
    .press-arrow {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .press-link-item {
        padding: 0.875rem;
        gap: 0.625rem;
    }
    
    .press-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .press-content strong {
        font-size: 0.9rem;
    }
    
    .press-meta {
        font-size: 0.8rem;
    }
    
    .press-arrow {
        display: none;
    }
    
    .press-accordion-toggle {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    text-align: center;
}

.social-links h3 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Download Section */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.download-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.download-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.download-complete-btn,
.download-onesheet-btn,
.download-facts-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.download-complete-btn:hover,
.download-onesheet-btn:hover,
.download-facts-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-link {
        padding: 0.75rem;

        span {
            display: none;
        }
    }

    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .quick-stats {
        justify-content: center;
    }
    
    /* Hide streaming platforms header on mobile */
    .streaming-links h3 {
        display: none;
    }
    
    /* Music platform icons only on mobile */
    .platform-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .platform-link {
        background: transparent;
        border: none;
        padding: 0.75rem;
        border-radius: 50%;
    }
    
    .platform-link:hover {
        background: var(--secondary-color);
        transform: scale(1.15);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .platform-link svg {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }
    
    .platform-link span {
        display: none !important;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .quote-grid,
    .feature-list,
    .performance-grid,
    .achievements-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .track-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .photo-gallery {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .platform-grid {
        gap: 0.75rem;
    }
    
    .platform-link {
        padding: 0.5rem;
    }
    
    .platform-link svg {
        width: 40px;
        height: 40px;
    }
    
                .social-grid {
        align-items: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}