/* ---------- Image Hover Effects ---------- */
img {
    width: 100%;
    margin-top: 15px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s; /* smooth hover */
}

img:hover {
    transform: scale(1.05); /* enlarges slightly */
    box-shadow: 0 10px 20px rgba(0,0,0,0.5); /* subtle shadow */
}

/* ---------- Button Hover Effects ---------- */
button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    background-color: #22c55e;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

button:hover {
    background-color: #16a34a; /* dark green */
    transform: scale(1.05); /* slightly grows */
}

/* ---------- Section Hover Effects (Optional) ---------- */
section {
    transition: transform 0.2s, box-shadow 0.2s;
}

section:hover {
    transform: translateY(-5px); /* slightly lifts on hover */
    box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}

/* ---------- Highlight Hover Effects for Words ---------- */
.highlight:hover {
    color: #a3e635; /* neon green on hover */
    cursor: pointer;
    transition: color 0.2s;
}