*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Fira Sans", sans-serif;
    background-color: #FFFBFA;
    color: #333;
}

/* Global heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto Serif", serif;
}

a{
    text-decoration: none;
    color: #281D1B;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.header{
    padding: 10px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;

}

.header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img{
    width: 140px;
}
.header nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 32px;
    list-style: none;
}

.hero h1{
    color: #281D1B;
font-family: "Roboto Serif", serif;
font-size: 90px;
font-style: normal;
font-weight: 700;
line-height: 101px; 
letter-spacing: -3.33px;
}
.hero p{
    color: #281D1B;
text-align: right;
font-family: "Fira Sans", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 28px; 
padding: 32px;
}

.main-cta{
    color: #fff;
    border: none;
    height: 50px;
    padding: 8px 16px;
    border-radius: 8px;
background: #D72600;
font-family: "Fira Sans", sans-serif;
}
.secondary-cta{
    background-color: #fff;
    height: 50px;
    padding: 8px 16px;
    border-radius: 8px;
border: 1px solid rgba(40, 29, 27, 0.69);
font-family: "Fira Sans", sans-serif;
}

.hero{
    background-image: url(/images/bg.jpg);
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.hero .chef{
    width: 440px;
    position: absolute;
    bottom: 0;
    right: 110px;

}

.hero-cta{
    display: flex;
        gap: 16px;
        justify-content: flex-end;
        margin-right: 32px;

}

.hero-content{
    width: 70%;
    display: flex;
        flex-direction: column;
        align-items: flex-end;
}