/* Custom Styles and Micro-Animations for the Otosign website */

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

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(18, 30, 51, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(18, 30, 51, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(18, 30, 51, 0);
    }
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease-in forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

.pulse-animation {
    animation: pulseEffect 2s infinite;
}

/* Phone Mockup Styling */
.phone-mockup {
    width: 280px;
    height: 560px;
    border-radius: 40px;
    border: 8px solid #1f2937;
    margin-top: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
