/* ============================================
   About Page - LinkedIn-Style Design
   ============================================ */

/* Main Container */
.about-main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Profile Banner */
.profile-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Profile Header */
.profile-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    margin-top: -80px;
    margin-bottom: 40px;
}

.profile-picture-container {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #ffffff;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

body.dark-mode .profile-picture-container {
    border-color: #1e293b;
    background: #1e293b;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.2;
}

body.dark-mode .profile-info h1 {
    color: #f1f5f9;
}

.profile-tagline {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

body.dark-mode .profile-tagline {
    color: #94a3b8;
}

/* About Content Container */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* About Sections */
.about-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

body.dark-mode .about-section {
    background: #1e293b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode .about-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Typography */
.about-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

body.dark-mode .about-section h2 {
    color: #f1f5f9;
    border-bottom-color: #334155;
}

.about-section h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 24px;
    margin-bottom: 16px;
}

body.dark-mode .about-section h3 {
    color: #e2e8f0;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 16px;
}

body.dark-mode .about-section p {
    color: #cbd5e1;
}

.intro-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.8;
}

body.dark-mode .intro-text {
    color: #f1f5f9;
}

/* Lists */
.about-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.about-section ul li {
    font-size: 1rem;
    line-height: 1.75;
    color: #334155;
    margin-bottom: 12px;
    position: relative;
}

body.dark-mode .about-section ul li {
    color: #cbd5e1;
}

.about-section ul li::marker {
    color: #0ea5e9;
}

/* Contact Info Box */
.contact-info {
    background: #f8fafc;
    border-left: 4px solid #0ea5e9;
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 8px;
}

body.dark-mode .contact-info {
    background: #0f172a;
    border-left-color: #0ea5e9;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Mission List */
.mission-list {
    background: #eff6ff;
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
}

body.dark-mode .mission-list {
    background: #0f172a;
}

.mission-list h3 {
    font-size: 1.25rem;
    color: #0369a1;
    margin-top: 0;
    margin-bottom: 16px;
}

body.dark-mode .mission-list h3 {
    color: #38bdf8;
}

.mission-list ul {
    margin: 0;
}

.mission-list ul li {
    color: #1e3a8a;
    font-weight: 500;
}

body.dark-mode .mission-list ul li {
    color: #bae6fd;
}

/* Tech List */
.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.tech-list li {
    background: #0ea5e9;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0;
}

.tech-list li::marker {
    display: none;
}

/* Exposure List */
.exposure-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.exposure-list li {
    background: #fef2f2;
    border-left: 3px solid #ef4444;
    padding: 12px 16px;
    border-radius: 6px;
    color: #7f1d1d;
    font-weight: 500;
}

body.dark-mode .exposure-list li {
    background: #450a0a;
    border-left-color: #dc2626;
    color: #fef2f2;
}

.exposure-list li::marker {
    display: none;
}

/* Service Categories Tags */
.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.category-tag {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

body.dark-mode .category-tag {
    background: #334155;
    color: #cbd5e1;
    border-color: #475569;
}

.category-tag:hover {
    background: #0ea5e9;
    color: #ffffff;
    border-color: #0ea5e9;
    transform: translateY(-2px);
}

/* Commitment Section */
.commitment-section {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    text-align: center;
}

.commitment-section h2 {
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.commitment-section p {
    color: #ffffff;
    font-size: 1.125rem;
}

.commitment-text {
    font-weight: 500;
    margin-bottom: 12px;
}

/* Links */
.about-section a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.about-section a:hover {
    color: #0284c7;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-banner {
        height: 200px;
    }

    .profile-header {
        margin-top: -60px;
    }

    .profile-picture-container {
        width: 120px;
        height: 120px;
        border-width: 4px;
    }

    .profile-info h1 {
        font-size: 1.5rem;
    }

    .profile-tagline {
        font-size: 1rem;
    }

    .about-section {
        padding: 24px 20px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section h3 {
        font-size: 1.25rem;
    }

    .exposure-list {
        grid-template-columns: 1fr;
    }

    .tech-list {
        flex-direction: column;
    }

    .tech-list li {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-banner {
        height: 150px;
    }

    .profile-header {
        margin-top: -50px;
        padding: 0 16px;
    }

    .profile-picture-container {
        width: 100px;
        height: 100px;
    }

    .profile-info h1 {
        font-size: 1.25rem;
    }

    .profile-tagline {
        font-size: 0.9375rem;
    }

    .about-content {
        padding: 0 16px 40px;
    }

    .about-section {
        padding: 20px 16px;
        margin-bottom: 16px;
    }

    .about-section h2 {
        font-size: 1.25rem;
    }

    .about-section h3 {
        font-size: 1.125rem;
    }

    .about-section p,
    .about-section ul li {
        font-size: 0.9375rem;
    }

    .contact-info {
        padding: 16px;
    }

    .mission-list {
        padding: 16px;
    }

    .category-tag {
        font-size: 0.875rem;
        padding: 6px 12px;
    }
}

/* Print Styles */
@media print {
    .profile-banner {
        height: 150px;
    }

    .about-section {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }

    .about-section a {
        color: #0f172a;
        text-decoration: underline;
    }
}
