/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   Matches main site design system
   ============================================ */

/* About Hero Section */
.about-hero {
    background-color: #fafafa;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #030901;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #666;
    font-style: italic;
}

/* About Content Section */
.about-content-section {
    background-color: #fafafa;
    padding: 6rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* About Text Content */
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #030901;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.skills-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.skills-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style-type: disc;
    color: #333;
}

/* About Sidebar */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.profile-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.profile-image img {
    width: 100%;
    display: block;
}

/* Quick Facts */
.quick-facts {
    background-color: #f5f5f5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.quick-facts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #030901;
}

.quick-facts ul {
    list-style: none;
}

.quick-facts li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e8e8;
    color: #333;
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts li strong {
    font-weight: 600;
    color: #030901;
}

/* Contact CTA */
.contact-cta {
    background-color: #030901;
    color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.contact-cta p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-cta .btn {
    background-color: #FFFFFF;
    color: #030901;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.contact-cta .btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

/* Values Section */
.values-section {
    background-color: #f5f5f5;
    padding: 6rem 0;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #030901;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #030901;
}

.value-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #333;
}

/* Active navigation indicator */
.nav-link.active {
    border-bottom: 2px solid #FFFFFF;
    padding-bottom: 2px;
}

/* Logo link styling */
.logo a {
    color: inherit;
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.9;
}

/* ============================================
   RESPONSIVE - TABLET (768px to 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .profile-image {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE (Below 768px)
   ============================================ */
@media (max-width: 767px) {
    /* Hero adjustments */
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    /* Content adjustments */
    .about-content-section {
        padding: 3rem 0;
    }
    
    .about-text h2 {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    /* Sidebar adjustments */
    .about-sidebar {
        grid-template-columns: 1fr;
    }
    
    /* Values grid adjustments */
    .values-section {
        padding: 3rem 0;
    }
    
    .values-title {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .value-item h3 {
        font-weight: 600;
    }
}