@font-face {
    font-family: Rubik;
    src: url(assets/Rubik-VariableFont_wght.ttf);
}

@font-face {
    font-family: Bontang;
    src: url(assets/Bontang-nRGPV.otf);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Rubik, system-ui, sans-serif;
    background-color: #000238;
}

#bannerDIV {
    position: relative;
    width: 100%;
    height: clamp(50px, 8vw, 150px);
    overflow: hidden;
    font-family: Bontang;
}

#bannerDIV img#bannerBG {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#bannerCONTENT {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: clamp(5px, 1vw, 15px);
    height: 80%;
}

#bannerCONTENT img#bannerICON {
    height: 100%;
    width: auto;
}

#bannerCONTENT div#bannerTEXT {
    font-size: clamp(24px, 5vw, 72px);
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    font-family: Bontang;
}

.banner-nav {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    gap: clamp(40px, 4vw, 60px);
    align-items: center;
}

.nav-item {
    font-size: clamp(16px, 3vw, 48px);
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-family: Bontang;
    transition: opacity 0.2s ease;
}

.nav-item:hover {
    opacity: 0.8;
}