* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #0f0f0f;
    color: whitesmoke;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.title {
    height: 10%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.5vh;
}

.title > h1 {
    font-weight: 600;
    font-size: 2.75rem;
    font-family: 'Playfair', serif;
    letter-spacing: 2px;
}

.title > .divider > img {
    height: 25px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 10%;
}

.divider::before,
.divider::after {
    content: "";
    height: 2px;
    background: linear-gradient(to right, transparent, #f47d09);
    flex-grow: 1;
}

.divider::after {
    background: linear-gradient(to left, transparent, #f47d09);
}

footer {
    height: 7%;
    width: 100%;
    border-top: 2px solid transparent; 
    border-image: linear-gradient(to right, transparent, #f47d09, transparent) 1;
    background-color: #080808;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copywrite,
nav, 
.socials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', serif;
    font-size: 0.8rem;
    padding: 0 3vw;
}

.copywrite {
    gap: 0.5vw;
    color: gray;
}

nav {
    letter-spacing: 1px;    
    color: gray;
}

nav > ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
}

ul > li {
    cursor: pointer;
    font-weight: 600;
    font-family: 'Playfair', serif;
}

nav li:not(:last-child)::after {
  content: "\2022";
  margin-left: 20px;
  color: #f47d09;
  font-size: 14px;
}

.socials {
    gap: 0.7vw;
    color: gray;
}

.socials > i {
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f47d09;
    border: 1px solid #f47d09;
    border-radius: 50%;
    transition: all 0.25s ease-in-out;
}

.socials > i:hover {
    box-shadow: 0 0 15px #f47d09;
    text-shadow: 0 0 5px #f47d09;
    cursor: pointer;
}

.d,
.food {
    background-color: #141211;
    border: 2px solid transparent;
    border-radius: 3vmin;
    transition: all 0.5s ease-in-out;
    box-shadow: 5px 5px 10px black
}

.d:hover,
.food:hover {
    background-image: linear-gradient(to top, #3b1c0d, transparent, #3b1c0daa);
    border: 1px solid #f47d09;
    box-shadow: 0 0 10px #f47d09;
    cursor: pointer;
}

.drinks {
    height: 45%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vmin;
}

.d {
    height: 93%;
    width: 13%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.d > img {
    height: 27vh;
}

.line {
    height: 1px;
    width: 50px;
    background-color: #f47d09;
}

.food {
    position: relative;
    overflow: hidden;
    height: 33%;
    width: 58%;
    display: flex;
    gap: 3vw;
}

#price {
    font-size: 1.1rem;
    color: #f47d09;
    font-weight: 500;
    font-family: 'Montserrat', serif;
}

.d > h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Playfair', serif;
}

.d > #desc {
    font-size: 0.7rem;
    color: gray;
    font-family: 'Montserrat', serif;
}

.food > img {
    height: 34vh;
}

.food > .descFood {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
}

#leaf {
    position: absolute;
    height: 25vh;
    position: relative;
    right: -5%;
    bottom: -22%;
    opacity: 0.25;
}

.descFood {
    padding: 2vh 0;
    font-family: 'Montserrat', serif;
}

.descFood > h5 {
    letter-spacing: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #f47d09;
}

.descFood > h3 {
    font-weight: 500;
    font-size: 2rem;
    font-family: 'Playfair', serif;
}

.descFood > p {
    font-size: 0.7rem;
    color: gray;
    line-height: 2vh;
}

button {
    padding: 1vh 2vw;
    color: #f47d09;
    background-color: #141211;
    border: none;
    border-radius: 1vw;
    border: 1px solid #f47d09;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

button:hover {
    background-color: #f47d09;
    color: #141211;
    box-shadow: 0 0 10px #f47d09;
}

.d {
    position: relative;
}

.tag {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 70px;
    border-radius: 1vw;
    top: 5%;
    left: 8%;
    border: 1px solid #f47d09;
    background-color: #141211;
}

.tag > p {
    font-size: 0.65rem;
    color: #f47d09;
    font-family: 'Montserrat', serif;
}

