/*
Theme Name: Peptide Sciences
Theme URI: https://peptidesciences.com
Author: Development Team
Author URI: https://peptidesciences.com
Description: Custom Tailwind-based theme for Peptide Sciences research products.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peptide-sciences
Domain Path: /languages
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
      --primary: #e7461e;
      --primary-hover: #c93a15;
      --primary-light: #fff5f2;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

/* Tailwind Color Extensions */
.bg-primary {
      background-color: var(--primary);
}

.text-primary {
      color: var(--primary);
}

.border-primary {
      border-color: var(--primary);
}

html {
      scroll-behavior: smooth;
}

body {
      font-family: 'Inter', sans-serif;
      color: #000000;
      background-color: #f8fafc;
      line-height: 1.6;
}