/* Custom styles beyond Tailwind */
:root {
    --color-synergy-teal: #0D9488;
    --color-synergy-dark: #0F172A;
    --color-synergy-slate: #64748B;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 80px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #0F172A;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Geometric decorative elements */
.geo-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-synergy-teal);
    opacity: 0.1;
}

.geo-square {
    position: absolute;
    background: var(--color-synergy-dark);
    opacity: 0.05;
    transform: rotate(45deg);
}
