/* HEADER */
.app-header {
    background: white;
    padding: 12px 0;
}

.app-header .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-header img {
    height: auto;
    width: auto;
    
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-contact {
    color: #260b0d;
    font-size: 0.95rem;
    text-align: right;
    line-height: 1.3;
}

.header-contact strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.phoneicon {
    position: relative;
    padding-left: 4.6rem;      /* 3.8rem icon + spacing */
    color: #260b0d;
    font-family: Figtree, sans-serif;
    line-height: 1.3;
}

.phoneicon::before {
    content: "\f5b4";
    font-family: bootstrap-icons !important;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 3.8rem;
    height: 3.8rem;
    line-height: 3.8rem;

    font-size: 1.8rem;
    text-align: center;

    color: #260b0d;
    background: #d2ae6d;
    border-radius: 50%;
}


.phonetext {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 700;
}

.phonetextbold a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #260b0d;
    text-decoration: none;
}

.phonetextbold a:hover {
    text-decoration: underline;
}

@media(max-width:768px) {
    .header-flex {
        flex-direction: column;
        text-align: center;
    }
    .header-contact {
        text-align: center;
    }
}

@media (max-width: 768px) {
  .phoneicon::before {
    display: none;
  }

  .phoneicon {
    padding-left: 0;   /* remove icon space */
  }
}
