/* Custom styles to complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

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

/* Add some subtle animations */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Custom focus styles */
button:focus, input:focus, textarea:focus {
    outline: none;
    ring: 2px;
    ring-blue-500;
    ring-opacity-50;
}

/* Product card hover effect */
.product-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* Footer link hover smooth transition */
footer a {
    transition: color 0.3s ease;
}

button {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}
/* Form message styles */
.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
}

.form-success {
    color: #065f46;
    background-color: #d1fae5;
}

.form-error {
    color: #991b1b;
    background-color: #fee2e2;
}