/* Custom Styles & Animations */
:root {
    --color-teal-400: #2DD4BF;
    --color-teal-500: #14B8A6;
    --color-teal-600: #0D9488;
    --color-slate-900: #0F172A;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Syne', sans-serif;
}

/* Custom Pattern for CTA */
.pattern-dots {
    background-image: radial-gradient(var(--color-teal-500) 1px, transparent 1px);
    background-size: 20px 20px;
}

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

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

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.2);
}

/* Selection Color */
::selection {
    background-color: var(--color-teal-400);
    color: var(--color-slate-900);
}
