/* Custom Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfdfd;
}

/* Text Shadows */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-subtle {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 15px -3px rgba(244, 63, 94, 0.5);
    }
}

.anim-pulse-subtle {
    animation: pulse-subtle 3s infinite;
}

/* Sakura Petal Falling Effect (Simple CSS Implementation) */
/* We can add this via JS for better randomness, but here is a simple bg pattern */
.pattern-grid {
    background-image: radial-gradient(#f43f5e 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.8;
}

/* Accordion Overrides */
.accordion-button:not(.collapsed) {
    color: #f43f5e;
    background-color: #fff0f5;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: #fda4af;
    box-shadow: 0 0 0 0.25rem rgba(244, 63, 94, 0.25);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #fda4af;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f43f5e;
}

/* Navbar Scrolled State */
.navbar-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Fix Tailwind vs Bootstrap Conflict */
.collapse {
    visibility: visible !important;
}

.accordion-collapse.collapse:not(.show) {
    display: none;
}

/* Force Button Colors */
.btn-sakura {
    background-color: #f43f5e !important;
    /* Tailwind rose-500/sakura-500 */
    color: white !important;
    border: none !important;
}

.btn-sakura:hover {
    background-color: #be123c !important;
    /* Tailwind rose-700/sakura-700 */
    color: white !important;
}

/* Force Colors Utilities */
.bg-sakura-fill {
    background-color: #f43f5e !important;
}

.text-sakura-fill {
    color: #f43f5e !important;
}

.text-sakura-dark {
    color: #be123c !important;
}