/* Enhanced Professional Header Styling */

.header {
    background: linear-gradient(135deg, #ff69b4 0%, #db7093 100%);
    padding: 2.5rem 0;
    box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-profile {
    display: flex;
    align-items: center;
}

.profile-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background-color: white;
}

.profile-image-container:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6);
    border-color: #ffb6c1;
    border-width: 6px;
}

.header-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: all 0.4s ease;
}

.header-profile img:hover {
    transform: scale(1.05);
}

.header-title {
    margin-left: 1.5rem;
}

.name {
    color: white;
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.position {
    color: rgba(255, 255, 255, 0.95);
    margin: 0.7rem 0 0;
    font-size: 1.4rem;
    font-weight: 500;
}

.header-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.header-contact-item:hover {
    transform: translateX(5px);
}

.header-contact-item i {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.header-contact-item:hover i {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.header-contact-item span {
    font-size: 1.1rem;
}

/* Remove duplicate profile info in sidebar */
.profile-section {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .header-profile {
        margin-bottom: 1.5rem;
    }
    
    .header-contact {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .header-profile {
        flex-direction: column;
    }
    
    .header-title {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }
    
    .header-contact-item {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .header-contact-item i {
        margin-right: 0;
    }
}
