body {
    background-color: #FFEBFB;
    font-family: 'Open Sans', sans-serif;
    color: #6b4e63;
    margin: 0;
    padding: 30px;
    text-align: center;
}

/* Header utama */
h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 60px;
    color: #d87ab5;
    margin-bottom: 10px;
}

/* Subheader */
h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: #d87ab5;
}

/* Judul kecil */
h3 {
    font-weight: 700;
    color: #b86495;
}

/* Navbar */
ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

ul li {
    display: inline-block;
    margin: 0 15px;
}

ul li a {
    text-decoration: none;
    color: #c76aa4;
    font-weight: 600;
    transition: 0.3s;
}

ul li a:hover {
    color: #9e4d7e;
}

/* Card */
#homepage,
#analysis,
#result {
    background: white;
    max-width: 650px;
    margin: 30px auto;
    padding: 35px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(216,122,181,0.15);
}

/* Teks biasa */
p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

/* Bold khusus */
strong {
    font-weight: 700;
    color: #b86495;
}

/* Dropdown */
select {
    width: 250px;
    padding: 12px;
    border-radius: 15px;
    border: 2px solid #f3c9e8;
    background: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

/* Tombol */
button {
    background: #e8a5cf;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: #d87ab5;
}

/* Hasil rekomendasi */
#resultText {
    line-height: 2;
    font-size: 17px;
}
