*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #fff;
}

/* NAVBAR */

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 8%;
    background-color: white;

    position: fixed;
    width: 100%;
    top: 0;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo{
    color: #ff3b7d;
}

.nav-links{
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* HERO SECTION */

.hero{
    height: 100vh;

    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("https://images.unsplash.com/photo-1497034825429-c343d7c6a68f?q=80&w=1000&auto=format&fit=crop");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.hero-content h1{
    font-size: 60px;
    width: 70%;
    margin: auto;
}

.hero-content p{
    margin-top: 20px;
    font-size: 20px;
}

.hero-content button{
    margin-top: 30px;
    padding: 15px 35px;

    border: none;
    background-color: #ff3b7d;
    color: white;

    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
}

/* FLAVOURS */

.flavours{
    padding: 100px 8%;
}

.flavours h2{
    text-align: center;
    margin-bottom: 50px;
    font-size: 40px;
}

.cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.card{
    background-color: white;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);

    transition: 0.3s;
}

.card:hover{
    transform: translateY(-10px);
}

.card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3{
    padding: 20px;
    text-align: center;
}

/* ABOUT */

.about{
    padding: 100px 8%;

    display: flex;
    align-items: center;
    gap: 50px;

    flex-wrap: wrap;
}

.about-text{
    flex: 1;
}

.about-text h2{
    font-size: 45px;
    margin-bottom: 20px;
}

.about-text p{
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-text button{
    padding: 15px 30px;

    border: none;
    background-color: #ff3b7d;
    color: white;

    border-radius: 30px;
    cursor: pointer;
}

.about-image{
    flex: 1;
}

.about-image img{
    width: 100%;
    border-radius: 20px;
}

/* FOOTER */

footer{
    background-color: #111;
    color: white;

    text-align: center;
    padding: 40px;
}

footer h2{
    margin-bottom: 10px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-content h1{
        font-size: 40px;
        width: 90%;
    }

    .navbar{
        flex-direction: column;
        gap: 20px;
    }

    .about{
        flex-direction: column;
    }

}
