/* 
===========================================
HEADSHOT POSITIONING - EASY EDIT FILE
===========================================

This file controls ONLY the headshot positioning in the profile section.
You can edit these values with Notepad to adjust the crop position.

INSTRUCTIONS:
1. Open this file with Notepad
2. Edit the values below
3. Save the file
4. Refresh your website to see changes

POSITIONING GUIDE:
- object-position: [horizontal%] [vertical%]
- horizontal: 0% = far left, 50% = center, 100% = far right
- vertical: 0% = top, 50% = center, 100% = bottom
- scale: 1.0 = normal size, 2.0 = double size, 0.5 = half size

CURRENT SETTINGS (NORMAL/NATURAL):
*/

.headshot-profile-image {
    object-position: center center !important;
    transform: scale(1.0) !important;
}

/* 
QUICK ADJUSTMENT EXAMPLES:
- To move face more to left: change "center" to "30%"
- To move face more to right: change "center" to "70%"
- To move face up: change second "center" to "30%"
- To move face down: change second "center" to "70%"
- To zoom in more: change 1.1 to 1.3
- To zoom out: change 1.1 to 0.9

BACKUP SETTINGS (in case you want to revert):
Normal settings: object-position: center center, scale(1.1)
Previous extreme settings: object-position: 110% -55%, scale(2.0)
*/

