/* Custom Styles for Cowlicks Yogurt & Floats */

:root {
    --forest-green: #0f4c3a;
    --off-white: #f5f5f0;
    --warm-beige: #e8c39e;
    --dark-beige: #d4a373;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--off-white);
    color: var(--forest-green);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
}

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

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

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

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

.animate-float-delayed {
    animation: float-delayed 5s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

/* Blob Shapes */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
}

.blob-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 20%;
}

/* Navbar Scroll Effect */
.navbar-scrolled {
    background-color: rgba(245, 245, 240, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Geometric Pattern Background */
.pattern-bg {
    background-image: radial-gradient(circle, #0f4c3a 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

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

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--forest-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--warm-beige);
}
