/* Use the imported fonts */
body {
    font-family: 'Inter', sans-serif;
}
.font-fancy {
    font-family: 'Playfair Display', serif;
}
/* Simple transition for button feedback */
.btn {
    transition: all 0.2s ease-in-out;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Style for the tea level SVG */
#tea-liquid {
    transition: fill 0.5s linear; /* Only transition the fill color now */
}

/* REVISED Steam animation */
@keyframes steam {
    0% {
        transform: translateY(0) scale(1) translateX(0);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    80% {
        transform: translateY(-25px) scale(1.2) translateX(2px);
        opacity: 0.05;
    }
    100% {
        transform: translateY(-30px) scale(1.3) translateX(-2px);
        opacity: 0;
    }
}

#steam-group path, #steam-group circle {
    stroke: #d1d5db; /* Light grey for steam */
    stroke-width: 1;
    fill: none;
    animation: steam 5s infinite linear;
}
/* Stagger the animations for a more natural effect */
#steam-group > *:nth-child(1) { animation-delay: 0s; }
#steam-group > *:nth-child(2) { animation-delay: 1s; }
#steam-group > *:nth-child(3) { animation-delay: 2s; }
#steam-group > *:nth-child(4) { animation-delay: 0.5s; }
#steam-group > *:nth-child(5) { animation-delay: 2.5s; }
#steam-group > *:nth-child(6) { animation-delay: 1.5s; }

/* Pause animation when this class is applied */
.paused > * {
    animation-play-state: paused;
}