/* Custom styles for My Daily Bread landing page */

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

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Custom gradient backgrounds matching app theme */
.gradient-primary {
    background: linear-gradient(135deg, #8E97FD 0%, #6B73E8 100%);
}

/* iOS App Icon corner radius - matches Apple's 22.37% radius */
.ios-icon-radius {
    border-radius: 22.37%;
}

/* Backdrop blur fallback for older browsers */
@supports not (backdrop-filter: blur(12px)) {
    .backdrop-blur-md {
        background-color: rgba(255, 255, 255, 0.95);
    }
}

/* Print styles */
@media print {
    header,
    footer,
    .no-print {
        display: none;
    }
}
