@font-face {
    font-family: brand-font;
    src: url(../fonts/Ubiquitous.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: whitesmoke;
}

h1 {
    font-family: 'brand-font', sans-serif;
    font-size: 70px;
    color: whitesmoke;
}

h2 {
    margin-bottom: 0.3em;
}

h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

h4 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
    color: rgb(7, 80, 7);
}

h5 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
    color: rgb(7, 80, 7);
    /* margin-bottom: 0.3em; */
}

h6 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 15px;
    color: rgb(7, 80, 7);
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: rgb(7, 80, 7);
    margin-bottom: 0.3em;
}

a:visited {
    color: whitesmoke;
}

a {
    text-decoration: none;
}

.nav-bar-wrapper {
    width: 100%;
    height: 80px;
    display: flex;
    position: fixed;
    z-index: 99;
    /* background-color: rgba(7, 80, 7, 30%); */
    /* From https://css.glass */
    background: rgba(13, 209, 45, 0.219);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(8, 105, 24, 0.082);
}

.logo-container {
    height: 80px;
    width: 20%;
    padding: 10px;
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
}

.logo-img {
    height: 60px;
}

.nav-btns-container {
    width: 80%;
    display: flex;
    justify-content: flex-end;
}

.nav-btns {
    color: whitesmoke;
    display: flex;
    align-items: center;
    list-style: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.nav-btn {
    padding: 50px;
}

.nav-btn a:hover {
    color: rgb(255, 94, 0);
}

.hero-container {
    width: 100%;
    height: 730px;
    position: relative;
    top: 0px;
}

.hero-image {
    width: 100%;
    height: 730px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 98;
}

.hero-img {
    width: 100%;
    height: 730px;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
}

.hero-logo {
    width: 300px;
    height: fit-content;
    position: absolute;
    top: 35%;
    left: 40%;
}

.about-section {
    width: 100%;
    position: relative;
    /* top: 100px; */
    padding: 50px;
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
}

.about-img {
    height: 500px;
    width: 500px;
    object-fit: cover;
    /* padding-top: 50px; */
}

.about-text {
    padding: 45px;
    width: 500px;
    color: rgb(7, 80, 7);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24px;
}

.menu-section {
    width: 100%;
    position: relative;
    /* top: 100px; */
    padding: 50px;
    background-color: rgb(61, 122, 20);
    /* background-image: url(../media/images/photo-1525923838299-2312b60f6d69.png);
    background-size: cover; */
}

.menu-cards {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* background-image: url(../media/images/photo-1535242208474-9a2793260ca8.png); */
}

.menu-card {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-img {
    height: 300px;
    width: 300px;
    object-fit: cover;
}

.menu-card-text {
    padding: 30px;
    width: 300px;
    color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24px;
    position: absolute;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: rgba(8, 105, 24, 0.219);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(8, 105, 24, 0.082);
}

.menu-card-text p {
    color: whitesmoke;
}

.menu-card-text h6 {
    color: whitesmoke;
    padding-right: 10px;
}

.view-menu {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding-top: 20px;
}

i {
    color: whitesmoke;
    font-size: 15px;
    padding-left: 20px;
}

.cta-btn {
    padding: 12px;
    width: 130px;
    border: 2px solid rgb(129, 184, 129);
    margin-top: 20px;
    display: flex;
    justify-content: center;
    border-radius: 30px;
}

.cta-btn:hover {
    background-color: rgb(255, 94, 0);
}

.cta-btn a {
    color: rgb(7, 80, 7)
}

footer {
    width: 100%;
    height: 320px;
    position: relative;
    top: 100px;
    padding: 50px;
    background-color: rgb(61, 122, 20);
    /* display: flex; */
    /* justify-content: center */
}

.footer-block-container {
    width: 100%;
    /* height: 300px; */
    /* position: relative; */
    /* top: 100px; */
    /* padding: 50px; */
    /* background-color: rgb(129, 184, 129); */
    display: flex;
    justify-content: space-around;
}

.footer-block {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.footer-block p,
h5,
i {
    color: whitesmoke;
    padding-left: 0px;
    padding-top: 5px;
}

.footer-cred {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 10px;
}

.footer-cred p {
    color: whitesmoke;
}

.banner-container {
    width: 100%;
    height: 500px;
    position: relative;
    top: 0px;
    display: flex;
    justify-content: center;
}

.banner-content {
    width: 100%;
    height: 500px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 98;
    display: flex;
    justify-content: center;
}

.banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
}

.banner-text {
    width: 500px;
    height: fit-content;
    position: absolute;
    top: 40%;
    /* left: 40%; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-block img {
    height: 150px;
}

.contact-socials i {
    color: rgb(7, 80, 7);
    font-size: 20px;
    padding-top: 25px;
}

.booking-form {
    display: flex;
    justify-content: center;
}

.form-contents {
    width: 500px;
    /* background-color: rgb(61, 122, 20); */
    /* border: 2px solid rgb(129, 184, 129); */
    background: rgba(193, 230, 199, 0.151);
    /* border-radius: 16px; */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(8, 105, 24, 0.082);
    padding-bottom: 20px;
}

.booking-text {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.form-inputs {
    display: flex;
    justify-content: center;
    /* padding: 20px; */
}

.input {
    padding: 20px;
}

.form-notes {
    padding: 10px;
    text-align: center;
}

textarea {
    resize: none;
}

.brand-message {
    width: 100%;
    height: 100px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-text {
    color: rgb(7, 80, 7);
    font-size: 25px;
}

.brand-text h3 {
    font-family: 'brand-font', sans-serif;
    font-size: 40px;
    color: rgb(255, 94, 0);
}

.about-text-2 {
    padding: 50px;
    width: 800px;
    color: rgb(7, 80, 7);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}

.menu-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu-selectors {
    width: 50%;
    display: flex;
    justify-content: center;
    padding: 20px;
    /* background-color: rgb(255, 94, 0); */
}

.menu-selectors h3 {
    padding: 15px;
    color: rgb(7, 80, 7);
}

.menu-selectors h3:hover {
    color: rgb(255, 94, 0);
}

.menu-pdfs {
    display: flex;
    justify-content: center;
}

.gallery {
    column-count: 4;
    --webkit-column-count: 4;
    --moz-column-count: 4;
    gap: 0.25rem;
    padding: 4rem;
}

.image img {
    height: auto;
    width: 100%;
}

/* Style the tab */
.tab {
    overflow: hidden;
    /* border: 1px solid #ccc; */
    /* background-color: #f1f1f1; */
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    color: rgb(7, 80, 7);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 20px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    /* background-color: #ddd; */
    color: rgb(255, 94, 0);
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
    color: rgb(255, 94, 0);
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.city {
    width: 800px;
    height: 1200px;
    /* display: flex; */
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    text-align: center;
    /* background-color: rgb(61, 122, 20); */
    padding: 30px;
}

.about-cap-images {
    display: flex;
    justify-content: center;
    padding-top: 50px;
    
}

.cap-images {
    width: 340px;
    height: 340px;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    overflow: hidden;
    object-fit: contain;
}

.cap-img {
    width: 340px;
    height: auto;
    /* padding: 10px; */
    overflow: hidden;
    object-fit: cover;
}