/*
Theme Name: Alisadikh
Theme URI: https://alisadikh.blog
Author: Ali Sadikh
Author URI: https://desbas.shop
Description: Instagram stilində fərdi bloq mövzusu.
Version: 1.0
Text Domain: alisadikh
*/

/* Sənin digər CSS kodların buradan başlamalıdır */


/* Instagram Profile Card Styling */
.instagram-profile {
    background: transparent;
    padding: 20px 15px;
    margin-bottom: 10px;
    color: #ffffff;
}

.profile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.profile-avatar {
    flex: 0 0 85px;
}

.profile-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    padding: 3px;
    object-fit: cover;
}

.profile-stats {
    display: flex;
    flex: 1;
    justify-content: space-around;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-count {
    font-weight: 700;
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.profile-bio {
    padding: 0 5px;
    margin-bottom: 15px;
}

.profile-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.profile-category {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: block;
    margin-bottom: 5px;
}

.profile-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.profile-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}

.profile-actions {
    display: flex;
    gap: 8px;
    padding: 0 5px;
}

.profile-actions button {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: background 0.3s;
}

.profile-actions button.btn-follow {
    background: #0095f6; /* Instagram göy rəngi */
}

.profile-actions button:active {
    opacity: 0.7;
}