/* Custom styles for HeartMate website */

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

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

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

/* Custom hover effects */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Custom gradients */
.gradient-text {
    background: linear-gradient(45deg, #e11d48, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom shadows */
.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-xl {
        font-size: 1.1rem;
    }
}

/* Custom form styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

/* Custom button styles */
.btn-primary {
    background: linear-gradient(45deg, #e11d48, #f43f5e);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

/* Section transitions */
section {
    transition: background-color 0.3s ease;
}

/* Card hover effects */
.rounded-lg {
    transition: all 0.3s ease;
}

.rounded-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
} 