*{
    font-family:"Playfair Display", Serif;
    margin:0;
    padding:0;
}

main{
    color:white;
}

body{
    background-color:#f7f4f1;
    color: #1a1a1a;
}

.navbar{
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    padding:1rem 2rem;
    align-items: center;
    background-color: #424242;
    color: antiquewhite;
    height: 40px;
    position: sticky;
    top: 0;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height: 40px;
    width:auto;
    margin: 0 10px;
    border-radius:5px;
}
.logo-text{
    font-size: 15px;
    margin-left: 10px;
    color:antiquewhite;
}

.material-icons {
  font-size: 40px;
}

.hero{
    text-align: center;
    padding: 4rem 2rem;
    background-image:url("https://platform.sandiego.eater.com/wp-content/uploads/sites/25/chorus/uploads/chorus_asset/file/19332431/tiger_sugar.jpg?quality=90&strip=all&crop=0,10,100,80");
    background-position:center;
    background-size:cover;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:2rem;
    height: 450px;
}

.hero-content{
    max-width:600px
}

.hero-content h2{
    font-size: 24px;
    padding: 1rem;
    color:white;
    background-color:rgba(0, 0, 0, 0.5);
    border-radius:10px;
    margin-bottom: 20px;
}

.hero button{
  background-color:#FFE282;
  border: 2px solid #424242;
  color: #424242;
  text-align: center; 
  font-size: 16px;
  border-radius: 40px;
  padding:10px;
  font-weight:bold;
}

.hero button:hover, .product button:hover{
    background-color:#ffdf63;
    transform:scale(1.05);
}

.products{
    display:flex;
    flex-direction:column;
    align-items:center;
    flex-wrap:wrap;
    padding: 3rem 1rem;
    gap: 2rem;
    color:black;
    line-height:1.5;
}

.product{
    background-color: #fff;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display:flex;
    flex-direction:column;
    align-items:center;
}

.product img{
    width:100%;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.products-text{
    display:block;
    width:100%;
    font-size: 32px;
    font-weight:bold;
    text-align:center;
    margin-bottom:2rem;
    background-color: #424242;
    color:antiquewhite;
    padding:1rem 0;
    margin-bottom:2rem;
    border-radius:8px;
}

.products p{
    margin-bottom: 5px;
}

.product button{
    background-color:#FFE282;
    border: 2px solid #424242;
    color: #424242;
    text-align: center; 
    font-size: 16px;
    border-radius: 40px;
    padding:6px;
    font-weight:bold;
}

.product h3{
    text-shadow: 0px 1px 1px rgba(0,0,0,0.1);
    font-weight:600;
    font-size: 22px;
    color:#1a1a1a;
}

@media only screen and (max-width:1000px) {
    .navbar{
        flex-direction:row;
        justify-content:space-between;
        height:auto;
        text-align:center;
    }
    .material-icons{
        font-size:32px;
    }

    .hero{
        height:300px;
        padding: 2rem 1rem;
    }
    .hero-content h2{
        font-size:18px;
        padding:0.5rem;
    }
    .hero button{
        font-size:14px;
        padding:8px;
    }
}