@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background: #fff;
    min-height: 50vh;
    margin: 0 100px;
    background-color: #ffeae0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 40px 100px;
    z-index: 1000;
}

header.sticky {
    padding: 5px 100px;
    background: #fff;
    z-index: 1000;
}

header .logo {
    position: relative;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}

header ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    position: relative;
    list-style: none;
}

header ul li a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    letter-spacing: 2px;
    font-weight: 500px;
    transition: 0.6ms;
}


header.sticky .logo,
header.sticky ul li a {
    color: #000
}

.content {
    display: grid;
    grid-template-columns: 50% auto;
    gap: 30px;
    margin-top: 150px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.content .content-left {
    display: block;
    width: 100%;
}

.content .content-left .info {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.content .content-left .info h2 {
    font-size: 60px;
    font-family: sans-serif;
    margin-bottom: 30px;
}

.content .content-left .info p {
    font-size: 20px;
    line-height: 2pc;
    margin-bottom: 25px;
    font-family: sans-serif;
}




.content .content-left button {
    padding: 10px 23px;
    background-color: #d03f3f;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.content .content-left button a {
    color: #000;
    font-weight: bold;
}

.content .content-left button a:hover {
    color: #ffffff;
    font-weight: bold;
    transition: 0.5s;
}


.content .content-left button:hover {
    padding: 10px 23px;
    background-color: #ff3131;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.content .content-left .button1 {
    padding: 10px 23px;
    background-color: #f38665;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-right: 180px;
}

.content .content-left .button1 a {
    color: #000;
    font-weight: bold;
}

.content .content-left .button1 a:hover {
    color: #ffffff;
    font-weight: bold;
    transition: 0.5s;
}


.content .content-left .button1:hover {
    padding: 10px 23px;
    background-color: #ff511c;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.content .content-right {
    display: block;
    width: 100%;
    margin-top: -200px;
}

.content .content-right img {
    width: 500px;
    height: auto;
    position: relative;
    top: 100px;
}


.category {
    width: 100%;
    display: flex;
    margin-bottom: 550px;
    justify-content: center;
}

.category .list-items {
    width: 90%;
    position: relative;
    margin-top: 50px;
}

.category .list-items h3 {
    font-size: 35px;
    font-weight: 600;
    font-size: 15vh;
    font-family: sans-serif;
    margin-bottom: 150px;
    text-align: center;
    margin-top: -40px;

}

.category .list-items .card-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.category .card-list .card {
    width: 200px;
    height: auto;
    display: block;
    padding: 10px;
    border-radius: 10px;
    position: relative;
    background: #fff;
    outline: 2px solid #faad96;
    top: 160px;
    margin-left: 50px;
}

.category .card-list .card:hover {
    background-color: #f6ae72;
    outline: 2px solid #c05433;
    color: #fff;
    box-shadow: outset 5px 5px 15px rgba(79, 77, 77, 0.5);
    transform: translateY(-1%) scale(1.2);
    z-index: 1;
    transition: 0.5s;
}

.category .card-list .card img {
    width: 200px;
    height: auto;
    bottom: 220px;
    left: 0px;
    object-fit: cover;
    object-position: center;
    background-repeat: no-repeat;
    position: absolute;
    box-shadow: 0 20px 20px #faad96;
    border-radius: 50%;
}

.category .card-list .card .food-title {
    padding: 40px 0 10px;
}


.category .card-list .card .food-title h1 {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    font-family: sans-serif;
}

.category .card-list .card .desc-food p {
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.category .card .price {
    display: flex;
    align-items: center;
}

.gasses {
    color: #c05433;
}