.single-profile-page {
    background: #111111; /* Carbon Black */
}

.profile-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0px !important;
}

.profile-card .card-body {
    background: #2E2E2E; /* Smoke Gray */
}

.profile-card .card-body h5, .profile-card .card-body p {
    color: #BFC1C2; /* Silver */
}

.profile-card .card-body .social-links {
    display: flex;
}

.profile-card .card-body .social-link {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background: #BFC1C2; /* Silver */
    margin-right: 5px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card .card-body .social-link:hover {
    background: #CBA135; /* Soft Gold */
}

.profile-card .card-body .social-link:hover .pro-social-icon {
    font-size: 20px;
    color: #FFFFFF; /* Pure White */
}

.profile-card .card-body .pro-social-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.profile-card-right .card-title {
    color: #BFC1C2; /* Silver */
    font-weight: bold !important;
    text-transform: uppercase !important;
}

/* ============================================
   RESPONSIVE STYLES FOR PROFILE PAGE
   ============================================ */

/* Mobile Devices */
@media (max-width: 767.98px) {
    .single-profile-page {
        padding: 20px 0 !important;
    }

    .profile-card-img {
        height: 250px;
        object-fit: cover;
    }

    .profile-card .card-body {
        padding: 20px 15px;
    }

    .profile-card .card-body h5 {
        font-size: 0.85rem;
    }

    .profile-card .card-body p {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 15px;
    }

    .social-link {
        height: 35px !important;
        width: 35px !important;
        margin: 0 3px !important;
    }

    .pro-social-icon {
        font-size: 16px !important;
    }

    .profile-card-right {
        margin-top: 20px;
    }

    .profile-card-right .card-title {
        font-size: 0.85rem;
    }

    .profile-card-right .card-body {
        padding: 15px;
    }

    /* Photos and Videos Grid */
    .row > [class*='col-'] {
        padding: 5px;
    }

    /* Profile Info */
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .d-flex.justify-content-between h5:last-child {
        margin-top: 5px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .profile-card-img {
        height: 200px;
    }

    .profile-card .card-body h5 {
        font-size: 0.75rem;
    }

    .social-link {
        height: 30px !important;
        width: 30px !important;
    }

    .pro-social-icon {
        font-size: 14px !important;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991.98px) {
    .profile-card-img {
        height: 300px;
    }

    .profile-card .card-body {
        padding: 25px 20px;
    }

    .social-link {
        height: 38px !important;
        width: 38px !important;
    }
}