/*
Theme Name: Artraz Child
Theme URI: https://themeholy.com/wordpress/artraz
Template: artraz
Author: Themeholy
Author URI: https://themeforest.net/user/themeholy
Description: Artraz - Architecture &amp; Interior Design WordPress Theme
Tags: one-column,flexible-header,accessibility-ready,custom-colors,custom-menu,custom-logo,editor-style,featured-images,footer-widgets,rtl-language-support,sticky-post,threaded-comments,translation-ready
Version: 1.0.0.1722086257
Updated: 2024-07-27 13:17:37

*/

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; /* Adjust padding as needed */
    background-color: var(--header-bg-color); /* Optional background color */
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-height: 60px; /* Adjust height as needed */
}

.page-icon img {
    max-height: 30px; /* Adjust height as needed */
    margin-right: 15px; /* Space between page icon and social icons */
}

.header-social {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: var(--icon-color); /* Set your desired color */
    font-size: 18px; /* Adjust icon size as needed */
    margin-right: 10px; /* Space between social icons */
}

.social-icons a:last-child {
    margin-right: 0; /* Remove margin from the last icon */
}

.contact-info {
    margin-left: 15px; /* Space between social icons and contact info */
}

.contact-info .phone-number {
    color: var(--text-color); /* Set your desired text color */
    font-size: 14px; /* Adjust text size as needed */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .header-left, .header-right {
        width: 100%;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .contact-info {
        margin-left: 0;
    }
}
