
.gradient-text {
    background: linear-gradient(90deg, #f77062, #fe5196);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ChicCharm Pink Buttons */
.my-button {
    font-weight: 500;
    padding: 0.4rem 1rem;
    transition: 0.3s ease;
}

.my-button.btn-dark,
.my-button.btn-primary {
    background-color: #f77062;
    border: none;
    color: white;
}

.my-button.btn-appointment {
    background-color: #000000;
    border: none;
    color: white;
}

.my-button.btn-dark:hover,
.my-button.btn-primary:hover,
.my-button.btn-appointment:hover,
.my-button.btn-success:hover,
.my-button.btn-danger:hover,
.my-button.btn-appointment:hover,
.my-button.btn-invoice:hover {
    background-color: 	#404040;
    color: white;
    border: none;
}



.my-button.btn-invoice {
    background:#b38369;   /* lighter hover */
    border: none;
    color: white;
}


/* Outline Pink */
.my-button.btn-outline-dark {
    color: #f77062;
    border-color: #f77062;

}

.my-button.btn-outline-dark:hover {
    background-color: #f77062;
    color: white;
    border-color: #f77062;
}

.btn-secondary {
    background-color: #fe5196;
    border: none;
}
.btn-secondary:hover {
    background-color: #f77062;
}

.navbar-brand.gradient-text {
    background: linear-gradient(90deg, #f77062, #fe5196);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    color: transparent;
}

.btn-pink {
    background-color: #fe5196;
    border: none;
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
    border-radius: 50px;
}

.btn-pink:hover {
    background-color: #f77062;
    color: white;
}

.industry-pill {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f86b6b;
    color: white;
    font-weight: bold;
    border-radius: 50px;
    text-transform: capitalize;
    margin-top: 5px;
    font-size: 0.9rem;
}

.nav-item {
    font-weight: bold;
}


.custom-footer{
    background-color: rgba(46, 53, 66, 1);
    color: white;
}

.card-header{
    background: white;
    color: black;
    font-weight: bold;
}

.add-service-header{
    background: #f86b6b;
    color: white;
}

.nav-link {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.2s ease;

}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #000000;
    transition: width 0.45s ease;
    pointer-events: none;
    display: none;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;

}

.nav-link:hover,
.nav-link:focus {
    color: #444444 !important;
    transform: scale(1.05);

}



/* message for booking */
.note {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    font-size: small;
}

.artist-page-text{
    display: block;
    margin-top: 6px;
    font-size: 20px;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    font-weight: bold;
}

.btn-cancel {
    background-color: white;
    border: grey;
    color: grey;
}
