.chef-card {
    background: rgba(12, 11, 9, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.chef-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.chef-img {
    position: relative;
    overflow: hidden;
}

.chef-img img {
    transition: transform 0.4s ease;
}

.chef-card:hover .chef-img img {
    transform: scale(1.1);
}

.chef-img .social {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.chef-card:hover .chef-img .social {
    opacity: 1;
}

.chef-img .social a {
    color: #fff;
    margin: 0 10px;
    font-size: 18px;
    transition: color 0.3s;
}

.chef-img .social a:hover {
    color: #cda45e;
}

.chef-info {
    padding: 25px 20px;
}

.chef-info h4 {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

.chef-info span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
