:root {
    --pink: #e91e63;
    --dark-pink: #c2185b;
    --white: #ffffff;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fff5f8;
    color: var(---text-color);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Pacifico', cursive;
    font-size: 24px;
    color: var(--pink);
}

.logo span { color: #333; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: bold; transition: 0.3s; }
nav ul li a:hover { color: var(--pink); }

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 80vh;
}

.hero-content h1 { font-size: 50px; color: var(--pink); line-height: 1.2; }
.hero-content p { margin: 20px 0; font-size: 18px; }

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--pink);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover { background: var(--dark-pink); transform: scale(1.05); }

/* Flavor Section */
.flavors { padding: 80px 10%; text-align: center; }
.section-title { font-size: 36px; margin-bottom: 40px; color: var(--pink); }

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.flavor-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.flavor-card:hover { transform: translateY(-10px); }
.flavor-card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }

/* Footer */
footer { background: #333; color: white; padding: 50px 10%; text-align: center; }
footer h2 { margin-bottom: 20px; color: var(--pink); }
footer p { margin: 5px 0; }