@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lato:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anta&display=swap');

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    overflow: hidden;
}

#videoOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: -1;
}

.container {
    width: 80%;
    margin: 40px auto;
    padding: 20px;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

.name {
    font-size: 50px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    margin-top: 50px;

}

.price {
    font-size: 36px;
    color: #FFA500;
    font-weight: 700;
}

.image img {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.ingredients ul {
    list-style-type: none;
    padding: 0;
    padding-bottom: 20px;
    line-height: 1.5;
}


.ingredients li::before {
    content: '•';
    color: #FFA500;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.info {
    text-align: left;
    padding-bottom: 20px;
    margin-top: 50px;
}

.tips {
    margin-top: 30px;
    line-height: 2;
}

.description {
    margin-top: 10px;
    border-top: 1px solid;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

.description p,
.description h3 {
    margin: 5px 0;
}

.description h3 {
    font-weight: 700;
}

.ingredients,
.info,
.tips,
.description {
    padding-left: 20px;
    text-align: left;
    color: white;

}

.name,
.price,
.title {
    font-family: "Anta", sans-serif;
}

.title {
    color: #FFA500;
    margin-top: 0px;
    margin-bottom: 0px;
}

.column {
    float: left;
    width: 25%;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width:600px) {
    .column {
        width: 100%;
    }
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
}

.navbar li {
    float: left;

}

li a,
.dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;

}

li a:hover,
.dropdown:hover .dropbtn {
    background-color: chocolate;

}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: fixed;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

footer {
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
    opacity: 50%;
}