@font-face {
    font-family: 'Gotham';
    src: url('fonts/GothamMedium.ttf');
    src: url('../fonts/GothamMedium.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/GothamLight.ttf');
    src: url('../fonts/GothamLight.ttf');
    font-weight: 200;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    border-width: 0px;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
}

header img {
    position: absolute;
    width: 5vw;
}

header .logo {
    margin-left: 5vw;
    font-family: 'Gotham';
    font-weight: 200;
    font-size: 3vw;
    letter-spacing: 5px;
    color: #FFFFFF;
}

header ul {
    margin-right: 200px;
    list-style: none;
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    font-family: 'Gotham';
    font-weight: 200;
    font-size: 1.5vw;
    margin-left: 2vw;
    letter-spacing: 3px;
    color: #FFFFFF;
}

header ul li:hover {
    transition-duration: 0.5s;
    opacity: 0.7;
}

section {
    position: relative;
    width: 100%;
    height: 65vw;
    z-index: 25;
    overflow-y: hidden;
}

section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vw;
    object-fit: cover;
}

.section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section h2 {
    font-family: 'Gotham';
    font-weight: 400;
    font-size: 3em;
    padding-bottom: 1em;
    z-index: 10;
}

.section p {
    font-family: 'Gotham';
    font-weight: 200;
    font-size: 2em;
    text-align: center;
    padding: 0 6em 0 6em;
    z-index: 10;
}

#section-2 {
}

#section-2 div ul {
    height: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#section-2 div ul li
{
    font-family: 'Gotham';
    font-weight: 200;
    font-size: 2vw;
    margin-top: 20%;
    letter-spacing: 3px;
    color: #FFFFFF;
    cursor: pointer;
}

#section-2 div ul li:first-child {
    cursor: default;
    text-align: center;
}

#nav {
    height: 100%;
    position: absolute;
    left: 0;
    width: 20vw;
    background-color: #000000;
    opacity: 0.2
}

.food-box {
    width: 12vw;
    height: 12vw;
    margin-top: 2.5vw;
    margin-left: 9vw;
    background-color: #dbdbdb;
    cursor: pointer;
}

.food-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.food {
    position: absolute;
    width: 80vw;
    height: 100%;
    margin-left: 20vw;
    display: flex;
    flex-wrap: wrap;
}

#chinese-food {
    visibility: visible;
}

#malay-food {
    visibility: hidden;
}

#indian-food {
    visibility: hidden;
}

#drinks {
    visibility: hidden;
}

#others {
    visibility: hidden;
}
