/* Custom CSS for Ichiyo School of Ikebana */

/* Base Styles */
body {
    background-color: #fdf6e3; /* Sand */
    color: #0a192f; /* Midnight */
}

/* Typography Overrides */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

p, li, a, button, input, textarea, select {
    font-family: 'Space Grotesk', sans-serif;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(3deg); }
}

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

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #112240;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2dd4bf;
}

/* Utility for text readability on mixed backgrounds */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
