/* ===================================
   HEADSHOT PHOTO STYLING
   =================================== */

/* Hero Section Headshot */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.hero-text-content {
    flex: 1;
}

.hero-headshot {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #E07856;
    box-shadow: 0 8px 24px rgba(224, 120, 86, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(224, 120, 86, 0.25);
}

.hero-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Headshot Placeholder (when image not loaded) */
.headshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E07856 0%, #C66647 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 2px;
}

/* Contact Section Headshot */
.contact-headshot-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.contact-headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E07856;
    box-shadow: 0 6px 20px rgba(224, 120, 86, 0.15);
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-headshot:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(224, 120, 86, 0.25);
}

.contact-headshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-headshot .headshot-placeholder {
    font-size: 40px;
    letter-spacing: 1.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-content-wrapper {
        flex-direction: column-reverse;
        gap: 32px;
        margin-bottom: 32px;
    }
    
    .hero-headshot {
        width: 150px;
        height: 150px;
        border-width: 3px;
        margin: 0 auto;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .headshot-placeholder {
        font-size: 48px;
    }
    
    .contact-headshot {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }
    
    .contact-headshot .headshot-placeholder {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-headshot {
        width: 130px;
        height: 130px;
    }
    
    .headshot-placeholder {
        font-size: 42px;
    }
    
    .contact-headshot {
        width: 90px;
        height: 90px;
    }
    
    .contact-headshot .headshot-placeholder {
        font-size: 28px;
    }
}
