/* 
 * Exhibition Styles for heimat.de Historical Archive
 * Retro 90s aesthetic optimized for modern browsers
 * Used by: exhibition-homepage.html, netzwerk-documentation.html
 */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Code:wght@200;300;400;500;600;700;800&display=swap');

/* Base Typography - Retro 90s with modern readability */
body {
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Cascadia Code', monospace, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;  /* Increased from 12px for modern browsers */
    line-height: 1.6;  /* Better readability */
}

/* Header Styles */
.header {
    background-color: #FFFFFF;
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #FF6600;
}

.header h1 {
    color: #FF6600;
    font-size: 2.2em;
    margin: 0;
    font-weight: bold;
    text-shadow: 1px 1px 2px #CCCCCC;
}

.logo {
    margin: 20px 0;
}

.logo img {
    max-width: 400px;
    height: auto;
}

/* Content Sections */
.content-section {
    background-color: #FFFFFF;
    border: 2px solid #CCCCCC;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0; /* 90s style - no rounded corners */
}

.content-section:hover {
    border-color: #FF6600;
    box-shadow: 2px 2px 4px #CCCCCC;
}

.content-box {
    background-color: #FFFFFF;
    border: 2px solid #CCCCCC;
    padding: 20px;
    margin: 15px 0;
    border-radius: 0;
}

/* Section Titles */
.section-title {
    color: #FF6600;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #FF6600;
    padding-bottom: 8px;
    text-transform: lowercase; /* 90s style */
}

/* Navigation */
.navigation {
    background-color: #333333;
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    border: 2px solid #000000;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.1em;
    font-weight: bold;
    padding: 8px 12px;
    border: 1px solid transparent;
    display: inline-block;
}

.nav-link:hover {
    color: #FF6600;
    background-color: #000000;
    border-color: #FF6600;
}

/* Project Links */
.project-link {
    color: #FF6600;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px dotted #FF6600;
}

.project-link:hover {
    color: #000000;
    background-color: #FF6600;
    padding: 4px 8px;
    border-bottom: none;
    text-decoration: none;
}

/* Exhibition-specific styles */
.exhibition-intro {
    background-color: #FF6600;
    color: #000000;
    padding: 20px;
    margin: 25px 0;
    font-weight: bold;
    font-size: 1.2em;
    border: 3px solid #000000;
    text-align: center;
}

.index-section {
    background-color: #FF6600;
    color: #000000;
    padding: 12px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.3em;
    border: 2px solid #000000;
    text-align: center;
}

/* Menu Items (for exhibition homepage) */
.menu-item {
    color: #000000;
    background-color: #FFFFFF;
    padding: 8px 15px;
    margin: 3px 0;
    display: block;
    text-decoration: none;
    font-size: 1.1em;
    border-left: 4px solid #FF6600;
    border-bottom: 1px solid #CCCCCC;
}

.menu-item:hover {
    background-color: #FF6600;
    color: #FFFFFF;
    border-left-color: #000000;
}

/* Technical Information Boxes */
.technical-info {
    background-color: #F0F0F0;
    border-left: 4px solid #FF6600;
    padding: 15px;
    margin: 15px 0;
    font-family: 'Cascadia Code', monospace;
    font-size: 0.95em;
    line-height: 1.4;
}

/* Special Content Areas */
.live-sessions {
    background-color: #FFF8DC;
    border: 2px solid #FF6600;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0;
}

.live-sessions strong {
    color: #FF6600;
}

.artist-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.artist-item {
    background-color: #F9F9F9;
    border: 2px solid #DDDDDD;
    padding: 12px;
    font-size: 1em;
    border-radius: 0;
}

.artist-item:hover {
    border-color: #FF6600;
    background-color: #FFFFFF;
}

.artist-item strong {
    color: #FF6600;
}

/* Footer */
.footer {
    padding: 25px;
    text-align: center;
    font-size: 0.9em;
    color: #666666;
    border-top: 2px solid #333333;
    margin-top: 40px;
    background-color: #F9F9F9;
}

/* Table-based layout support (for exhibition homepage) */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FFFFFF;
}

.main-content {
    width: 100%;
    background-color: #FFFFFF;
}

.sidebar {
    width: 250px;
    background-color: #FFFFFF;
    vertical-align: top;
    padding: 20px;
    border-right: 2px solid #CCCCCC;
}

.content {
    background-color: #FFFFFF;
    padding: 25px;
    vertical-align: top;
}

/* Address and small text */
.address-info {
    font-size: 0.85em;
    color: #CCCCCC;
    margin: 8px 0;
}

/* Termine Box */
.termine-box {
    background-color: #FFFFFF;
    border: 2px solid #FF6600;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0;
}

/* Lists */
ul {
    padding-left: 25px;
}

li {
    margin: 8px 0;
    line-height: 1.5;
}

/* Headings */
h1, h2, h3 {
    color: #FF6600;
    font-weight: bold;
}

h1 {
    font-size: 2.2em;
    margin: 20px 0;
}

h2 {
    font-size: 1.6em;
    margin: 18px 0 12px 0;
}

h3 {
    font-size: 1.3em;
    margin: 15px 0 10px 0;
}

/* Paragraphs */
p {
    margin: 12px 0;
    line-height: 1.6;
}

/* Strong text */
strong {
    color: #FF6600;
    font-weight: bold;
}

/* Small text */
small {
    font-size: 0.9em;
    color: #666666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        padding: 15px;
    }
    
    .artist-list {
        grid-template-columns: 1fr;
    }
    
    .nav-link {
        display: block;
        margin: 5px 0;
    }
    
    body {
        font-size: 15px;
    }
}