@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('../src/font.css');

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

:root {
    --background-light: #ffffff;
    --accent-dark: #9e8123;
    --semi-transparent-accent: #9e812340;
    /* Fonts  */
    --main-font: "Nunito", sans-serif;
    --fancy-font: "AboveTheBeyond", sans-serif;
}

body {
    background: var(--background-light);
}

.navbar {
    top: 0;
    position: sticky;
    height: 80px;
    width: 100%;
    background: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.left-container {
    position: absolute;
    width: 140px;
    height: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--background-light);
}

.menu-text {
    /* margin: 0 10px; */
    color: #000000;
    font-size: 216x;
    font-family: var(--main-font);
    text-transform: uppercase;
}

.open-nav {
    height: 40px;
    width: 40px;
    cursor: pointer;
    border-radius: 12px;
    border: none;
    background: none;
}

.open-nav i {
    color: #000000;
    font-size: 20px;
}

.middle-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    font-family: var(--fancy-font);
    color: #fff;
    font-size: 30px;
    user-select: none;
}

.right-container {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 180px;
    background: var(--background-light);
}

.booknow-btn {
    color: #0f0f0f;
    text-decoration: none;
    font-size: 24px;
    font-family: var(--main-font);
}