/* Additional Professional Resume Enhancements */

/* Enhanced Header Styling */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Hero Section Enhancement */
.entry-content > p:first-of-type {
    font-size: 1.25rem;
    color: #4a5568;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #046BD2;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Skills and Technical Section Styling */
.entry-content h2 {
    color: #2d3748;
    font-size: 1.875rem;
    border-bottom: 3px solid #046BD2;
    padding-bottom: 0.75rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.entry-content h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #046BD2 0%, #045CB4 100%);
}

/* Content Cards */
.entry-content > p {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    border-left: 3px solid #e2e8f0;
    transition: all 0.3s ease;
}

.entry-content > p:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    border-left-color: #046BD2;
    transform: translateY(-2px);
}

/* List Styling for Skills */
.entry-content ul {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    margin: 1rem 0;
}

.entry-content ul li {
    padding: 0.25rem 0;
    color: #4a5568;
    font-weight: 500;
}

.entry-content ul li::marker {
    color: #046BD2;
}

/* Contact Information Enhancement */
.contact-info-section {
    background: linear-gradient(135deg, #046BD2 0%, #045CB4 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.contact-info-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info-section a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin: 0.25rem;
    display: inline-block;
    transition: background 0.3s ease;
}

.contact-info-section a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Professional Quote/Highlight */
.professional-highlight {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
}

/* Navigation Menu Enhancement */
.main-navigation ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation ul li a:hover {
    color: #046BD2;
}

/* Footer Enhancement */
.site-footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .entry-content > p:first-of-type {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-section {
        padding: 1.5rem;
    }
}

/* Print Optimizations */
@media print {
    .entry-content > p {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
    
    .entry-content h2 {
        border-bottom: 2px solid #333;
        color: #333;
    }
    
    .contact-info-section {
        background: white !important;
        color: #333 !important;
        border: 1px solid #ddd;
    }
    
    .contact-info-section a {
        color: #333 !important;
        background: none !important;
    }
}