/*
Theme Name: Talod Theme
Description: Custom theme for Talod Insta Serve food brand
Version: 1.0
Author: Your Name
Text Domain: talod-theme
*/

/* Import Tailwind CSS */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* Custom styles */
:root {
  --primary: #5A2CA0;
  --accent: #FF4B4B;
  --background: #F5F5F7;
  --border-radius: 16px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
}

.card {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #4a2380;
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-accent:hover {
  background-color: #e63946;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}