/* Sublimation Station - Bauhaus-inspired design */

/* Override base styles for this page only */
body.sublimation-station {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #2F4F4F;
    background-color: #F8F4E8;
    margin: 0;
    padding: 0;
}

/* Hide default sidebar for this page */
body.sublimation-station #sidebar {
    display: none;
}

/* Full width content */
body.sublimation-station .content {
    margin-left: 0;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
}

/* Bauhaus Header */
.bauhaus-header {
    background: linear-gradient(135deg, #2F4F4F 0%, #1a3333 100%);
    color: #F8F4E8;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bauhaus-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 40%, #D4A872 40%, #D4A872 60%, transparent 60%),
        linear-gradient(-45deg, transparent 70%, #F0A3A2 70%, #F0A3A2 80%, transparent 80%);
    opacity: 0.1;
}

.bauhaus-header h1 {
    font-size: 4em;
    margin: 0;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    z-index: 2;
    text-shadow: 3px 3px 0px #000;
}

.bauhaus-tagline {
    font-size: 1.4em;
    margin: 20px 0 0;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    color: #D4A872;
}

/* Navigation Strip */
.bauhaus-nav {
    background: #D4A872;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bauhaus-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.bauhaus-nav li {
    margin: 0;
    border-right: 2px solid #2F4F4F;
}

.bauhaus-nav li:last-child {
    border-right: none;
}

.bauhaus-nav a {
    display: block;
    padding: 18px 30px;
    text-decoration: none;
    color: #2F4F4F;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.bauhaus-nav a:hover,
.bauhaus-nav a.current {
    background-color: #F0A3A2;
    color: #F8F4E8;
    transform: translateY(-2px);
}

/* Main Content Container */
.bauhaus-content {
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
.bauhaus-content h1 {
    font-size: 2.8em;
    color: #2F4F4F;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.bauhaus-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #F0A3A2 0%, #D4A872 100%);
    margin: 15px 0 0;
}

.bauhaus-content h3 {
    font-size: 1.6em;
    color: #2F4F4F;
    margin: 40px 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.bauhaus-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

/* Geometric accent boxes */
.info-box {
    background: #FFF;
    border-left: 8px solid #F0A3A2;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 
        4px 4px 0px #D4A872,
        8px 8px 0px rgba(47, 79, 79, 0.2);
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #2F4F4F;
    transform: rotate(45deg);
}

/* Lists */
.bauhaus-content ul {
    list-style: none;
    padding: 0;
}

.bauhaus-content ul li {
    padding: 12px 0;
    border-bottom: 1px solid #D4A872;
    position: relative;
    padding-left: 30px;
    font-size: 1.1em;
    color: #333;
}

.bauhaus-content ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: #F0A3A2;
    font-size: 1.2em;
    top: 10px;
}

.bauhaus-content ul li:last-child {
    border-bottom: none;
}

/* Links */
.bauhaus-content a {
    color: #F0A3A2;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.bauhaus-content a:hover {
    border-bottom-color: #F0A3A2;
}

/* Geometric decoration elements */
.geometric-accent {
    position: relative;
    margin: 60px 0;
    text-align: center;
}

.geometric-accent::before,
.geometric-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: #D4A872;
}

.geometric-accent::before {
    left: 0;
}

.geometric-accent::after {
    right: 0;
}

.geometric-accent span {
    background: #F8F4E8;
    padding: 0 30px;
    color: #2F4F4F;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bauhaus-header h1 {
        font-size: 2.5em;
        letter-spacing: 3px;
    }
    
    .bauhaus-header,
    .bauhaus-content {
        padding: 40px 20px;
    }
    
    .bauhaus-nav a {
        padding: 15px 20px;
        font-size: 0.8em;
    }
    
    .info-box {
        padding: 20px;
    }
}

/* Social links in Bauhaus style */
.bauhaus-social {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #F0A3A2 0%, #D4A872 100%);
}

.bauhaus-social a {
    display: inline-block;
    margin: 0 15px;
    padding: 15px 20px;
    background: #2F4F4F;
    color: #F8F4E8;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transform: skew(-10deg);
    transition: transform 0.3s ease;
}

.bauhaus-social a:hover {
    transform: skew(-10deg) scale(1.05);
}

/* Archive Section Styles */
.archive-grid {
    margin: 40px 0;
}

.show-archive {
    background: #FFF;
    border: 2px solid #D4A872;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0px rgba(47, 79, 79, 0.2);
    position: relative;
    scroll-margin-top: 120px; /* Account for fixed header when using anchor links */
}

.show-header {
    background: linear-gradient(135deg, #D4A872 0%, #F0A3A2 100%);
    padding: 20px;
    border-bottom: 2px solid #2F4F4F;
}

.show-header h4 {
    margin: 0 0 5px 0;
    font-size: 1.4em;
    color: #2F4F4F;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.show-header small {
    display: block;
    margin-bottom: 15px;
    color: #2F4F4F;
    font-size: 0.9em;
    opacity: 0.8;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.show-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.show-controls audio {
    flex-grow: 1;
    min-width: 200px;
    height: 40px;
    border-radius: 0;
}

.tracklist-toggle {
    background: #2F4F4F;
    color: #F8F4E8;
    border: none;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9em;
}

.tracklist-toggle:hover {
    background: #F0A3A2;
    color: #2F4F4F;
    transform: translateY(-2px);
}

.tracklist-toggle:disabled {
    background: #666;
    color: #CCC;
    cursor: not-allowed;
    transform: none;
}

.tracklist {
    padding: 30px;
    background: #F8F4E8;
    border-top: 1px solid #D4A872;
    transition: all 0.3s ease;
    overflow: hidden;
}

.tracklist.hidden {
    display: none;
}

.tracklist p {
    margin: 0;
    font-style: italic;
    color: #666;
}

.tracklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tracklist ul li {
    padding: 8px 0;
    border-bottom: 1px solid #D4A872;
    font-size: 0.95em;
    color: #333;
}

.tracklist ul li:last-child {
    border-bottom: none;
}

.tracklist ul li::before {
    content: '♪';
    color: #F0A3A2;
    margin-right: 10px;
    font-weight: bold;
}

/* Archive responsive design */
@media (max-width: 768px) {
    .show-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .show-controls audio {
        width: 100%;
    }
    
    .tracklist-toggle {
        width: 100%;
        text-align: center;
    }
    
    .show-header {
        padding: 15px;
    }
    
    .tracklist {
        padding: 20px;
    }
}