/* Google Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff8f8;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #ff4d6d, #ff85a2);
    color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

header h1 {
    font-size: 32px;
    font-weight: 600;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    color: #ffe5ec;
}

/* Section */
.menu {
    padding: 50px 40px;
    text-align: center;
}

.menu h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #ff4d6d;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card Design */
.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    padding-bottom: 20px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3 {
    font-size: 24px;
    margin: 15px 0 10px;
    color: #444;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: #ff4d6d;
    margin-bottom: 15px;
}

/* Button */
.btn {
    background: #ff4d6d;
    color: white;
    border: none;
    padding: 12px 22px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #e63956;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #ff4d6d;
    color: white;
    text-align: center;
    padding: 18px;
    margin-top: 50px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 15px;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }

    .menu h2 {
        font-size: 30px;
    }
}