@charset "utf-8";
/* CSS Document */
/* Exhibit Layout Styles */
.exhibit-container {
    max-width: 1200px;
    margin: auto;
    padding: 0;
}

@media (min-width:1024px) {
	.exhibit-container {
		margin-top: 5vh;
		position:relative;
		z-index: 5;
	}
}

.exhibit-hero {
	max-width: 100%;
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-bottom: 40px;
	margin-top:2rem;
}

.exhibit-hero-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.exhibit-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

.exhibit-intro {
    margin-bottom: 40px;
}

.exhibit-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #444;
    text-align: center;
    font-weight: 500;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #007bff;
}

.lead-text .lead-highlight {
    font-size: 1.6rem;
    font-weight: 700;
    color: #007bff;
    display: block;
    margin-bottom: 10px;
}


.exhibit-content {
    margin-bottom: 40px;
}

.exhibit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.exhibit-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
}

.exhibit-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.exhibit-image {
    text-align: center;
}

.rounded-img, .model-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.rounded-img:hover, .model-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.exhibit-video {
    width: 100%;
}

.exhibit-video iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9;
    min-height: 400px; 
    max-width: 900px; 
}

.exhibit-text-only {
    margin-bottom: 2rem; 
    padding: 1rem 0; 
}

.exhibit-text-only h2 {
    margin-bottom: 1rem; 
}

.exhibit-text-only p {
    margin-bottom: 1rem; 
    line-height: 1.6; 
}

.exhibit-text-only p:last-child {
    margin-bottom: 0; 
}


/* Timeline Styles */
.exhibit-feature {
    margin: 40px 0;
}

.exhibit-feature h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom:10px;
    text-align: center;
    border-bottom: 3px solid #007bff;
    padding-bottom: 10px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #007bff;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 25px;
    width: 15px;
    height: 15px;
    background: #003366;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #007bff;
}

.timeline-item:nth-child(odd)::before {
    right: -32px;
}

.timeline-item:nth-child(even)::before {
    left: -32px;
}

.timeline-item h3 {
    color: #003366;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.timeline-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Quote Styles */
.exhibit-quote {
    margin: 60px 0;
    text-align: center;
}

.exhibit-quote blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #444;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #28a745;
    margin: 0;
    position: relative;
}

.exhibit-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #28a745;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.exhibit-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 1rem;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

/* References Section Styles */
.exhibit-references {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    margin-top: 1rem;
}

.references-list {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.reference-item {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #333;
}

.reference-item:last-child {
    margin-bottom: 0;
}

.reference-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.reference-item a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.reference-item strong {
    color: #333;
    font-weight: 600;
}

.reference-item em {
    font-style: italic;
}

/* Responsive adjustments for references */
@media (max-width: 768px) {
    .exhibit-references {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .reference-item {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .references-list {
        padding-left: 1.2rem;
    }
}


/* CTA Styles */
.exhibit-cta {
    margin: 60px 0;
    text-align: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.exhibit-cta h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

.exhibit-cta p {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 20px;
} 
.model-container {
    margin: 30px 0;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .exhibit-hero-content h1 {
        font-size: 2rem;
    }
    
    .exhibit-subtitle {
        font-size: 1rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .exhibit-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .exhibit-text h2 {
        font-size: 1.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
    
    .timeline-item::before {
        left: -47px !important;
        right: auto !important;
    }
    
    .exhibit-quote blockquote {
        font-size: 1.2rem;
        padding: 25px;
    }
    
    .exhibit-cta {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .exhibit-container {
        padding: 0 10px;
    }
    
    .exhibit-info-container {
        padding: 0 10px;
    }
    
    .exhibit-hero {
        padding: 40px 0 30px;
    }
    
    .exhibit-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1rem;
        padding: 15px;
    }
    
    .timeline-item {
        width: calc(100% - 40px);
        margin-left: 40px !important;
        padding: 15px;
    }
    
    .timeline-item::before {
        left: -27px !important;
    }
}

.exhibit-3d {
    position: relative;
    width: 100%;
}

.sketchfab-embed {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.model-caption {
    margin-top: 0.5rem;
    font-style: italic;
    color: #666;
    text-align: center;
}

