body {
    font-family: Arial, Verdana, Helvetica, sans-serif;
}

header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo navigation";
    background-color: #073d77;
}

.logo {
    grid-area: logo;
    padding-left: 3%;
}

nav {
    grid-area: navigation;
}

nav ul {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding-left: 0;
}

nav li {
    padding: 20px 30px;
    font-size: 25px;
    position: relative;
    transition: all 0.3s ease;
}

nav li > a {
    color: white;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
}

nav li > a:hover {
    color: #fcc219;
    border-bottom: 3px solid #fcc219;
}

nav a {
    color: white;
    text-decoration: none;
}

nav li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: linear-gradient(135deg, #0a4fa3 0%, #073d77 100%);
    padding: 0;
    margin: 0;
    z-index: 1000;
    min-width: 180px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav li:hover > ul {
    display: flex;
}

nav li ul li {
    padding: 14px 20px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    transition: all 0.2s ease;
}

nav li ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

nav li ul li:last-child {
    border-bottom: none;
}

nav li ul li a {
    color: white;
    transition: color 0.2s ease;
}

nav li ul li a:hover {
    color: #fcc219;
    text-decoration: none;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
}

.full-row {
    text-align: center;
    grid-column: span 2;
}

.full-row h2 {
    color: #fcc219;
    font-size: 30px;
    font-weight: bold;
}

.full-row figure {
    display: inline-block;
    margin: 4%;
    vertical-align: top;
    max-width: 300px;
}

.full-row .hot-item {
    display: block;
    margin: 0 30px;
}

.full-row .item {
    display: block;
    margin: 0 20px;
}

.full-row p.name {
    font-size: 20px;
    font-weight: bold;
    color: #073d77;
    margin: 10px 0;
}

.full-row p.description {
    display: block;
    font-weight: bold;
    margin: 5px 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 40px;
}

.full-row p.price {
    display: inline-block;
    margin: 5px 1px;
    text-decoration: line-through;
    color: gray;
}

.full-row p.newprice {
    display: inline-block;
    margin: 5px 1px;
    color: #fcc219;
    font-weight: bold;
}

.full-row button {
    display: block;
    background-color: #073d77;
    color: white;
    border: none;
    margin: 10px auto;
    padding: 10px;
    font-size: 12px;
    cursor: pointer;
}

.full-row button:hover {
    background-color: #fcc219;
}

.recipes {
    text-align: center;
    grid-column: span 2;
}

.recipes figure {
    display: inline-block;
    margin: 2%;
    vertical-align: top;
    max-width: 28%;
}

.recipes figure p {
    font-weight: bold;
}

.recipes p.instructions {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
}

.recipes ul {
    text-align: left;
    margin: 10px 0;
    padding-left: 2%;
}

.recipes ol {
    text-align: left;
    margin: 10px 0;
    padding-left: 2%;
}

.recipes ul li {
    margin: 5px 0;
}

.recipes ol li {
    margin: 5px 0;
}

.box-left {
    grid-column: 1;
}

.box-left h3 {
    text-align: center;
}

.box-right {
    grid-column: 2;
}

.box-right h3 {
    text-align: center;
}

.box-right img {
    margin: auto 5%;
}

.cart-left {
    width: 80%;
    padding: 10% 20%;
}

.cart-right {
    margin: 3% 10% 3% auto;
    background-color: lightgray;
    padding: 10% 5%;
    max-width: 30%;
    min-width: 250px;
}

.cart-right h3 {
    font-size: 30px;
    margin: 30px 0px;
}

.cart-right p {
    font-size: 20px;
    margin: 20px 0px;
}

.cart-right button {
    font-size: 16px;
    background-color: #073d77;
    color: white;
    border: none;
    padding: 8% 10%;
    cursor: pointer;
    margin: 20px 0px;
}

.cart-right button:hover {
    background-color: #fcc219;
}

.cart-price {
    font-weight: bold;
    font-size: 20px;
}

.contact-left {
    max-width: 70%;
    text-align: left;
    margin-left: 30%;
}

.contact-left h2 {
    font-size: 30px;
    color: #073d77;
}

.contact-form label {
    display: block;
    font-weight: bold;
    color: #073d77;
}

.contact-form input {
    width: 100%;
    padding: 8px;
    border: 2px solid #073d77;
    font-size: 16px;
}

.contact-form textarea {
    width: 100%;
    padding: 8px;
    border: 2px solid #073d77;
    font-size: 16px;
}

.contact-form button {
    width: 103%;
    background-color: #073d77;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #fcc219;
}

.contact-right h3 {
    font-size: 30px;
    color: #073d77;
    margin-left: 25%;
}
.contact-right p {
    font-size: 16px;
    margin: 3% 0;
    margin-left: 25%;
}

footer {
    background-color: #073d77;
    color: white;
    text-align: center;
    padding: 1%;
}

footer section {
    display: inline-block;
    vertical-align: top;
    margin: 2% 5%;
    max-width: 20%;
}

footer section p {
    font-size: 14px;
}

footer p {
    font-size: 12px;
}

@media (max-width: 700px) {
    nav ul {
        flex-direction: column;
    }
    nav li {
        font-size: 20px;
    }
    .logo img {
        width: 160px;
        height: 65px;
    }
}