@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display&family=Open+Sans:wght@300&display=swap');
@font-face {
  font-family: CaviarDreams;
  src: url(../fonts/CaviarDreams.ttf);
}

body {
    font-family: Lora,serif;
    font-weight: 400;
    font-size: 14px;
}

.landing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #395137;
    opacity: .92;
}

.landing img {
    max-height: 590px;
    height: calc(100vh - 175px);
}

.landing .landing-menu {
    font-family: CaviarDreams;
    margin: 50px 0;
    display: flex;
    align-items: center;
    gap: 50px;
    font-size: 50px;
    text-transform: uppercase;
    max-width: 100%;
}

.landing .landing-menu a {
    text-decoration: none;
    color: #fff;
}

.header-main, footer {
    background: #395137;
}

.site-logo, #header-nav li a, footer {
    color: #c4cbc3;
}

#footer-social li a {
    color: #748573;
}

#footer-social li a:hover {
    color: #889787;
}

#footer-inner, .header-inner {
    border: none;
}

.menu .menu-item > a {
    padding: 20px 0;
}

h1,
.site-logo,
#header-nav li {
    font-family: CaviarDreams;
}

#header-nav {
    display: flex;
    align-items: center;
    margin: 20px 0;
    gap: 60px;
}

#header-nav ul {
    display:flex;
    gap:30px;
    text-transform: uppercase;
    font-size:21px
}

#header-nav li a {
    text-decoration: none;
}

.site-logo {
    font-weight: 300;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.site-logo img {
    height: 60px;
    margin-right: 10px;
}

section {
    margin: 60px 0;
}

h2 {
    font-family: CaviarDreams;
    font-weight: 500;
    font-size: 36px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 25px;
    font-size: 16px;
}

.flex {
    display: flex;
}

.text-center {
    text-align: center;
}

@media (max-width: 991px) {
    .header-inner {
        background-color: inherit;
    }
}

@media (max-width: 720px) {
   .landing .landing-menu {
        font-size: 40px;
        gap: 40px;
   }
   .header-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
   }
   section {
        margin: 30px 0;
    }
    #site-header.fixed-header ~ #main-content {
        padding-top: 164px;
    }
}

@media (max-width: 580px) {
   .landing .landing-menu {
        font-size: 25px;
        gap: 30px;
   }
}