/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Scheme - Apple Inspired */
    --primary-color: #000000;
    --secondary-color: #1d1d1f;
    --accent-color: #86868b;
    --text-dark: #1d1d1f;
    --text-light: #86868b;
    --background: #ffffff;
    --background-alt: #fbfbfd;
    --border-color: #d2d2d7;
    
    /* Typography - SF Pro/Inter */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    
    /* Spacing - Tight for premium feel */
    --section-padding: 35px 0;
    --container-max: 1200px;
    
    /* Shadows - Subtle depth */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--background);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.01) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(0, 0, 0, 0.01) 49px,
            rgba(0, 0, 0, 0.01) 50px
        );
    background-size: 100% 100%, 100% 100%, 50px 50px;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 18px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 38px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.25s;
    letter-spacing: -0.01em;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 980px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-spotify {
    background: #1DB954;
    color: white;
    border-color: #1DB954;
}

.btn-spotify:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-youtube {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.song-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 20px;
}

.btn-collab {
    background: #8B5CF6;
    color: white;
    border-color: #8B5CF6;
}

.btn-collab:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Expanded Album/Song Sections */
.album-expanded, .song-expanded {
    background: var(--background-alt);
    padding: 35px 0;
    margin: 0;
}

.album-header {
    text-align: center;
    margin-bottom: 25px;
}

.album-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 15px;
}

.album-header .badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.album-header p {
    max-width: 800px;
    margin: 0 auto 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.track-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.track-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.track-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.track-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.track-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.track-links .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
}

.achievement-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 30px 0;
}

.achievement-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.achievement-box ul {
    list-style: none;
    padding-left: 0;
}

.achievement-box li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.achievement-box li:before {
    content: "🎖️";
    position: absolute;
    left: 0;
}

.achievement-box a {
    color: var(--primary-color);
    text-decoration: underline;
}

.album-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-button {
    background: var(--primary-color);
    color: white !important;
    padding: 10px 28px;
    border-radius: 980px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 80px;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(29, 29, 31, 0.98) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        ),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "♪ ♫ ♩ ♬";
    position: absolute;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.15);
    top: 8%;
    left: 8%;
    user-select: none;
    pointer-events: none;
    animation: float-musical-notes 6s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: "♪ ♫ ♩";
    position: absolute;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.15);
    bottom: 12%;
    right: 10%;
    user-select: none;
    pointer-events: none;
    animation: float-musical-notes-alt 7s ease-in-out infinite;
    z-index: 1;
}

/* Mobile: smaller musical notes to prevent crowding */
@media (max-width: 768px) {
    .hero::before {
        content: "♪ ♫";
        font-size: 60px;
        top: 15%;
        left: 5%;
    }
    
    .hero::after {
        content: "♩ ♬";
        font-size: 55px;
        bottom: 20%;
        right: 5%;
    }
}

.hero-brand {
    font-family: var(--font-display);
    font-size: 5.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
    margin-top: 5px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

/* ===== SECTION STYLES ===== */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.lead {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--text-dark);
    line-height: 1.4;
}

.about-content p {
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: var(--text-light);
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* ===== MUSIC CATALOG ===== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.song-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.song-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.song-card.featured {
    grid-column: span 2;
}

.song-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--background-alt);
}

.song-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.song-card:hover .song-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.song-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.song-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.song-description {
    color: var(--text-light);
    margin-bottom: 15px;
}

.song-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.genre {
    font-weight: 600;
}

.tracklist {
    background: var(--background-alt);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tracklist h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.tracklist ul {
    list-style: none;
}

.tracklist li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.tracklist li:before {
    content: "♪";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.embed-placeholder {
    background: var(--background-alt);
    padding: 50px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* ===== LICENSING SECTION ===== */
.licensing {
    background: var(--background-alt);
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.licensing-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.licensing-card.highlight {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.licensing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.pricing-note {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* FAQ */
.faq-section {
    margin-top: 60px;
}

.faq-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== SPOTIFY PLAYLISTS SECTION ===== */
.playlists {
    background: white;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.playlist-card {
    background: var(--background-alt);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.playlist-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.playlist-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.playlist-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* ===== PRESS SECTION ===== */
.press {
    background: #ffffff;
}

.press-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.press-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 80px;
    padding: 15px 25px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.press-logo img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.press-logo:has(img.logo-larger) {
    height: 90px;
    padding: 12px 25px;
}

.press-logo img.logo-larger {
    max-height: 66px;
}

.press-logo:has(img.logo-smaller) {
    height: 75px;
    padding: 15px 25px;
}

.press-logo img.logo-smaller {
    max-height: 45px;
}

.press-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.press-logo:hover img {
    filter: grayscale(100%);
    opacity: 0.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--background-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.social-links h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icons a.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-message {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.form-message.success {
    border: 3px solid #10B981;
}

.form-message h3 {
    color: #10B981;
    margin-bottom: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 35px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Reduce section spacing on mobile */
    :root {
        --section-padding: 10px 0;
    }
    
    html {
        scroll-padding-top: 130px;
    }
    
    .hero {
        padding: 160px 0 60px;
    }
    
    /* Button spacing fixes for mobile */
    .song-links {
        gap: 15px;
        justify-content: center;
    }
    
    .album-actions {
        gap: 15px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .album-actions .btn {
        width: 100%;
        margin: 0;
    }
    
    /* Make all song cards consistent height on mobile */
    .song-card {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .song-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    /* Reduce press logo size on mobile */
    .press-logo-grid {
        gap: 10px;
    }
    
    .press-logo {
        min-width: 80px;
        height: 45px;
        padding: 8px 10px;
    }
    
    .press-logo img {
        max-height: 25px;
    }
    
    .press-logo:has(img.logo-larger) {
        height: 52px;
        padding: 6px 10px;
    }
    
    .press-logo img.logo-larger {
        max-height: 40px;
    }
    
    .press-logo:has(img.logo-smaller) {
        height: 42px;
        padding: 8px 10px;
    }
    
    .press-logo img.logo-smaller {
        max-height: 26px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: saturate(180%) blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08);
        padding: 30px 0;
        z-index: 998;
    }
    
    .nav-menu.active {
        display: flex;
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-brand {
        font-size: 2.5rem !important;
        white-space: nowrap !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .song-card.featured {
        grid-column: span 1;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .licensing-card.highlight {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 125px;
    }
    
    .hero {
        padding: 160px 0 40px !important;
    }
    
    .hero-brand {
        font-size: 2rem !important;
        white-space: nowrap !important;
    }
    
    .hero-title {
        font-size: 1.15rem;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        gap: 35px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Better button sizing on small phones */
    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .song-links {
        gap: 12px;
    }
    
    .song-links .btn {
        flex: 1 1 auto;
        min-width: 140px;
    }
    
    /* Even smaller press logos on small phones */
    .press-logo-grid {
        gap: 8px;
    }
    
    .press-logo {
        min-width: 70px;
        height: 38px;
        padding: 6px 8px;
    }
    
    .press-logo img {
        max-height: 22px;
    }
    
    .press-logo:has(img.logo-larger) {
        height: 44px;
        padding: 5px 8px;
    }
    
    .press-logo img.logo-larger {
        max-height: 34px;
    }
    
    .press-logo:has(img.logo-smaller) {
        height: 36px;
        padding: 6px 8px;
    }
    
    .press-logo img.logo-smaller {
        max-height: 24px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes float-musical-notes {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-25px) rotate(-10deg);
        opacity: 0.22;
    }
}

@keyframes float-musical-notes-alt {
    0%, 100% {
        transform: translateY(0) rotate(20deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-25px) rotate(25deg);
        opacity: 0.22;
    }
}


/* ===== WOW ENHANCEMENTS ===== */
/* Pulsing glow effect on Browse Catalog button */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 6px 20px rgba(0, 0, 0, 0.2);
    }
}

.hero-ctas .btn-primary {
    animation: pulse-glow 3s ease-in-out infinite;
}
/* ================================================
   ADDITIONAL STYLES FOR MULTI-PAGE WEBSITE
   Add these styles to your existing style.css file
   ================================================ */

/* ------------------------------------------------
   Navigation - Active State
   ------------------------------------------------ */
.nav-menu a.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-brand {
    text-decoration: none;
}

/* ------------------------------------------------
   Page Header (for inner pages)
   ------------------------------------------------ */
.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a2e 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Kids Page Header - Special styling */
.page-header.kids-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #4ECDC4 100%);
}

.page-header.kids-header h1,
.page-header.kids-header p {
    color: #1a1a2e;
}

/* ------------------------------------------------
   Video Showcase Carousel
   ------------------------------------------------ */
.video-showcase {
    padding: 20px 0 10px;
    background: #ffffff;
}

.video-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.video-carousel {
    overflow: hidden;
    flex: 1;
    border-radius: 16px;
}

.video-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.video-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-card h4 {
    padding: 16px 16px 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0;
}

.video-card p {
    padding: 0 16px 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
    height: 68px;
    display: flex;
    align-items: flex-start;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 18px;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.carousel-btn:hover i {
    color: white;
}

/* ------------------------------------------------
   Kids Catalog Styling
   ------------------------------------------------ */
.kids-catalog {
    background: linear-gradient(180deg, #FFF5F5 0%, #F0FFF4 50%, #F0F9FF 100%);
}

.kids-card {
    border: 3px solid transparent;
    background: white;
    transition: all 0.3s ease;
}

.kids-card:hover {
    border-color: #FFE66D;
    transform: translateY(-5px) rotate(1deg);
}

.kids-card .song-image {
    position: relative;
}

.play-overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-overlay-card i {
    color: white;
    font-size: 24px;
    margin-left: 4px;
}

.kids-card:hover .play-overlay-card {
    opacity: 1;
}

/* Kids Album Section */
.kids-album {
    background: linear-gradient(135deg, #FFF3E0 0%, #E3F2FD 100%);
}

.kids-album .album-header h2 {
    color: #E91E63;
}

/* ------------------------------------------------
   Responsive Adjustments
   ------------------------------------------------ */
@media (max-width: 1024px) {
    .video-card {
        flex: 0 0 250px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .video-carousel-wrapper {
        flex-direction: column;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .video-carousel {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .video-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .video-card-wrapper {
        flex: 0 0 calc(100vw - 60px);
        max-width: 320px;
        scroll-snap-align: start;
        margin-right: 20px;
    }
    
    .video-card {
        width: 100%;
        margin: 0;
    }
    
    /* Let Spotify iframe take full space on mobile */
    .video-card-wrapper iframe {
        width: 100% !important;
        height: 80px !important;
        min-height: 80px !important;
        display: block;
        border: none;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        margin: 10px 0 0 0 !important;
        padding: 0 !important;
    }
    
    .video-card-wrapper iframe::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .video-carousel-track {
        padding: 10px 10px 20px 10px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .video-card-wrapper {
        flex: 0 0 calc(100vw - 50px);
        max-width: 300px;
        margin-right: 15px;
    }
    
    .video-card {
        width: 100%;
        margin: 0;
    }
    
    /* Ensure Spotify iframe shows full height on smaller phones */
    .video-card-wrapper iframe {
        width: 100% !important;
        height: 80px !important;
        min-height: 80px !important;
        display: block;
        border: none;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        margin: 10px 0 0 0 !important;
        padding: 0 !important;
    }
    
    .video-card-wrapper iframe::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    .video-card h4 {
        font-size: 1rem;
        padding: 12px 16px 6px;
    }
    
    .video-card p {
        font-size: 0.85rem;
        line-height: 1.75;
        padding: 0 16px 18px;
        height: 75px;
        display: flex;
        align-items: flex-start;
    }
}

/* ------------------------------------------------
   Footer Enhancements for Multi-Page
   ------------------------------------------------ */
.footer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.footer-col .social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-col .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-col .social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col .social-icons {
        justify-content: center;
    }
}

/* Fixed Page Header - Dark text for readability */
.page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.25rem;
    color: #4a4a6a;
    max-width: 600px;
    margin: 0 auto;
}

/* Kids Page Header - Colorful background */
.page-header.kids-header {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 50%, #4ECDC4 100%);
}

.page-header.kids-header h1,
.page-header.kids-header p {
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

/* Kids Page - Button alignment fixes */
.kids-card .song-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.kids-card .song-links .btn {
    flex: 1 1 auto;
    min-width: 120px;
    max-width: 150px;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.9rem;
}

/* Kids Playlist Logo - smaller on desktop */
.playlists .playlist-card img {
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
}

@media (min-width: 768px) {
    .playlists .playlist-card img {
        max-width: 180px;
    }
}

/* Instagram Embed Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.instagram-embed {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.instagram-embed:hover {
    transform: translateY(-5px);
}

.instagram-embed a {
    display: block;
}

.instagram-embed img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-embed:hover img {
    transform: scale(1.05);
}

.instagram-embed .track-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #1a1a2e;
    background: #f8f9fa;
}

/* Instagram Embed Wrapper */
.instagram-embed-wrapper {
    margin-top: 15px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.instagram-embed-wrapper .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
}

/* Track card adjustments for Instagram embeds */
.tracks-grid .track-card {
    display: flex;
    flex-direction: column;
}

.tracks-grid .track-card .track-links {
    margin-bottom: 10px;
}

/* Section Divider - Premium Line */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    margin: 30px 0;
    width: 80%;
}

/* Track card - consistent button alignment */
.track-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.track-card p {
    flex-grow: 1;
}

.track-card .track-links {
    margin-top: auto;
    padding-top: 15px;
}

/* Instagram Photo Only Style */
.instagram-photo-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-photo-link:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instagram-photo-link img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.instagram-photo-link .instagram-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Instagram Photo Link - Fixed positioning */
.instagram-photo-link {
    position: relative !important;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-photo-link .instagram-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-photo-link .instagram-icon i {
    font-size: 1rem;
}
