/* Fast Forward Club - The Monti Times (Simple Version) */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.site-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Current Edition */
.current-edition {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.edition-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.edition-header h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.edition-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.edition-number {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.edition-date {
    color: #7f8c8d;
    padding: 0.5rem 1rem;
    background-color: #ecf0f1;
    border-radius: 20px;
}

/* PDF Container */
.pdf-container {
    margin: 1.5rem 0;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.pdf-container iframe {
    display: block;
    border: none;
}

.pdf-fallback {
    padding: 3rem;
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.pdf-fallback a {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

/* Mobile Note */
.mobile-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.95rem;
    margin: 1rem 0;
    padding: 1rem;
    background-color: #fff3cd;
    border-radius: 5px;
    border-left: 4px solid #f39c12;
}

/* Action Buttons */
.actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-download,
.btn-archive {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-download {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.btn-archive {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
}

.btn-download:hover,
.btn-archive:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About Section */
.about {
    background: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about p {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 2rem;
    }
    
    .site-header h2 {
        font-size: 1.8rem;
    }
    
    .pdf-container iframe {
        height: 600px;
    }
    
    .actions {
        flex-direction: column;
    }
    
    .btn-download,
    .btn-archive {
        text-align: center;
    }
}
