/* Component-Specific Styles */

/* Album Gallery Component */
.album-gallery {
    padding: var(--spacing-xl) 0;
}

.album-gallery h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-primary-plum);
}

.genre-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-neutral-charcoal);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.album-item {
    text-align: center;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
}

.album-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.album-cover {
    position: relative;
    margin-bottom: var(--spacing-md);
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.album-cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.album-cover:hover img {
    transform: scale(1.05);
}

.album-cover::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--color-white);
    opacity: 0;
    transition: opacity var(--transition-medium);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.album-cover:hover::after {
    opacity: 1;
}

.album-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-plum);
    margin-bottom: var(--spacing-xs);
}

.album-artist {
    font-size: 0.9rem;
    color: var(--color-neutral-charcoal);
    margin-bottom: var(--spacing-md);
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.platform-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: none;
    box-shadow: var(--shadow-light);
    font-weight: 600;
}

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

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

/* Spotify - Official Green */
.platform-link.spotify {
    background-color: #1ED760 !important;
    color: #FFFFFF !important;
    border: 2px solid #1ED760 !important;
}

.platform-link.spotify:hover {
    background-color: #1DB954 !important;
    border-color: #1DB954 !important;
}

/* Apple Music - Official Black */
.platform-link.apple-music {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border: 2px solid #000000 !important;
}

.platform-link.apple-music:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
}

/* YouTube Music - Official Red */
.platform-link.youtube {
    background-color: #FF0000 !important;
    color: #FFFFFF !important;
    border: 2px solid #FF0000 !important;
}

.platform-link.youtube:hover {
    background-color: #CC0000 !important;
    border-color: #CC0000 !important;
}

/* Amazon Music - Official Orange */
.platform-link.amazon {
    background-color: #FF9900 !important;
    color: #000000 !important;
    border: 2px solid #FF9900 !important;
}

.platform-link.amazon:hover {
    background-color: #E68A00 !important;
    border-color: #E68A00 !important;
}

/* Deezer - Official Purple */
.platform-link.deezer {
    background-color: #A238FF !important;
    color: #FFFFFF !important;
    border: 2px solid #A238FF !important;
}

.platform-link.deezer:hover {
    background-color: #8B2CE6 !important;
    border-color: #8B2CE6 !important;
}

/* Genre-specific color themes */
.film-game-theme {
    --theme-primary: #2C1810;
    --theme-accent: #8B4513;
    --theme-light: #F4E4BC;
}

.classical-theme {
    --theme-primary: #1A1A2E;
    --theme-accent: #16213E;
    --theme-light: #E3E3F3;
}

.chillout-theme {
    --theme-primary: #0F3460;
    --theme-accent: #16537E;
    --theme-light: #E8F4FD;
}

.meditation-theme {
    --theme-primary: #2D5016;
    --theme-accent: #4F7942;
    --theme-light: #F0F8EC;
}

.dance-party-theme {
    --theme-primary: #4A0E4E;
    --theme-accent: #8E44AD;
    --theme-light: #F8E8FF;
}

/* Apply theme colors */
.genre-page.film-game-theme .album-gallery {
    background: linear-gradient(135deg, var(--theme-light) 0%, var(--color-accent-cream) 100%);
}

.genre-page.classical-theme .album-gallery {
    background: linear-gradient(135deg, var(--theme-light) 0%, var(--color-accent-cream) 100%);
}


.genre-page.chillout-theme .album-gallery {
    background: linear-gradient(135deg, var(--theme-light) 0%, var(--color-accent-cream) 100%);
}

.genre-page.meditation-theme .album-gallery {
    background: linear-gradient(135deg, var(--theme-light) 0%, var(--color-accent-cream) 100%);
}

.genre-page.dance-party-theme .album-gallery {
    background: linear-gradient(135deg, var(--theme-light) 0%, var(--color-accent-cream) 100%);
}

/* Page Header Component */
.page-header {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary-plum) 0%, var(--color-primary-green) 100%);
    color: var(--color-white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-accent-cream);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Breadcrumb Component */
.breadcrumb {
    padding: var(--spacing-md) 0;
    background-color: var(--color-accent-cream);
    border-bottom: 1px solid var(--color-neutral-light-grey);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin: 0 var(--spacing-sm);
    color: var(--color-neutral-charcoal);
}

.breadcrumb-link {
    color: var(--color-neutral-charcoal);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
    color: var(--color-accent-gold);
}

.breadcrumb-current {
    color: var(--color-accent-gold);
    font-weight: 500;
}

/* Legal Content Component */
.legal-content {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.legal-content h1 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-primary-plum);
}

.legal-content h2 {
    color: var(--color-accent-gold);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-accent-cream);
    padding-bottom: var(--spacing-xs);
}

.legal-content h3 {
    color: var(--color-primary-green);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.legal-content strong {
    color: var(--color-primary-plum);
}

.legal-content a {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-primary-plum);
}

/* Contact Info Component */
.contact-info-block {
    background-color: var(--color-accent-cream);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin: var(--spacing-lg) 0;
    border-left: 4px solid var(--color-accent-gold);
}

.contact-info-block h4 {
    color: var(--color-primary-plum);
    margin-bottom: var(--spacing-sm);
}

.contact-info-block p {
    margin-bottom: var(--spacing-xs);
    color: var(--color-neutral-charcoal);
}

/* Loading Component */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-neutral-light-grey);
    border-radius: 50%;
    border-top-color: var(--color-accent-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Error Message Component */
.error-message {
    background-color: #FEE2E2;
    border: 1px solid #FECACA;
    color: #991B1B;
    padding: var(--spacing-md);
    border-radius: 8px;
    margin: var(--spacing-md) 0;
    display: flex;
    align-items: center;
}

.error-message::before {
    content: '⚠';
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

/* Success Message Component */
.success-message {
    background-color: #D1FAE5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    padding: var(--spacing-md);
    border-radius: 8px;
    margin: var(--spacing-md) 0;
    display: flex;
    align-items: center;
}

.success-message::before {
    content: '✓';
    margin-right: var(--spacing-sm);
    font-size: 1.2rem;
}

/* Responsive adjustments for components */
@media (max-width: 768px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .album-cover img {
        height: 200px;
    }
    
    .platform-links {
        gap: var(--spacing-xs);
    }
    
    .platform-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: var(--spacing-xl) 0;
    }
    
    .breadcrumb-list {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .album-cover img {
        height: 180px;
    }
    
    .platform-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .page-header {
        padding: var(--spacing-xl) 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}
/* Footer Platform Links Styling */
.platform-links-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-links-footer li {
    margin-bottom: 8px;
}

.platform-link-footer {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-link-footer i {
    margin-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.platform-link-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

/* Platform-specific colors */
.platform-link-footer.spotify {
    background-color: #1ED760;
    border-color: #1ED760;
}

.platform-link-footer.spotify:hover {
    background-color: #1DB954;
    border-color: #1DB954;
}

.platform-link-footer.apple {
    background-color: #000000;
    border-color: #000000;
}

.platform-link-footer.apple:hover {
    background-color: #333333;
    border-color: #333333;
}

.platform-link-footer.youtube {
    background-color: #FF0000;
    border-color: #FF0000;
}

.platform-link-footer.youtube:hover {
    background-color: #CC0000;
    border-color: #CC0000;
}

.platform-link-footer.amazon {
    background-color: #FF9900;
    border-color: #FF9900;
}

.platform-link-footer.amazon:hover {
    background-color: #E68A00;
    border-color: #E68A00;
}

.platform-link-footer.deezer {
    background-color: #A238FF;
    border-color: #A238FF;
}

.platform-link-footer.deezer:hover {
    background-color: #8B2CE6;
    border-color: #8B2CE6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-link-footer {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .platform-link-footer i {
        font-size: 14px;
        margin-right: 8px;
    }
}
/* Footer Platform Links - Einfache Version */
.footer-links .platform-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    color: white !important;
    font-size: 14px;
    transition: opacity 0.3s ease;
	width: 150px;
}

.footer-links .platform-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.footer-links .platform-link i {
    margin-right: 6px;
    font-size: 16px;
}

/* Platform-spezifische Farben */
.footer-links .platform-link.spotify {
    background-color: #1ED760;
}

.footer-links .platform-link.apple {
    background-color: #000000;
}

.footer-links .platform-link.youtube {
    background-color: #FF0000;
}

.footer-links .platform-link.amazon {
    background-color: #FF9900;
}

.footer-links .platform-link.deezer {
    background-color: #A238FF;
}
/* Footer Platform Links Styling */
.footer-links.platform-links .platform-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: white !important;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 4px;
    width: 100%;
    box-sizing: border-box;
}

.footer-links.platform-links .platform-link:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    text-decoration: none;
    color: white !important;
}

.footer-links.platform-links .platform-link i {
    margin-right: 8px;
    font-size: 16px;
    width: 18px;
    text-align: center;
}

/* Platform-spezifische Farben */
.footer-links.platform-links .platform-link.spotify {
    background-color: #1ED760;
}

.footer-links.platform-links .platform-link.apple {
    background-color: #000000;
}

.footer-links.platform-links .platform-link.youtube {
    background-color: #FF0000;
}

.footer-links.platform-links .platform-link.amazon {
    background-color: #FF9900;
}

.footer-links.platform-links .platform-link.deezer {
    background-color: #A238FF;
	width: 150px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .footer-links.platform-links .platform-link {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .footer-links.platform-links .platform-link i {
        font-size: 14px;
        margin-right: 6px;
    }
}
.platform-link1 {
    display: flex;
    gap: var(--spacing-sm);
	align-items: center;
    justify-content: center;
    width: 150px;
    height: 40px;
    border-radius: 6px;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    border: none;
    box-shadow: var(--shadow-light);
    font-weight: 600;
}
.store-icons .littleStoreIcons {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}
/* Verbesserte Album-Hover-Animation mit !important */
.albums-grid .album-item {
    text-align: center;
    background-color: var(--color-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: translateY(0) !important;
}

.albums-grid .album-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-heavy) !important;
}

/* Sanftere Bild-Animation mit höherer Spezifität */
.albums-grid .album-item .album-cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: scale(1) !important;
}

.albums-grid .album-item .album-cover:hover img {
    transform: scale(1.03) !important;
}

/* Sanftere Play-Button-Animation */
.albums-grid .album-item .album-cover::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.albums-grid .album-item .album-cover:hover::after {
    opacity: 0.9 !important;
}

/* Alternative: Falls die obigen Regeln nicht funktionieren, verwenden Sie diese */
/* Entfernen Sie die /* und */ um diese zu aktivieren */


.album-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: translateY(0) !important;
}

.album-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.album-cover img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    transform: scale(1) !important;
}

.album-cover:hover img {
    transform: scale(1.03) !important;
}

.album-cover::after {
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.album-cover:hover::after {
    opacity: 0.9 !important;
}