@font-face {
  font-family: 'BritannicBold';
  src: url('../assets/fonts/britannic-bold-regular.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Caladea';
  src: url('../assets/fonts/caladea.regular.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Caladea';
  src: url('../assets/fonts/caladea.bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

.hero-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border-bottom: 3px solid #5d4037;
    height: 150px;
    padding: 0 80px;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    left: 80px;
    margin-left: 25px;
}

.nav-right {
    display: flex;
    align-items: center;
    height: 100%;
    position: absolute;
    right: 80px;
}

.nav-left nav,
.nav-right nav {
    margin-top: 20px;
}

.nav-left,
.nav-right,
.nav-logo-box {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-family: 'BritannicBold';
    color: black;
    text-decoration: none;
    margin: 0 40px;
    font-size: 2.3em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3e2723;
}

.nav-logo img {
    height: 140px;
    width: auto;
}

.nav-facebook {
    margin-left: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    font-family: 'Caladea', serif;
    color: #5d4037;
    cursor: pointer;
    border-left: none;
    font-size: 1em;
}

@media (max-width: 768px) {
    .nav-links,
    .nav-facebook {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-navbar {
        padding: 0 20px;
    }
}