/* Custom styles for Swift Build Web */

/* Scroll behavior handled by class scroll-smooth in HTML */

/* Reveal animations similar to motion/react */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Custom shadow extensions */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Inter font smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography adjustments */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Animation for the badge dot */
@keyframes pulse-sky {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.animate-pulse {
    animation: pulse-sky 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Smooth active state for buttons */
button:active {
    transform: scale(0.95);
}
