/* Atomic Events Plugin - Tailwind CSS Input File */

@import '../../node_modules/@phosphor-icons/web/src/regular/style.css';

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom base styles for Atomic Events */
@layer base {
  .atomic-events-container {
    @apply font-sans text-gray-900;
  }
  
  .atomic-event-single-content {
    @apply max-w-4xl mx-auto;
  }
}

/* Custom component styles for Atomic Events */
@layer components {
  .event-card {
    @apply bg-white rounded-lg shadow-md overflow-hidden transition-all duration-300 hover:shadow-lg;
  }
  
  .event-title {
    @apply text-2xl font-bold text-gray-900 mb-4;
  }
  
  .event-date {
    @apply text-xl font-bold text-blue-600;
  }
  
  .event-venue {
    @apply text-lg font-semibold text-gray-800;
  }
  
  .event-tags {
    @apply flex flex-wrap gap-2 mt-4;
  }
  
  .event-tag {
    @apply inline-block bg-blue-100 text-blue-800 rounded-full px-3 py-1 text-sm font-medium;
  }
  
  /* Phosphor Icon utilities */
  .icon-sm {
    @apply text-sm;
  }
  
  .icon-md {
    @apply text-base;
  }
  
  .icon-lg {
    @apply text-lg;
  }
  
  .icon-xl {
    @apply text-xl;
  }
  
  .icon-2xl {
    @apply text-2xl;
  }
  
  /* Icon with text alignment */
  .icon-text {
    @apply inline-flex items-center gap-2;
  }
  
  .icon-text-reverse {
    @apply inline-flex items-center gap-2 flex-row-reverse;
  }
}
