h1, h2, h3 {
    color: palevioletred;
}

h4 {
    color: orange;
}

#main {
    margin-top: 10px;
}

.description {
    margin: 10px 0;
}

.basic-song-info {
    margin-top: 10px;
    text-align: center;
}

.song-detail-header {
    margin: 10px 0;
}

.song-detail-header div {
    padding-bottom: 5px;
}

.see-all-versions {
    margin: 10px 0;
}

.song-versions {
    border-top: 1px solid palevioletred;
    margin-top: 10px;
    padding-top: 10px;
}

.song-versions h4 {
    margin: 10px 0;
}

.related-versions {
    border-top: 1px solid palevioletred;
    margin-top: 10px;
    padding-top: 10px;
}

#footer {
    border-top: 1px solid rgba(34,36,38,.15);
    margin: 10px 0;
    padding: 10px 0;
    text-align: center;
    background-color: whitesmoke;
}

/* Artists */
#artist-list .people {
    margin-bottom: 20px;
}

#artist-list .member-band {
    margin: 10px 0;
}

#artist-list .band-name {
    color: palevioletred;
}

.ui.pagination.menu {
    margin: 20px 0 !important;
}

#artist-detail .members, #artist-detail .albums {
    margin: 10px 0 !important;
}

#artist-detail .description {
    margin: 10px 0;
}

#artist-detail .born, #artist-detail .website {
    margin: 10px 0;
}

#top-song-writers h2, #top-covering-singers h2 {
    margin: 20px 0;
}
.artist-song-list h3 {
    margin: 10px 0;
}

/* Modern CSS Utilities */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Enhanced hover effects */
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Card styling enhancements */
.artist-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Styles */
.desktop-menu {
    display: flex !important;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.mobile-nav-item:hover {
    background-color: #f8fafc;
    color: #4f46e5;
    text-decoration: none;
}

.mobile-nav-item.active {
    background-color: #eef2ff;
    color: #4f46e5;
    border-left: 4px solid #4f46e5;
}

.mobile-nav-item svg {
    margin-right: 12px;
    flex-shrink: 0;
}

.mobile-nav-item span {
    font-weight: 500;
    font-size: 16px;
}

.mobile-search-container {
    background-color: #f8fafc;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .desktop-menu {
        display: none !important;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        top: auto;
        bottom: 0;
        transform: translateY(100%);
        max-height: 80vh;
        overflow-y: auto;
    }

    .mobile-menu.show {
        transform: translateY(0);
    }

    .mobile-menu-content {
        border-top: none;
        border-radius: 20px 20px 0 0;
        max-height: 80vh;
        overflow-y: auto;
    }

    .mobile-nav-item {
        padding: 16px 20px;
        font-size: 18px;
    }

    .mobile-nav-item svg {
        width: 24px;
        height: 24px;
        margin-right: 16px;
    }
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }

    .header-search-desktop {
        display: block !important;
    }

    .mobile-menu-button,
    .mobile-search-button {
        display: none !important;
    }
}
