/*
Theme Name: Moorish Kitchen Theme
Theme URI: https://github.com/moorishkitchen
Author: Antigravity AI
Author URI: https://github.com/google-deepmind
Description: Un thème culinaire chaleureux et moderne pour le Maghreb et la Méditerranée, adapté de l'application Moorish Kitchen.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: moorish-kitchen
*/

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a29e;
}

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

/* Custom styles for tables, images, borders and animations */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.prose th {
  background: #fafaf9;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #e7e5e4;
  color: #292524;
}
.prose td {
  padding: 0.6rem 1rem;
  border: 1px solid #e7e5e4;
  color: #57534e;
}
.prose tr:nth-child(even) td {
  background: #fafaf9;
}

/* Fallback line-clamp utilities */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Input accent control */
input[type="checkbox"] {
  accent-color: #d97706;
}

/* Image border animation pulse */
@keyframes pulse-border {
  0%, 100% { border-color: #d97706; }
  50% { border-color: #f59e0b; }
}
.animate-pulse-border {
  animation: pulse-border 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
