/* Custom Animations */
@keyframes progress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

.animate-progress {
    animation: progress 2s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.petals-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Custom Utilities */
.shadow-soft {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar hide */
.scrollbar-thin::-webkit-scrollbar {
    width: 4px;
}
.scrollbar-thin::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #82756b;
    border-radius: 10px;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section transitions */
section {
    position: relative;
    z-index: 10;
}

/* Floating Flowers / Petals Effect */
.petal {
    position: absolute;
    background-color: #fffaf0;
    border-radius: 150% 0 150% 0;
    animation: falling 10s linear infinite;
    z-index: 1;
    opacity: 0.7;
}

@keyframes falling {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: 110%;
        transform: translateX(100px) rotate(360deg);
    }
}

/* Typography Overrides */
.font-serif {
    font-family: 'Playfair Display', serif;
}

body {
    font-family: 'Poppins', sans-serif;
}
