/*
* Header Contact Info Enhancement
* Adds phone number display next to the logo in the navigation bar
*/

.header-phone-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    padding: 8px 16px;
    background: rgba(102, 153, 204, 0.1);
    border: 1px solid rgba(102, 153, 204, 0.3);
    border-radius: 30px;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-phone-number:hover {
    background: rgba(102, 153, 204, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 153, 204, 0.2);
    text-decoration: none;
    color: #2B3990;
}

.header-phone-number i {
    color: #6699CC;
    margin-right: 8px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Adjust logo container to make room for phone number */
.navbar-brand-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
}

/* Additional style for better phone number display */
.navbar-brand img {
    vertical-align: middle;
}

/* Make sure number digits don't wrap or get separated */
.header-phone-number span {
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

/* Enhance phone button appearance */
@media (min-width: 992px) {
    .navbar-brand-container {
        gap: 15px;
    }
    
    .header-phone-number {
        position: relative;
        top: 2px;
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-phone-number {
        margin-left: 0;
        margin-top: 15px;
        margin-bottom: 10px;
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .navbar-brand-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .navbar-brand-container {
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
}

/* Better mobile display */
@media (max-width: 767px) {
    .header-phone-number {
        padding: 10px 20px;
        font-size: 15px;
    }
}

/* Sticky header styling */
.header-area.sticky .header-phone-number {
    padding: 6px 15px;
    font-size: 15px;
}

.header-area.sticky .header-phone-number i {
    font-size: 16px;
}
