@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');

@font-face {
    font-family: Helvetica, sans-serif;
    src: url(Helvetica.ttf);
}

@font-face {
    font-family: Helvetica, sans-serif;
    src: url(Helvetica-Bold.ttf);
    font-weight: bold;
}

:root {
    font-size: 14pt;
    font-family: "Zain", sans-serif;
    --bg-color: white;
    --first-color: #CBF3BB;
    --second-color: #0C333C;
    --third-color: #0C333C;
}



body {
    margin: 0%;
    padding: 0%;
    background-color: var(--bg-color);
    color: var(--third-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--second-color);
}

#topbar {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;

}

#logo {
    grid-column: 1 / span 1;
    display: flex;
    justify-content: center;

    padding: 1rem;
}

#logo>img {
    height: 7rem;
}

#menu {
    grid-column: 2 / span 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: max(100%);
}

.menuButton {

    color: var(--third-color);
    text-decoration: none;
    margin: 0.5rem;

}

#currentPage {
    border-bottom: 2px solid var(--third-color);
}

#book {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: 1rem;
}

.button {
    text-decoration: none;
    background-color: var(--third-color);
    color: var(--bg-color);

    padding: 1rem;
    border-radius: 5rem;
    width: fit-content;
    border: 0px;
}

#bottombar {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background-color: var(--third-color);
    color: var(--bg-color);
    padding-top: 3rem;
    padding-bottom: 3rem;
    bottom: 0%;
}

#bottombar>div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

#bottombar>div>a {
    text-decoration: none;
    color: var(--bg-color);

}



#booking {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    padding-bottom: 3rem;
    font-size: 24pt;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input {
    border: none;
    border-bottom: 2px solid var(--third-color);
    color: var(--third-color);
    font-size: 16pt;
}

textarea {
    border: none;
    border-bottom: 2px solid var(--third-color);
    color: var(--third-color);
    font-size: 16pt;
}

#form-msg {
    display: flex;
    align-items: flex-start;

}

label {
    margin-right: 1rem;
    font-size: 16pt;
    font-weight: bold;
}

@media (max-width: 1250px){
    #topbar{
        display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    }
    :root {
    font-size: 10pt;
    }
    #bottombar{
        justify-content: space-evenly;
        gap: 0px;
        
    }
    label{
        font-size: 12pt;
    }
    textarea{
        font-size: 12pt;
    }
    input{
        font-size: 10pt;
    }
}