/* Archive Pages - Modern Transparent Design */
/* Consistent with main site and Kunst/Lehre overlays */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basics */
body {
    background: #000000;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* p5 Hintergrund */
#p5-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.85;
    pointer-events: none;
}

/* Navigation - Zurück-Button */
.nav-home {
    position: fixed;
    top: clamp(25px, 3.5vw, 45px);
    left: clamp(25px, 4.5vw, 65px);
    z-index: 102;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #f5f5f5;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.nav-home:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-2px);
}

.nav-home::before {
    content: '←';
    font-size: 18px;
    margin-right: 4px;
}

/* Main Content Container */
.archive-main {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    padding: clamp(120px, 15vw, 180px) clamp(30px, 5vw, 60px) clamp(80px, 10vw, 120px);
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Boxes - Transparent like Kunst overlay */
.content-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: clamp(40px, 5vw, 60px);
    margin-bottom: clamp(40px, 5vw, 60px);
    position: relative;
    z-index: 5;
}

/* Headings */
h1 {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: clamp(24px, 3vw, 36px);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(255, 255, 255, 0.25),
        0 2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

h2 {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: clamp(16px, 2vw, 24px);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.6);
}

h3 {
    font-family: "Inter Tight", sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: clamp(12px, 1.5vw, 18px);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Paragraphs */
p {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: clamp(16px, 2vw, 24px);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: clamp(20px, 3vw, 40px) auto;
    border-radius: 4px;
}

.image-container {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: clamp(20px, 3vw, 30px);
    margin: clamp(20px, 3vw, 40px) 0;
    text-align: center;
}

.image-container img {
    margin: 0;
}

.image-container p {
    margin-top: clamp(12px, 1.5vw, 18px);
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Responsive Images */
.responsive {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Audio Controls */
audio {
    width: 100%;
    max-width: 600px;
    margin: clamp(20px, 3vw, 30px) auto;
    display: block;
}

/* Video */
video {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: clamp(20px, 3vw, 40px) auto;
    display: block;
    border-radius: 4px;
}

/* Links */
a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* Lists */
ul, ol {
    margin-left: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(16px, 2vw, 24px);
}

li {
    font-family: "Inter", sans-serif;
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: clamp(8px, 1vw, 12px);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .archive-main {
        padding: clamp(100px, 12vw, 140px) clamp(20px, 4vw, 40px) clamp(60px, 8vw, 100px);
    }
    
    .content-box {
        padding: clamp(30px, 4vw, 50px);
    }
    
    .nav-home {
        top: clamp(20px, 2.5vw, 30px);
        left: clamp(20px, 3.5vw, 35px);
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Remove old footer styles */
footer {
    display: none;
}

/* Hide old navigation */
nav img {
    display: none;
}
