﻿body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #fff7fb;
    color: #4b2e2e;
}

header {
    background: #ffe4ec;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #a0526d;
    font-weight: 500;
}

nav a:hover {
    color: #ff4d88;
}

.container {
    padding: 40px;
}

h1 {
    color: #d63384;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    border-radius: 15px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #ff85a2;
    color: white;
    border-radius: 12px;
    text-decoration: none;
}

.btn:hover {
    background: #ff4d88;
}

footer {
    background: #ffe4ec;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}