/**
 * About Page Specific Styles
 * These styles are only loaded on the about page
 */

/* ========================================
   About Page Specific Styles
   ======================================== */

.intro-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ========================================
   Skills Section
   ======================================== */

.skills-section {
    margin-bottom: 40px;
}

.skill-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #667eea;
}

.skill-card h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.skill-card ul {
    list-style: none;
    padding: 0;
}

.skill-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.skill-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* ========================================
   Philosophy Section
   ======================================== */

.philosophy-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.philosophy-section ul {
    margin-left: 0;
    padding-left: 0;
    list-style: none;
}

.philosophy-section li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.philosophy-section li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.philosophy-section strong {
    color: #667eea;
}

/* ========================================
   Projects Highlight
   ======================================== */

.projects-highlight {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 8px;
}

.projects-highlight p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-section,
.skills-section,
.philosophy-section,
.projects-highlight {
    animation: fadeInUp 0.6s ease-out;
}

.skills-section {
    animation-delay: 0.1s;
}

.philosophy-section {
    animation-delay: 0.2s;
}

.projects-highlight {
    animation-delay: 0.3s;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .intro-section,
    .philosophy-section,
    .projects-highlight {
        padding: 20px;
    }
    
    .skill-card h3 {
        font-size: 1.2rem;
    }
    
    .philosophy-section li {
        font-size: 1rem;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .skill-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
