/**
 * Civic Leadership Academy Frontend Styles
 */

.civic-academy-frontend {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

.civic-academy-header-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1a3d7a 100%);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 30px;
}

.civic-academy-title {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #fff;
}

.civic-academy-tagline {
    font-size: 20px;
    font-style: italic;
    margin: 0;
    opacity: 0.95;
}

.civic-academy-content-section {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.civic-academy-section {
    margin-bottom: 40px;
}

.civic-academy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: #2c5aa0;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #2c5aa0;
}

.section-subtitle {
    color: #2c5aa0;
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #2c5aa0;
}

.civic-academy-two-column {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.civic-academy-column {
    flex: 1;
}

.civic-academy-highlight-box {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%);
    border-left: 5px solid #2c5aa0;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.8;
}

.civic-academy-highlight-box strong {
    color: #2c5aa0;
    font-size: 18px;
}

.civic-academy-week {
    background: #f9f9f9;
    border-left: 5px solid #2c5aa0;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.civic-academy-week:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.week-title {
    color: #2c5aa0;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.civic-academy-week p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.civic-academy-instructor-card {
    background: #f9f9f9;
    border-left: 5px solid #2c5aa0;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.civic-academy-instructor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.instructor-name {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.instructor-title {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.civic-academy-instructor-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.civic-academy-instructor-card a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.civic-academy-instructor-card a:hover {
    text-decoration: underline;
}

.civic-academy-quick-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.civic-academy-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.civic-academy-button-primary {
    background: #2c5aa0;
    color: #fff;
}

.civic-academy-button-primary:hover {
    background: #1a3d7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.civic-academy-button-secondary {
    background: transparent;
    color: #2c5aa0;
    border-color: #2c5aa0;
}

.civic-academy-button-secondary:hover {
    background: #2c5aa0;
    color: #fff;
    transform: translateY(-2px);
}

.civic-academy-frontend ul,
.civic-academy-frontend ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.civic-academy-frontend li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.civic-academy-frontend h4 {
    color: #333;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 12px;
}

.civic-academy-frontend p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.civic-academy-frontend strong {
    color: #2c5aa0;
    font-weight: 600;
}

.civic-academy-frontend a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
}

.civic-academy-frontend a:hover {
    text-decoration: underline;
}

.civic-academy-frontend em {
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .civic-academy-frontend {
        padding: 15px;
    }
    
    .civic-academy-title {
        font-size: 28px;
    }
    
    .civic-academy-tagline {
        font-size: 18px;
    }
    
    .civic-academy-header-section {
        padding: 30px 15px;
    }
    
    .civic-academy-content-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 20px;
    }
    
    .civic-academy-two-column {
        flex-direction: column;
        gap: 20px;
    }
    
    .civic-academy-quick-links {
        flex-direction: column;
    }
    
    .civic-academy-button {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .civic-academy-frontend {
        max-width: 100%;
        padding: 0;
    }
    
    .civic-academy-header-section {
        background: #2c5aa0 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .civic-academy-content-section {
        box-shadow: none;
        padding: 0;
    }
    
    .civic-academy-week,
    .civic-academy-instructor-card {
        page-break-inside: avoid;
    }
    
    .civic-academy-quick-links {
        display: none;
    }
}

