/* DeclaratieNutritionala.ro - Custom Styles */

html { scroll-behavior: smooth; }

.gradient-bg { background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%); }
.gradient-text { background: linear-gradient(to right, #4f46e5, #14b8a6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; background: #4f46e5; color: white; font-weight: 600; border-radius: 0.5rem; transition: all 0.2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #4338ca; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; background: white; color: #4338ca; font-weight: 600; border-radius: 0.5rem; border: 2px solid #c7d2fe; transition: all 0.2s; cursor: pointer; }
.btn-secondary:hover { background: #eef2ff; border-color: #a5b4fc; }

.btn-accent { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; background: #0d9488; color: white; font-weight: 600; border-radius: 0.5rem; transition: all 0.2s; border: none; cursor: pointer; }
.btn-accent:hover { background: #0f766e; }

.btn-danger { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; background: #dc2626; color: white; font-weight: 600; border-radius: 0.5rem; transition: all 0.2s; border: none; cursor: pointer; }

.btn-ghost { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; color: #4b5563; font-weight: 600; border-radius: 0.5rem; transition: all 0.2s; border: none; cursor: pointer; background: transparent; }
.btn-ghost:hover { background: #f3f4f6; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }

.card { background: white; border-radius: 0.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: 1px solid #f3f4f6; overflow: hidden; }
.card-hover { background: white; border-radius: 0.75rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border: 1px solid #f3f4f6; overflow: hidden; transition: all 0.2s; }
.card-hover:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: #e0e7ff; }

.input-field { width: 100%; padding: 0.75rem 1rem; border: 1px solid #d1d5db; border-radius: 0.5rem; outline: none; transition: all 0.2s; background: white; font-size: 0.875rem; }
.input-field:focus { border-color: #4f46e5; box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

.label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.25rem; }

/* Modal */
.modal-overlay { position: fixed; inset: 0; z-index: 50; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.5); }
.modal-content { background: white; border-radius: 1rem; padding: 2rem; width: 100%; max-width: 32rem; margin: 1rem; box-shadow: 0 25px 50px rgba(0,0,0,0.25); }

/* Notification animation */
.notification { animation: slideIn 0.3s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
