/*
Theme Name: Astra Child - Professional Resume
Description: Child theme of Astra optimized for professional resume presentation
Author: Dave Britt
Template: astra
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../astra/style.css");

/* Professional Resume Styling */

/* Typography Improvements */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #1a365d;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
}

h2 {
    font-size: 1.875rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: #2d3748;
}

/* Professional Header Section */
.resume-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.resume-header h1 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 3rem;
}

.resume-header .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: background 0.3s ease;
}

.contact-info a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Content Sections */
.resume-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.resume-section:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.skill-category {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #667eea;
}

.skill-category h4 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    padding: 0.25rem 0;
    color: #4a5568;
}

/* Experience Timeline */
.experience-item {
    border-left: 3px solid #667eea;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #667eea;
    border-radius: 50%;
}

.experience-title {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.25rem;
}

.experience-company {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.experience-date {
    color: #718096;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Professional Highlights */
.highlight-box {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.highlight-box h3 {
    color: white;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resume-header h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .resume-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .resume-header {
        background: white !important;
        color: #333 !important;
        box-shadow: none;
    }
    
    .resume-header h1 {
        color: #333 !important;
    }
    
    .resume-section {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .contact-info a {
        background: none !important;
        color: #333 !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
}

/* Navigation Enhancement */
.main-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.professional-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.professional-btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* Footer Enhancement */
.site-footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}