/*
Theme Name: Barbottina
Description: A modern WordPress theme for Barbottina ceramics and tiles
Version: 1.0
Author: Barbottina
*/

/* Tailwind CSS is loaded via functions.php from dist/output.css */

/* Custom styles for Barbottina theme */
@layer base {
  body {
    font-family: 'Inter', sans-serif;
  }
  
  .font-serif-custom {
    font-family: 'Playfair Display', serif;
  }
}

@layer components {
  .btn-primary {
    @apply bg-orange-500 hover:bg-orange-600 text-white font-bold py-3 px-6 rounded-lg transition-colors duration-300 uppercase tracking-wide;
  }
  
  .btn-outline {
    @apply border-2 border-white text-white font-bold py-3 px-6 rounded-lg transition-all duration-300 uppercase tracking-wide hover:bg-white hover:text-orange-500;
  }
  
  .section-padding {
    @apply py-16 px-4 md:px-8 lg:px-16;
  }
  
  .container-custom {
    @apply max-w-7xl mx-auto;
  }
}
