
    :root {
        --pink: rgb(255, 143, 143);
        --cream: rgb(255, 241, 203);
        --blue: rgb(194, 226, 250);
        --lavender: rgb(183, 163, 227);
    }

    body {
        margin: 0;
        background: var(--cream);
        font-family: "Poppins", sans-serif;
    }

    header {
        background: var(--lavender);
        color: white;
        text-align: center;
        padding: 30px;
        font-size: 42px;
        font-family: "Pacifico", cursive;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        animation: fadeIn 1.2s ease;
    }

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

    .main {
        background: white;
        margin: 40px auto;
        width: 85%;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 0 15px rgba(0,0,0,0.15);
    }

    .main h2 {
        font-family: "Cinzel", serif;
        font-size: 38px;
        text-align: center;
        margin-bottom: 20px;
        color: var(--pink);
    }

    .menu-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .item {
        background: var(--blue);
        padding: 18px;
        border-radius: 14px;
        font-size: 22px;
        font-weight: 600;
        transition: 0.25s;
        cursor: pointer;
        max-width: 330px;
        text-align: center;
        animation: float 1.8s infinite ease-in-out;
    }

    @keyframes float {
        0% {transform: translateY(0);}
        50% {transform: translateY(-6px);}
        100% {transform: translateY(0);}
    }

    .item span {
        display: block;
        font-size: 20px;
        margin-top: 6px;
        font-weight: 500;
        color: #444;
    }

    .item:hover {
        box-shadow: 0 0 12px rgba(0,0,0,0.18);
        transform: scale(1.05);
        background: var(--pink);
        color: white;
    }
    .item:hover span {
        color: white;
    }

    .message {
        text-align: center;
        font-size: 24px;
        font-weight: 600;
        margin-top: 25px;
        color: var(--lavender);
    }

    /* History & Quiz */
    .section {
        padding: 45px;
        background: var(--blue);
        margin: 50px 25px;
        border-radius: 22px;
        text-align: center;
    }
    .section h3 {
        font-family: "Cinzel", serif;
        font-size: 34px;
        margin-bottom: 15px;
        color: var(--lavender);
    }
    .fact {
        font-size: 21px;
        margin-bottom: 15px;
    }

    button {
        font-size: 18px;
        padding: 10px 22px;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        background: var(--pink);
        color: white;
        transition: .3s;
    }
    button:hover {
        background: var(--lavender);
    }

    /* Ratings & Reviews */
    .reviews {
        background: white;
        padding: 40px;
        margin: 30px auto;
        border-radius: 20px;
        width: 80%;
        box-shadow: 0 0 15px rgba(0,0,0,0.15);
    }
    .reviews h3 {
        font-family: "Cinzel", serif;
        font-size: 32px;
        text-align: center;
        color: var(--pink);
    }
    .review-card {
        background: var(--blue);
        margin: 14px 0;
        padding: 18px;
        border-radius: 15px;
        font-size: 19px;
    }
    .stars {
        font-size: 24px;
        color: gold;
        margin-bottom: 4px;
    }

    footer {
        background: var(--pink);
        color: white;
        text-align: center;
        padding: 22px;
        font-size: 19px;
        font-weight: 600;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        margin-top: 65px;
    }
