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

body {
    background: linear-gradient(135deg, #ffdde1, #ee9ca7);
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255,255,255,0.9);
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 42px;
    font-weight: 900;
    color: #e91e63;
    letter-spacing: 2px;
    animation: glow 2s infinite alternate;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

nav a:hover {
    color: #e91e63;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
    background: url('https://images.unsplash.com/photo-1497051788611-2c64812349f4') center/cover no-repeat;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 20px;
    animation: fadeIn 2s ease;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero button {
    padding: 12px 35px;
    border: none;
    background: #ff4081;
    color: white;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.4s;
}

.hero button:hover {
    background: #c2185b;
    transform: scale(1.1);
}

/* Flavors */
.flavors {
    padding: 100px 8%;
    text-align: center;
    background: #fff;
}

.flavors h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: #e91e63;
}

.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #fdfdfd;
    border-radius: 20px;
    width: 300px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.4s;
}

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

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

.card h3 {
    margin: 15px 0 10px;
    color: #e91e63;
}

.card p {
    padding: 0 15px 20px;
}

/* Footer */
footer {
    background: #e91e63;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Animations */
@keyframes glow {
    from { text-shadow: 0 0 10px #ff80ab; }
    to { text-shadow: 0 0 25px #ff1744; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:768px) {
    .logo {
        font-size: 28px;
    }

    .hero h2 {
        font-size: 24px;
    }
}
