/*
Theme Name: RealHomes Child Theme
Theme URI: http://themeforest.net/item/real-homes-wordpress-real-estate-theme/5373914
Description: Child theme for Real Homes.
Author: Inspiry Themes
Author URI: https://www.inspirythemes.com/
Template: realhomes
Version: 1.4.2
*/


/* Stack contacts vertically */
.rh-ultra-user-phone.custom-vertical-contacts {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px;
    font-weight: 500;
}

/* Individual contact items */
.rh-ultra-user-phone.custom-vertical-contacts .contact-item {
    display: flex;
    align-items: center;
}

/* Links */
.rh-ultra-user-phone.custom-vertical-contacts .contact-item a {
    text-decoration: none;
    color: #000; /* default link color */
    font-size: 14px;
    margin-left: 4px;
    transition: color 0.2s ease; /* smooth hover transition */
}

/* Hover effect on links only (icon stays #03519c) */
.rh-ultra-user-phone.custom-vertical-contacts .contact-item a:hover {
    color: #03519c; /* new hover color */
}

/* Font Awesome icons */
.rh-ultra-user-phone.custom-vertical-contacts .contact-item i {
    font-size: 16px;
    width: 20px;
    color: #03519c; /* icon color fixed */
}

/* Remove Ultra default separator */
.rh-ultra-user-phone.custom-vertical-contacts::after {
    display: none !important;
    content: none !important;
}

/* Shift vertical contact block left to avoid language switcher overlap */
.rh-ultra-user-phone.custom-vertical-contacts {
    margin-right: 30px; /* moves block 30px left */
    margin-left: 30px; /* moves block 30px right */

    /* OR use transform if needed */
    /* transform: translateX(-30px); */
}

.rh-ultra-main-menu li a {
    padding-right: 2px;
    padding-left: 24px;
}


/* gap between menu items on desktop */
@media (min-width: 1025px) {
    .rh-ultra-main-menu li a {
        padding-right: 15px;
        padding-left: 15px;
    }
}