/* Fade-in Animation */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Button Hover Effects */
.try-app-button {
    transition: all 0.3s ease;
}

.try-app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

.try-app-button:active {
    transform: translateY(0);
}

/* Navigation Link Effects */
nav a {
    transition: color 0.3s ease;
}

nav a:hover {
    color: #a20000;
}

/* Form Input Effects */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #cc0000;
    box-shadow: 0 0 5px rgba(204, 0, 0, 0.3);
}

/* Submit Button Effects */
button[type="submit"] {
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 0, 0, 0.3);
}

button[type="submit"]:active {
    transform: translateY(0);
} 