/* Neuvorstellungen Styling - Krazz FM Style */

.neuvorstellungen-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00ff00;
}

.page-header h1 {
    color: #00ff00;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2.5em;
    margin: 0;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.category-btn {
    padding: 10px 25px;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #333;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9em;
}

.category-btn:hover {
    background: #00ff00;
    color: #000000;
    border-color: #00ff00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.category-btn.active {
    background: #00ff00;
    color: #000000;
    border-color: #00ff00;
}

/* Grid Layout */
.neuvorstellungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .neuvorstellungen-grid {
        grid-template-columns: 1fr;
    }
}

/* Item Card */
.nv-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #2a2a2a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: row;
    padding: 20px;
    gap: 20px;
}

.nv-item:hover {
    transform: translateY(-5px);
    border-color: #00ff00;
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.2);
}

/* Cover Image */
.nv-cover {
    position: relative;
    width: 180px;
    min-width: 180px;
    height: 180px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
    border-radius: 10px;
}

.nv-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nv-item:hover .nv-cover img {
    transform: scale(1.05);
}

/* Type Badge */
.nv-type-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #00ff00;
    color: #000000;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7em;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 2;
}

/* Date Badge */
.nv-date-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background: #00ff00;
    color: #000000;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 0.7em;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

/* Content */
.nv-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.nv-info {
    flex: 1;
}

.nv-category {
    color: #00ff00;
    font-size: 0.8em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.nv-title {
    color: #ffffff;
    font-size: 1.4em;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.nv-artist {
    color: #999;
    font-size: 1em;
    margin-bottom: 12px;
}

.nv-description {
    color: #aaa;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nv-description p {
    margin: 0 0 10px 0;
}

.nv-description p:last-child {
    margin-bottom: 0;
}

/* Links */
.nv-links {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.nv-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 4px 9px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nv-link i {
    font-size: 1em;
}

.nv-spotify {
    background: #1DB954;
    color: #ffffff;
}

.nv-spotify:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.nv-apple {
    background: #FA243C;
    color: #ffffff;
}

.nv-apple:hover {
    background: #fc5266;
    transform: scale(1.05);
}

.nv-youtube {
    background: #FF0000;
    color: #ffffff;
}

.nv-youtube:hover {
    background: #ff3333;
    transform: scale(1.05);
}

/* Panel Styling */
.nv-panel {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.nv-panel-header {
    color: #00ff00;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ff00;
    text-transform: uppercase;
}

.nv-panel-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.nv-panel-item:hover {
    background: rgba(0, 255, 0, 0.05);
    border-color: #00ff00;
}

.nv-panel-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.nv-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nv-panel-content {
    flex: 1;
}

.nv-panel-title {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.nv-panel-artist {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.nv-panel-desc {
    color: #ccc;
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 8px;
    font-style: italic;
}

.nv-panel-links {
    display: flex;
    gap: 8px;
}

.nv-panel-link {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .neuvorstellungen-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nv-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .nv-cover {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }
    
    .page-header h1 {
        font-size: 1.8em;
    }
    
    .category-filter {
        padding: 15px;
    }
    
    .category-btn {
        padding: 8px 15px;
        font-size: 0.85em;
    }
    
    .nv-links {
        flex-direction: row;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .neuvorstellungen-grid {
        grid-template-columns: 1fr;
    }
    
    .nv-panel-item {
        flex-direction: column;
    }
    
    .nv-panel-image {
        width: 100%;
        height: 200px;
    }
}