/* Nature Aesthetics & Animations */

:root {
    --nature-green: #198754;
    --nature-light: #20c997;
    --nature-soft: rgba(25, 135, 84, 0.1);
}

/* Floating Elements Container */
.nature-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23198754" opacity="0.3"><path d="M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z"/></svg>') no-repeat;
    background-size: contain;
    animation: fall linear forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(110vh) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

/* Organic Hover Effects */
.card-product, .service-card, .btn-modern {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card-product:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(25, 135, 84, 0.2) !important;
}

.card-product:hover::after {
    content: '🌿';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.5rem;
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Smooth Nature Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--nature-green), var(--nature-light));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nature-green);
}

/* Premium Nature Text */
.hero-title, .section-title {
    background: linear-gradient(135deg, #111 0%, #198754 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Flower Petals (Pink/Soft) */
.petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffc0cb" opacity="0.4"><path d="M12,2C12,2 15,7 15,11C15,15 12,19 12,19C12,19 9,15 9,11C9,7 12,2 12,2Z"/></svg>') no-repeat;
    background-size: contain;
    animation: drift linear forwards;
}

@keyframes drift {
    0% {
        transform: translateY(-10vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(50vh) translateX(-50px) rotate(180deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(110vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}
