/* ---------- GLOBAL FONTS ---------- */
body {
    font-family: 'Poppins', sans-serif;
    background: #F3F5F2; /* light neutral background */
    margin: 0;
    color: #354935; /* default text for light background */
}

/* ---------- HEADER ---------- */
header {
    background: #354935; /* deep green header */
    color: white; /* text on dark background is white */
    text-align: center;
    padding: 50px 0 40px;
}

header h1 {
    font-family: 'Lilita One', cursive;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    color: white; /* title white */
}

header p {
    font-size: 1.15rem;
    opacity: 0.9;
    font-weight: 300;
    color: white; /* paragraph white */
}

/* ---------- MAIN CONTENT ---------- */
main {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
}

/* ---------- COLLAPSIBLE CARDS ---------- */
details {
    background: white; /* light background */
    border-radius: 18px;
    padding: 22px 28px;
    margin-bottom: 25px;
    border-left: 10px solid #A32C75; /* magenta accent */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    color: #354935; /* text color on white */
}

details:hover {
    transform: translateY(-3px);
}

/* clickable label of card */
summary {
    font-family: 'Lilita One', cursive;
    font-size: 1.7rem;
    letter-spacing: 0.7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #A32C75; /* magenta summary title on white card */
}

/* arrow replacement */
summary::-webkit-details-marker { display: none; }
summary::before {
    content: none; /* remove the ▸ symbol */
}
/* ---------- INSIDE CONTENT ---------- */
.content {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.55;
    color: #354935; /* text on white card */
}

.content h2,
.content h3 {
    font-family: 'Lilita One', cursive;
    color: #A32C75; /* magenta headings on white card */
    margin-top: 16px;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.content li {
    margin: 6px 0;
    font-weight: 400;
}

/* ---------- HIGHLIGHTS ---------- */
.highlight {
    color: #ED70C0; /* pink highlights on white background */
    font-weight: 600;
}

/* ---------- FOOTER ---------- */
footer {
    text-align: center;
    font-size: 0.9rem;
    padding: 40px 0;
    color: #354935; /* footer on light background */
}
