/*
 Theme Name: Hello Elementor Child
 Template: hello-elementor
 Version: 1.0.0
*/

/* Custom Header */
.custom-header {
    width: 100%;
    background: #123a49;
    padding: 12px 28px;
    border-bottom: 3px solid #f4b942;
    box-shadow: 0 3px 12px rgba(7, 31, 40, 0.24);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo img {
    height: 86px;
    width: auto;
    display: block;
    background: #ffffff;
    border: 2px solid #ffffff;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: #ffffff;
    text-decoration: none;
}

.header-brand {
    display: grid;
    gap: 3px;
    line-height: 1;
}

.header-brand strong {
    font-size: 22px;
    color: #ffffff;
}

.header-brand span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f4b942;
}

.header-nav {
    min-width: 0;
}

.header-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}

.header-menu li a {
    display: block;
    padding: 9px 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    color: #ffffff;
    border: 1px solid transparent;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-menu li a:hover,
.header-menu li a:focus-visible {
    color: #123a49;
    background: #f4b942;
    border-color: #f4b942;
}

.header-menu-contact a {
    color: #123a49 !important;
    background: #f4b942;
    border-color: #f4b942 !important;
}

@media (max-width: 900px) {
    .custom-header {
        padding: 14px 18px;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .header-logo img {
        height: 68px;
    }

    .header-nav,
    .header-menu {
        width: 100%;
    }

    .header-menu {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-brand strong {
        font-size: 18px;
    }

    .header-brand span {
        font-size: 10px;
    }

    .header-menu li a {
        padding: 8px 9px;
        font-size: 12px;
    }
}
