body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #FFE6D4;
}

header {
    background: #CD2C58;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    background: #E06B80;
    padding: 12px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

nav a:hover {
    text-decoration: underline;
}

.section-title {
    text-align: center;
    font-size: 30px;
    margin: 30px 0;
    color: #CD2C58;
}

.items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px;
}

.card {
    background: #FFC69D;
    width: 250px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    border: 3px solid #E06B80;
    cursor: pointer;
}

.card:hover {
    background: #E06B80;
    color: white;
    transform: scale(1.05);
}

button {
    background: #CD2C58;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #E06B80;
}

footer {
    background: #E06B80;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Loader */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #FFE6D4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #CD2C58;
    z-index: 1000;
}
