body {
    font-family: "Familjen Grotesk", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    color: #fff !important;
}

.hestaste-barberaren-header h2 {
    background-color: black;
    font-size: 60px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0;
    padding: 50px;
    text-align: center;
}

.staff-grid {
    background-color: black !important;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 40px 20px;
}

.staff-card {
    background-color: #111;
    border: 1px solid #333;
    border-radius: 12px;
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.staff-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.staff-card h3 {
    font-size: 1.2rem;
    color: #BF9B30;
    margin-bottom: 10px;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(191, 155, 48, 0.5);
}

.book-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #BF9B30;
    color: black;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    background-color: #d4af37;
    color: black;
}

.staff-card-link {
    text-decoration: none;
    color: inherit;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.page-numbers {
    background: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #333;
}

.page-numbers.current {
    background: #BF9B30;
    color: black;
}

.page-numbers:hover {
    background: #BF9B30;
    color: black;
}

.barber-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease-in-out;
}

.barber-card {
    width: 260px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background-color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease;
}

.barber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(191, 155, 48, 0.6);
}

.barber-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.barber-overlay {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    width: 100%;
    padding: 20px 10px;
    text-align: center;
    transition: background 0.3s ease;
}

.barber-card:hover .barber-overlay {
    background: rgba(0, 0, 0, 0.75);
}

.barber-name {
    font-size: 1.2rem;
    color: #BF9B30;
    font-weight: 700;
    margin-bottom: 10px;
}

.barber-view-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #BF9B30;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.barber-view-btn:hover {
    background-color: #d4af37;
}

@media (max-width: 768px) {
    
    .hestaste-barberaren-header h2 {
        font-size: 36px;
    }
}


