@font-face {
    font-family: Belleza-Regular;
    src: url('../fonts/Belleza-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Roboto-Thin;
    src: url('../fonts/Roboto-Thin.ttf') format('ttf');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Roboto-Regular;
    src: url('../fonts/Roboto-Regular.ttf') format('ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: Roboto-Bold;
    src: url('../fonts/Roboto-Bold.ttf') format('ttf');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-size:21px;
    color: #bba071;
    font-family: 'Roboto-Regular';
    margin: 0;
    padding: 0;
}

a {
    font-family: sans-serif,'Roboto-Regular';
    display: inline-block;
    text-decoration: none;
    color: #282828;
}

a:hover {
    color: black;
}

h1,h2,h3 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
}

main {
    position: relative;
    background: #3A3A38;
    width: 100%;
    min-height:100vh;
    overflow-y: auto;
    overflow: hidden;
    background-image: url(../images/bg.jpg);
    background-size: cover;
}

main:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(40,40,40,.9);
}

.logo {
    position: relative;
    padding: 2rem;
    width: 200px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
}

.menu-list__item {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    background-color: #828282;
    padding: 2rem;
    border-radius: 1rem;
    min-height: 200px;
    cursor: pointer;
    background-size: cover;
    overflow: hidden;
}

.menu-list__item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
}

.menu-list__item:first-child::before,
.menu-list__item:nth-child(3)::before {
    background: rgba(0,0,0,.7);
}

.menu-list__item.active:first-child::before,
.menu-list__item.active:nth-child(3)::before,
.menu-list__item:first-child:hover::before,
.menu-list__item:nth-child(3):hover::before {
    background: rgba(0,0,0,.4);
}

.menu-list__item.active::before,
.menu-list__item:hover::before {
    background: rgba(0,0,0,0);
}

.menu-list__item h2 {
    text-align: center;
    z-index: 1;
    text-shadow: 1px 1px 2px #000;
}

.menu-list__item.active h2 {
    display: none;
}

.content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    text-align: center;
    padding: 2rem;
    width: 100%;
    opacity: 0;
    transition: opacity ease 1s;
}

.content:not(.active) {
    transition: none;
}

.content.active {
    display: block;
    opacity: 1;
}

.content a {
    padding: .5rem 2rem;
    border-radius: .5rem;
    background-color: #BBA071;
    margin-top: 1rem;
}

.content-wrapper-close {
    display: none;
}

a.social-icon {
    padding: .5rem 1rem;
}

.vbox-container {
    max-height: 100vh;
    overflow: hidden;
}

.content-wrapper2 {
    position: relative;
    width: 100%;
    height: 100%;
}
.content2 {
    position: relative;
    top: 50%;
    padding: 2rem;
    width: 100%;
}


@media (max-width: 991px) {
    .content-wrapper.active {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        background-color: rgba(0,0,0,.8);
        margin: 2rem;
        width: calc(100% - 4rem);
        height: calc(100vh - 4rem);
        border-radius: 1rem;
    }
    .menu-list {
        margin-top: 30px;
        margin-bottom: 60px;
    }
    .content-wrapper.active .content-wrapper-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 3rem;
        height: 3rem;
        top: -1rem;
        right: -1rem;
        background-color: #BBA071;
        border-radius: .5rem;
    }
    .content-wrapper.active .content-wrapper-close span {
        font-family: sans-serif;
        color: #282828;
        font-weight: 700;
    }
    .logo {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .menu-list {
        grid-template-columns: repeat(1, 1fr);
    }
    main {
        min-height: 100vh;
        height: auto;
    }
    .content-wrapper.active {
        margin: 1rem;
        width: calc(100% - 2rem);
        height: calc(100vh - 2rem);
    }
    .content-wrapper.active .content-wrapper-close {
        top: -0.5rem;
        right: -0.5rem;
    }
}
