/* Documents Section Styles - Matching Scouting America Design */
.documents-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.documents-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.documents-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Roboto Slab', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.document-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.document-section h3 {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
}

.document-content {
    padding: 2rem;
}

.document-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.document-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.document-item h4 {
    color: #0066cc;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

.document-item p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    font-family: 'Roboto', sans-serif;
}

.document-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.document-item ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.document-item li {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

.registration-link {
    margin: 1.5rem 0;
}

.primary-button {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
    font-family: 'Roboto', sans-serif;
}

.primary-button:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .documents-section .container {
        padding: 0 1rem;
    }
    
    .documents-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .document-section h3 {
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
    }
    
    .document-content {
        padding: 1.5rem;
    }
    
    .primary-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        width: 100%;
    }
}

/* Events List Styles */
.events-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.events-list li {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    transition: all 0.3s ease;
}

.events-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.events-list li strong {
    color: #0066cc;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

.events-list li small {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    font-family: 'Roboto', sans-serif;
}

.events-list li br + small {
    margin-top: 0.5rem;
    display: block;
}

/* Print Styles */
@media print {
    .documents-section {
        background-color: white;
    }
    
    .document-section {
        box-shadow: none;
        border: 1px solid #dee2e6;
        page-break-inside: avoid;
    }
    
    .primary-button {
        background: white;
        color: #0066cc;
        border: 2px solid #0066cc;
        box-shadow: none;
    }
    
    .events-list li {
        box-shadow: none;
        border: 1px solid #dee2e6;
        page-break-inside: avoid;
    }
}
