/* About Page Incremental Styles */
/* Only styles NOT already covered in styles.css framework */

/* Principal Section */
.principal-section {
    background: white;
    border-top: 1px solid var(--stone-200);
    border-bottom: 1px solid var(--stone-200);
}

.principal-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.principal-photo {
    position: sticky;
    top: 2rem;
}

.photo-container {
    background: white;
    border: 2px solid var(--stone-200);
    padding: 2rem;
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--stone-100) 0%, var(--stone-200) 100%);
    border: 2px solid var(--stone-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border: 1px solid var(--stone-200);
    background: var(--stone-50);
    transition: all 0.2s;
    text-decoration: none;
    color: var(--slate-700);
}

.credential-item:hover {
    border-color: var(--amber-700);
    background: rgba(180, 83, 9, 0.05);
}

.credential-icon {
    width: 20px;
    height: 20px;
    color: var(--amber-700);
}

.credential-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.principal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--slate-900);
}

.principal-title {
    font-size: 0.875rem;
    color: var(--amber-800);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.principal-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 2rem;
}

.principal-bio p {
    margin-bottom: 1.5rem;
}

.principal-bio p:last-child {
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stone-200);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--amber-800);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, var(--stone-50) 0%, white 100%);
}

/* Associates section */
.associates-section {
    background: white;
    border-top: 1px solid var(--stone-200);
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.associate-card, .add-member-card {
    background: white;
    border: 2px solid var(--stone-200);
    border-radius: 8px;
    padding: 2rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.associate-card:hover {
    border-color: var(--amber-700);
    box-shadow: 0 10px 30px rgba(180, 83, 9, 0.1);
}

.associate-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.associate-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--amber-700);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--stone-100);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-500);
}

.associate-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.associate-role {
    font-size: 0.875rem;
    color: var(--amber-800);
    font-weight: 500;
}

.associate-bio {
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.associate-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty-tag {
    background: rgba(180, 83, 9, 0.1);
    color: var(--amber-900);
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.add-member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-style: dashed;
    color: var(--slate-500);
}

.add-icon {
    width: 48px;
    height: 48px;
    background: rgba(180, 83, 9, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--amber-700);
}

.add-member-text {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .principal-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .principal-photo {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .associates-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .associates-grid {
        grid-template-columns: 1fr;
    }
}