/* Layout and Visual Styles for Album Page */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    margin: 0;
    color: #222;
}

/* Haupt-Layout */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 8px;
}

.main-col {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-info {
    align-items: flex-start;
}

.main-tracks {
    align-items: flex-start;
}

/* Tracklist */
.tracklist {
    width: 100%;
}
.tracklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.track-item {
    position: relative;
    background: none;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 12px 0 12px 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
}
.track-item:last-child {
    border-bottom: none;
}
.track-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.08rem;
    color: #222;
    line-height: 1.3;
    min-height: 36px;
}
.track-title b {
    font-weight: bold;
}
.track-title small {
    font-size: 0.95em;
    color: #666;
    margin-left: 6px;
}
.track-item > div:last-child {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.98rem;
    color: #888;
    text-align: right;
    min-width: 48px;
    padding-left: 10px;
}

/* Plattform-Buttons */
.platforms {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    justify-content: center;
}
.platform {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    width: 90%;
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #222;
    background: none;
    border: 1px solid #bbb;
    box-shadow: none;
    transition: border-color 0.2s, background 0.2s;
}
.platform:hover {
    border-color: #222;
    background: #f2f2f2;
}
.platform-logo {
    width: 22px;
    height: 22px;
    display: inline-block;
}
.platform.spotify { background: #1db954; }
.platform.apple { background: #000; }
.platform.amazon { background: #ff9900; }
.platform.deezer { background: #ff5a5f; }
.platform.tidal { background: #0a0a0a; }

/* Streaming Buttons */
.streaming-buttons {
    width: 80%;
    align-self: center;
    margin: 32px 0 0 0;
    text-align: left;
    max-width: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}
.streaming-buttons h3 {
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #333;
}

/* Player Button */
.play-btn {
    background: #f2f2f2;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    color: #1db954;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    padding: 0;
}
.play-btn:hover {
    background: #1db954;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30,185,84,0.15);
}

/* Footer & Social Links */
footer {
    background: #222;
    color: #fff;
    padding: 24px 0 12px 0;
    margin-top: 48px;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.social-links {
    display: flex;
    gap: 18px;
}
.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #1db954;
}
.footer-desc {
    display: block;
    max-width: 90vw;
    font-size: 0.97rem;
    margin: 0 auto;
    text-align: center;
    color: #e0e0e0;
}

/* Album Cover & Header */
.journey-header, .waterfall-header, .legacy-header, .golive-header, .platonians-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0 16px 0;
    background: #fff;
    overflow: hidden;
}
.platonians-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: url('img/platonians.png') center center / cover no-repeat;
    filter: blur(18px) brightness(0.8);
    z-index: 0;
    opacity: 0.85;
}
.golive-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: url('img/golive-is-coming.png') center center / cover no-repeat;
    filter: blur(18px) brightness(0.8);
    z-index: 0;
    opacity: 0.85;
}
.journey-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: url('img/platon-journey.png') center center / cover no-repeat;
    filter: blur(18px) brightness(0.8);
    z-index: 0;
    opacity: 0.85;
}
.waterfall-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: url('img/agile-waterfall.png') center center / cover no-repeat;
    filter: blur(18px) brightness(0.8);
    z-index: 0;
    opacity: 0.85;
}
.legacy-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    background: url('img/platon-legacy.png') center center / cover no-repeat;
    filter: blur(18px) brightness(0.8);
    z-index: 0;
    opacity: 0.85;
}
.platonians-header > *:not(.platonians-bg) {
    position: relative;
    z-index: 1;
}
.golive-header > *:not(.golive-bg) {
    position: relative;
    z-index: 1;
}
.journey-header > *:not(.journey-bg) {
    position: relative;
    z-index: 1;
}
.waterfall-header > *:not(.waterfall-bg) {
    position: relative;
    z-index: 1;
}
.legacy-header > *:not(.legacy-bg) {
    position: relative;
    z-index: 1;
}
.album-cover {
    width: 320px;
    height: 320px;
    object-fit: cover;
    box-shadow: 0 0 0 16px rgba(255,255,255,0.35), 0 4px 24px rgba(0,0,0,0.12);
    margin-bottom: 18px;
}
.teaser-cover {
    width: 160px;
    height: 160px;
    object-fit: cover;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.35), 0 4px 24px rgba(0,0,0,0.12);
    margin-bottom: 18px;
    margin-right: 9px;
    margin-left: 9px;
}
.album-info {
    text-align: center;
    width: 100%;
}
.album-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}
.artist-name {
    font-size: 1.1rem;
    color: #666;
    margin: 8px 0 0 0;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    font-weight: bold;
    font-size: 1.15rem;
    color: #fff;
    background-color: #222;
    padding: 9px 0;
    margin: 0 0 0 0;
}

/* Responsive Anpassungen */
@media (max-width: 800px) {
    .main-grid {
        grid-template-columns: 1fr;
        padding: 18px 4vw;
    }
    .main-col {
        padding: 18px 10px;
    }
    .platforms {
        padding-left: 9px;
    }
}
@media (max-width: 600px) {
    .album-cover {
        width: 320px;
        height: 320px;
    }
    .streaming-buttons {
        max-width: 95vw;
        padding: 16px 16px;
    }
    .platform {
        min-width: 120px;
        font-size: 0.95rem;
    }
    .platforms {
        padding-left: 9px;
    }
}
