/*** DEFAULT ***/

html, body, ul, li, h1 {
    padding: 0;
    margin: 0;
}

body {
    font-family: system-ui, sans-serif;
    color: #000;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    background-color: #c5bbae;
    background-image: url("../media/gcc-wind-202202.png");
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

a {
    color: #000;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-skip-ink: all;
}

ul {
    list-style: none;
}

img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/*** HEADER ***/

.header {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: min(calc(100vw - clamp(30px, 10vw, 200px)), 1240px);
    margin: 0 auto;
    padding-top: clamp(22px, 7vw, 72px);
    padding-bottom: clamp(60px, 8vw, 90px);
}

.title {
    flex: 1;
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1;
}

/*** NAVIGATION ***/

.menu {
    flex-shrink: 0;
    margin-top: 4px;
}

.menu .menu-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.menu .menu-wrapper li a {
    display: block;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .title {
        text-align: center;
    }
    .menu {
        width: 100%;
        margin-top: 0;
    }
    .menu .menu-wrapper {
        justify-content: center;
        gap: 8px;
    }
}

/*** ICONS ***/

.icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.2s ease;
}

.icon-wrap i {
    font-size: 15px;
    color: #c5bbae;
    --tx: 6px;
    --ty: -1px;
    transform: translateX(var(--tx)) translateY(var(--ty)) rotate(-25deg) scale(2);
    transform-origin: bottom right;
    transition: color 0.25s ease;
}

.icon-wrap:hover {
    background: #c5bbae;
    box-shadow: inset 0 0 0 2px #000;
}

.icon-wrap:active {
    background: #c5bbae;
    box-shadow: inset 0 0 0 2px #000;
    transform: scale(0.95);
}

.icon-wrap:hover i,
.icon-wrap:active i {
    color: #000;
}
