﻿/* 💈 Our Barbers Section */
.barbers-section {
    background: #0b0b0b;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.barber-card {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    position: relative;
}

    .barber-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    }

.barber-img {
    position: relative;
    overflow: hidden;
}

    .barber-img img {
        width: 100%;
        transition: transform 0.5s ease;
    }

.barber-card:hover .barber-img img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.barber-card:hover .overlay {
    opacity: 1;
}

.barber_name{
    font-size:50px;
}

.social-icons a {
    color: #d4af37;
    font-size: 1.3rem;
    margin: 0 10px;
    transition: all 0.3s;
}

    .social-icons a:hover {
        color: #fff;
        transform: scale(1.2);
    }


.overlay .logo-image {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 90px;
    height: auto;
    opacity: 0.5;
}