/* Le Silence des Nanos - Style vintage 2006 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Futura, 'Trebuchet MS', Arial, sans-serif;
    background: #fafafa;
    color: #2a2a2a;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    min-height: 100vh;
}

/* Header */
header {
    border-bottom: 3px solid #8b1a1a;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #8b1a1a;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.tagline {
    color: #666;
    font-size: 1.1em;
    font-style: italic;
}

/* Navigation */
nav {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #8b1a1a;
}

/* Main content */
main {
    padding: 30px 0;
}

h2 {
    color: #8b1a1a;
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    font-weight: 500;
}

h3 {
    color: #2a2a2a;
    font-size: 1.3em;
    margin: 25px 0 15px 0;
    font-weight: 500;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.intro {
    font-size: 1.1em;
    color: #444;
    border-left: 4px solid #8b1a1a;
    padding-left: 20px;
    margin: 30px 0;
}

.poem {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin: 30px 0;
    padding: 20px;
    background: #f5f5f5;
    border-left: 3px solid #8b1a1a;
}

.poem p {
    margin-bottom: 5px;
    text-align: left;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.poster {
    max-width: 400px;
    margin: 30px auto;
}

.inline-img {
    margin: 20px 0;
}

.img-caption {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

/* Video embed */
.video-container {
    margin: 30px 0;
    text-align: center;
}

.video-container iframe {
    max-width: 100%;
    width: 640px;
    height: 360px;
    border: 2px solid #ddd;
}

/* Warning box */
.warning {
    background: #fff9e6;
    border: 2px solid #8b1a1a;
    padding: 20px;
    margin: 30px 0;
    text-align: center;
}

.warning p {
    font-size: 1.2em;
    color: #8b1a1a;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Projections list */
.projections-list {
    margin: 20px 0;
}

.year-section {
    margin: 40px 0;
}

.year-section h3 {
    color: #8b1a1a;
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid #ddd;
}

.projection-item {
    margin: 12px 0 12px 20px;
    padding-left: 15px;
    border-left: 2px solid #ddd;
}

.projection-item.presente {
    border-left-color: #8b1a1a;
}

.projection-date {
    font-weight: 600;
    color: #2a2a2a;
}

.projection-location {
    color: #8b1a1a;
    font-weight: 500;
}

/* Links */
a {
    color: #8b1a1a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.download-link {
    display: inline-block;
    padding: 10px 20px;
    background: #8b1a1a;
    color: #fff;
    text-decoration: none;
    margin: 20px 0;
    font-weight: 500;
    transition: background 0.3s;
}

.download-link:hover {
    background: #6d1414;
    text-decoration: none;
}

/* Quote blocks */
blockquote {
    border-left: 4px solid #8b1a1a;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
}

blockquote p {
    text-align: left;
}

.quote-author {
    text-align: right;
    font-weight: 500;
    color: #2a2a2a;
    margin-top: 10px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 2px solid #ddd;
    color: #666;
    font-size: 0.9em;
    text-align: center;
}

footer p {
    text-align: center;
}

/* Press articles */
.press-item {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 3px solid #8b1a1a;
}

.press-item h3 {
    margin-top: 0;
}

.press-meta {
    color: #888;
    font-size: 0.9em;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-container iframe {
        width: 100%;
        height: 250px;
    }
}
