*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #fef6e4;
    color: #222;
    line-height: 1.5;
}

header{
    width: 100%;
    padding: 10px 20px;
    background-color: #1d3557;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items:center;
}

.logo{
    display: flex;
    align-items: center;
}

.logo img{
    height:45px;
    border-radius:10px;
    margin-top: 5px;
}

.navtitle h1{
    color: #ffc857;
    font-size: 24px;
    margin-left: 30px;
    margin-top: 4px;
    font-weight: 400;
    font-family: 'Luckiest Guy';
    letter-spacing: 1px;
}

.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu ul{
    display:none;
    list-style:none;
}

.menu ul li{
    font-size: 20px;
    margin-left: 30px;
    font-weight: 400;
    font-family: 'Luckiest Guy';
    letter-spacing: 1px;
}

.material-icons.menu{
    font-size: 32px;
    margin-left: auto;
}

a{
    text-decoration: none;
}

.hero{
    margin: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content{
    padding: 30px 40px;
}

.hero h1{
    color: #333333;
    font-family: 'Luckiest Guy';
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero button{
    font-family: 'Luckiest Guy';
    padding: 15px 30px 15px 30px;
    border: none;
    background-color: #e63946;
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.hero button:hover{
    background-color: #c92c39;
    transform: scale(1.05);
}

.products-cards{
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product-card{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.product-card img{
    width: 100%;
    display: block;
}

section{
    margin-bottom: 60px;
    text-align: center;
}

.product-card img{
    width: 100%;
    max-width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cardtitle{
    text-align: center;
}

.cardtitle h2{
    font-family: 'Luckiest Guy';
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.cardtitle p{
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.viewmore{
    font-size: 25;
    font-family: 'Luckiest Guy';
    padding: 15px 20px;
    border: none;
    background-color: #1d3557;
    color: white;
    border-radius: 25px;
    transition: 0.3s ease;
    letter-spacing: 1px;
    display: block;
    margin: 0 auto 0 auto;
}

.viewmore:hover{
    background-color: #16324a;
    transform: scale(1.05);
}

.divider{
    width: 100%;
    height: 40px;
    background-image: url(https://images.vexels.com/media/users/3/132477/isolated/svg/3b36d6c1705c1902d34a84ba17ee531d.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin: 30px 0 30px 0;
}

@media (min-width:850px){
    .menu ul{
        display:flex;
        justify-content: flex-end;
    }

    .material-icons.menu{
        display:none;
    }

    .products-cards{
        display:flex;
        /* justify-content: space-around; shrinking and growing space in between*/ 
        align-items: flex-start;
        flex-wrap: wrap;
    }
}
