/*
Theme Name: Twenty Twenty-Three
Theme URI: https://wordpress.org/themes/twentytwentythree
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.9
Requires PHP: 5.6
Version: 1.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: twentytwentythree
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

:root {
    --util-header-bg: #071a2a;
    --util-header-panel: #183453;
    --util-header-text: #ffffff;
    --util-header-muted: #c8d8e8;
    --util-header-accent: #27d49b;
    --util-header-link: #f5f9ff;
    --util-header-icon: #56bff4;
}

body {
    margin: 0;
}

.util-header {
    background: var(--util-header-bg);
    border-bottom: 3px solid var(--util-header-accent);
    color: var(--util-header-text);
    font-family: Inter, "DM Sans", Arial, sans-serif;
    margin: 0;
    position: relative;
    z-index: 10;
}

.util-header__inner {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr) minmax(180px, 220px);
    margin: 0 auto;
    max-width: 1120px;
    min-height: 104px;
    padding: 0 24px;
}

.util-header__brand {
    color: var(--util-header-text);
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
    width: fit-content;
}

.util-header__brand-name {
    border-bottom: 2px solid #ff4779;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.util-header__tagline {
    color: var(--util-header-text);
    font-size: 10px;
    font-weight: 700;
    margin-top: 5px;
}

.util-header__nav {
    align-items: center;
    display: flex;
    gap: 26px;
    justify-content: center;
    min-width: 0;
}

.util-header__nav a {
    align-items: center;
    color: var(--util-header-link);
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    gap: 9px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.util-header__nav a:hover,
.util-header__nav a:focus-visible {
    color: var(--util-header-accent);
    outline: none;
}

.util-header__icon {
    color: var(--util-header-icon);
    display: inline-flex;
    height: 14px;
    width: 14px;
}

.util-header__icon svg {
    display: block;
    height: 14px;
    width: 14px;
}

.util-header__search {
    justify-self: end;
    width: 100%;
}

.util-header__search form {
    margin: 0;
}

.util-header__search input[type="search"] {
    background: var(--util-header-panel);
    border: 0;
    border-radius: 999px;
    box-sizing: border-box;
    color: var(--util-header-text);
    font-size: 13px;
    min-height: 40px;
    padding: 0 18px;
    width: 100%;
}

.util-header__search input[type="search"]::placeholder {
    color: var(--util-header-muted);
    opacity: 1;
}

.util-header__search button {
    display: none;
}

@media (max-width: 980px) {
    .util-header__inner {
        gap: 18px;
        grid-template-columns: 1fr;
        padding-bottom: 20px;
        padding-top: 22px;
    }

    .util-header__brand,
    .util-header__search {
        justify-self: center;
    }

    .util-header__nav {
        flex-wrap: wrap;
        gap: 16px 22px;
        justify-content: center;
    }

    .util-header__search {
        max-width: 420px;
    }
}

@media (max-width: 560px) {
    .util-header__inner {
        align-items: stretch;
        min-height: auto;
        padding-left: 18px;
        padding-right: 18px;
    }

    .util-header__brand {
        justify-self: start;
    }

    .util-header__brand-name {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .util-header__nav {
        align-items: stretch;
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .util-header__nav a {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 6px;
        justify-content: center;
        min-height: 38px;
    }

    .util-header__search {
        max-width: none;
    }
}

@media (max-width: 360px) {
    .util-header__nav {
        gap: 8px;
    }

    .util-header__nav a {
        font-size: 12px;
        gap: 6px;
    }

    .util-header__icon,
    .util-header__icon svg {
        height: 12px;
        width: 12px;
    }
}
