/* Artist Portrait Styles */
.artist-portrait {
    text-align: center;
}

.portrait-wrapper {
    position: relative;
    display: inline-block;
}

.clay-frame {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #D2A679 0%, #B8865A 100%);
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clay-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2);
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.clay-overlay {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

.artist-badge {
    position: absolute;
    bottom: 15px;
    right: 10px;
    background: #24bbdb;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-family: 'Rubik', sans-serif;
}

.badge-text {
    text-transform: uppercase;
}

/* Quote Section */
.artist-quote {
    margin-top: 30px;
    padding: 20px 30px;
    background: #f9f6f0;
    border-radius: 20px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0.3;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 15px;
    padding-left: 40px;
}

.quote-author {
    font-size: 14px;
    color: #24bbdb;
    font-weight: 500;
    text-align: right;
    margin-bottom: 0;
}

/* Contact Information Styles */
.ct_title {
    font-size: 28px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #292929;
    margin-bottom: 15px;
}

.ct_description {
    color: #777;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.address_wrapper {
    margin-bottom: 30px;
}

.address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.address .icon {
    min-width: 45px;
}

.address .icon i {
    font-size: 24px;
    color: #24bbdb;
}

.address .contact-info-text p {
    margin-bottom: 5px;
    color: #555;
}

.address .contact-info-text span {
    font-weight: 600;
    color: #292929;
}

.address .contact-info-text a {
    color: #24bbdb;
    text-decoration: none;
}

.address .contact-info-text a:hover {
    text-decoration: underline;
}

.address-note {
    font-size: 12px;
    color: #999 !important;
}

/* Social Links Section */
.social-links-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-title {
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #555;
    font-size: 22px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
}

.social-icon.telegram:hover {
    background: #0088cc;
    color: white;
}

.social-icon.email:hover {
    background: #24bbdb;
    color: white;
}

/* Custom Order Note */
.custom-order-note {
    margin-top: 30px;
    padding: 15px 20px;
    background: #e8f4f7;
    border-left: 4px solid #24bbdb;
    border-radius: 8px;
}

.custom-order-note p {
    margin-bottom: 0;
    font-size: 13px;
    color: #555;
}

.custom-order-note i {
    color: #24bbdb;
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .clay-frame {
        width: 280px;
        height: 280px;
    }

    .ct_title {
        font-size: 24px;
        text-align: center;
    }

    .ct_description {
        text-align: center;
    }

    .artist-quote {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .clay-frame {
        width: 240px;
        height: 240px;
    }

    .artist-badge {
        padding: 4px 12px;
        font-size: 10px;
    }

    .quote-text {
        font-size: 14px;
        padding-left: 30px;
    }

    .address {
        flex-direction: column;
        align-items: flex-start;
    }

    .address .icon {
        margin-bottom: 10px;
    }
}
