/*
Theme Name: Turn.io Clone
Theme URI: https://www.turn.io
Author: Lingma AI Assistant
Description: A WordPress theme cloned from turn.io using Tailwind CSS
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: turnio-clone
Tags: blog, one-column, two-columns, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks
*/

/* Import Tailwind CSS */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles for Turn.io clone */
@layer base {
  body {
    font-family: 'DM Sans', sans-serif;
    @apply font-sans antialiased;
  }
  
  h1, h2, h3, h4, h5, h6 {
    @apply font-bold;
  }
  
  a {
    @apply text-blue-600 hover:text-blue-800 transition-colors duration-300;
  }
  
  .btn {
    @apply inline-block px-6 py-3 rounded-lg font-semibold text-center no-underline transition-all duration-300 cursor-pointer;
  }
  
  .btn-primary {
    @apply bg-blue-600 text-white hover:bg-blue-700;
  }
  
  .btn-secondary {
    @apply bg-gray-200 text-gray-800 hover:bg-gray-300;
  }
}

@layer components {
  .container {
    @apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
  }
  
  .section {
    @apply py-16 md:py-24;
  }
  
  .hero-section {
    @apply py-20 md:py-28;
  }
  
  .card {
    @apply bg-white rounded-xl shadow-md overflow-hidden border border-gray-200;
  }
}