:root {
    --primary-color: #f77062;
    --secondary-color: #f5f5f7;
    --text-color: #333;
    --light-text: #6c757d;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0 0 30px 30px;
    padding: 3rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(	247, 112, 98, 0.1);
}

.artist-name {
    font-weight: 700;
    margin-top: 1.5rem;
    font-size: 2.5rem;
}

.real-name {
    color: var(--light-text);
    font-weight: 500;
    margin-bottom: 1rem;
}

.artist-bio {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-badge {
    background-color: var(--secondary-color);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background-color: #f77062;
}

.service-card {
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-header {
    background-color: #f77062;
    color: white;
    padding: 1.5rem;
    border-radius: 16px 16px 0 0;
}

.service-body {
    padding: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price-tag {
    font-weight: 700;
    font-size: 1.2rem;
    color: #f77062;
}

.duration-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--light-text);
}

.book-btn {
    background-color: #f77062;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #f77062;
    transform: translateY(-3px);
    color: white;

}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-5px);
}

.no-services {
    background-color: var(--secondary-color);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.admin-actions {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.admin-btn {
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
}

.btn-outline-secondary {
    color: #f77062;
    border-color: #f77062;
}

.btn-outline-secondary:hover {
    background-color: #f77062;
    color: white;
    border-color: #f77062;
}

.view-service-button {
    background-color: white;
    color: grey;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    font-weight: bold;
}


.view-service-button:hover {
    background-color: #9a6a50;
    border-color: #9a6a50;
    color: white;
    text-decoration: none;
}

.artist-badge {
    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;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

}

.artist-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
