* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Palanquin Dark", sans-serif;
}
html {
    scroll-behavior: smooth;
}

.palanquin-dark-regular {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.palanquin-dark-medium {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.palanquin-dark-semibold {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.palanquin-dark-bold {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.palanquin-dark-regular {
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.freeze {
    position: fixed;
    width: 100%;
}

.header {
    background-color: #E76C1F;
    height: 128px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header img {
    width: 40px;
    height: 40px;
    float: left;
   
}

.background_menu {
    background-color: #E76C1F;
    border: none;
}

.logo {
    font-size: 24px;
    color: white;
    font-weight: bold;
    margin: 40px;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.close_box {
    transform: translateX(100%);
}

.header_container {
    position: relative;
    overflow: visible;
}

.hero_container {
    position: relative;
    width: 100%;
}

.hero {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.burger_hero {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.hero_text {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.h1_color {
    color: #E76C1F;
    font-family: "Palanquin Dark", sans-serif;
}

h1 {
    font-family: "Palanquin Dark", sans-serif;
}

.hero_Burger {
    display: flex;
    align-items: center;
    gap: 15px;
}


.p_hero {
    font-size: 24px;
    font-family: "palanquin-dark-bold", sans-serif;
}

.nav_dishes {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: rgb(211 161 120 / 90%);
    position: sticky;
    top: 0;
    
}

.nav_dishes a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-family: "Palanquin Dark", sans-serif;
    padding: 8px 20px;
    border-radius: 20px;
    transition: 0.2s;
}

.nav_dishes a:hover {
    background-color: #E76C1F;
    color: white;
}

.star {
    font-size: 24px;
    cursor: pointer;
    color: grey;
    transition: 0.2s;
}

.star.liked {
    color: black;
}

.like_hero {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 20px;
    padding: 0px 12px;
    background-color: #FACAAC;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

#hero-like-number {
    font-size: 18px;
    font-weight: 400;
    font-family: "palanquin-dark-regular", sans-serif;
}

#hero-like-count {
    font-size: 18px;
    font-weight: 400;
    font-family: "palanquin-dark-medium", sans-serif;
}

footer {
    background-color: #E76C1F;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

button {
     cursor: pointer;
}

.info_color {
    color: white;
    font-size: 14px;
    font-family: "Palanquin Dark", sans-serif;
    font-weight: 400;
}


@keyframes basket_pulse {
    0%   { box-shadow: 0 0 0 0 rgba(231, 108, 31, 0.9); }
    50%  { box-shadow: 0 0 0 12px rgba(231, 108, 31, 0.9); }
    100% { box-shadow: 0 0 0 0 rgba(231, 108, 31, 0.8); }
}

.basket_animate {
    animation: basket_pulse 1.2s ease-in-out;
}


@media (max-width: 850px) {

 
.hero {
    height: 350px;
    width: 100%;

}

.burger_hero {
    width: 150px;
    height: 150px;
    
}

.hero_Burger{
    flex-direction: column-reverse;
}

.p_hero {
    font-size: 22px;
    text-align: center;    
}

.nav_dishes a {
    font-size: 20px;
    padding: 8px 15px;  

}};

