/*
Theme Name: RocketBid Blog
Theme URI: https://rocketbid.io
Author: RocketBid
Author URI: https://rocketbid.io
Description: Custom blog theme matching the RocketBid marketing site design
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rocketbid-blog
*/

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables - Matching RocketBid Design System */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #030213;
  --card: #ffffff;
  --card-foreground: #030213;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #f3f3f5;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #717182;
  --radius: 0.625rem;

  /* RocketBid Brand Colors */
  --purple-primary: #3F38C3;
  --purple-mid: #4E46F1;
  --purple-light: #7A75E3;
  --accent-blue: #818CFE;
  --accent-blue-hover: #566dff;
  --orange-start: #FF7A00;
  --orange-end: #FEDD76;
  --text-primary: #0b1220;
  --text-secondary: #0F0F16;
  --text-muted: #7B7E8C;

  /* Dark mode colors */
  --dark-bg: #141e35;
  --dark-bg-secondary: #0a1426;
  --dark-bg-tertiary: #1a2847;
  --dark-border: rgba(86, 109, 255, 0.3);
}

/* Dark mode */
.dark-mode {
  --background: #141e35;
  --foreground: #ffffff;
  --card: #0a1426;
  --card-foreground: #ffffff;
  --border: rgba(86, 109, 255, 0.2);
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.2s, color 0.2s;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-medium {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
