/*
Theme Name: Bilecik Su
Theme URI: https://bileciksu.com
Author: Antigravity
Description: High conversion water delivery theme.
Version: 1.0.0
*/

body {
    background-color: #f0f9ff;
    font-family: 'Inter', sans-serif;
}

/* Custom Water Animation Helpers */
.water-drop {
    box-shadow: inset 10px 10px 20px rgba(0, 0, 0, 0.05),
        inset -10px -10px 20px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #e0f2fe 0%, #0ea5e9 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 6s linear infinite;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }

    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}