/* Artist Display Page Styles */

.artists-display-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #333;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 15px;
}

.artist-display-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.artist-info {
    padding: 15px;
}

.artist-name {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.artist-display-container .artist-name {
    font-size: 1.8rem;
}

.artist-email {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #555;
}

.artist-email i {
    margin-right: 10px;
    color: #666;
}

.artist-email a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.2s;
}

.artist-email a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.artist-services {
    margin-top: 30px;
    margin-bottom: 30px;
}

.artist-services h2 {
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.service-name {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
}

.service-description {
    color: #666;
    margin: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-price {
    font-weight: bold;
    color: #2ecc71;
    font-size: 1.1rem;
    margin-top: 10px;
}

.book-now-container {
    text-align: center;
    margin-top: 40px;
}

.book-now-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #F9A392 !important;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.book-now-button:hover {
    background-color: #f56649 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .artist-display-container {
        margin: 20px 15px;
        padding: 15px;
    }
    
    .artist-name {
        font-size: 1.8rem;
    }
    
    .book-now-button {
        width: 100%;
    }
}