
/* 🛡️ SAFETY FALLBACK CSS - Phase 2 Theme Revolution */
:root {
  --primary-color: #f36828;
  --secondary-color: #25485e;
  --accent-color: #d65e5d;
  --text-color: #374151;
  --background-color: #ffffff;
  --surface-color: #fef7f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--text-color); }
.btn { padding: 12px 24px; border-radius: 6px; text-decoration: none; font-weight: 600; }
.btn-primary { background: var(--primary-color); color: white; }
.hero-section { min-height: 50vh; background: var(--primary-color); color: white; }



/* 🎨 THEME: Dormatic Professional (professional) */
/* Generated by Consolidated Theme Manager - Industry Level */

:root {
  /* Core Theme Colors */
  --theme-primary: #2563eb;
  --theme-secondary: #1d4ed8;
  --theme-accent: #3b82f6;
  --theme-background: #ffffff;
  --theme-surface: #f8fafc;
  --theme-text: #1f2937;
  --theme-text-secondary: #6b7280;
  --theme-border: #e5e7eb;
  --theme-success: #10b981;
  --theme-warning: #f59e0b;
  --theme-error: #ef4444;

  /* Typography */
  --theme-font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  
  /* Layout */
  --container-max-width: 1200px;
  --container-padding: 1rem;
  --section-padding: 4rem 0;
  --border-radius: 0.5rem;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ===== GLOBAL BASE STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--theme-font-family);
  color: var(--theme-text);
  background-color: var(--theme-background);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--theme-font-family);
  color: var(--theme-text);
  margin: 0 0 1rem 0;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem 0;
  color: var(--theme-text);
}

.text-secondary {
  color: var(--theme-text-secondary);
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--theme-surface);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--theme-font-family);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--theme-primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--theme-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--theme-primary);
  border: 2px solid var(--theme-primary);
}

.btn-secondary:hover {
  background-color: var(--theme-primary);
  color: white;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ===== CARDS ===== */
.card {
  background-color: var(--theme-background);
  border: 1px solid var(--theme-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--theme-border);
}

.card-body {
  padding: 1.5rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: var(--theme-surface);
  border-top: 1px solid var(--theme-border);
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--theme-background);
  border-bottom: 1px solid var(--theme-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-primary);
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--theme-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--theme-primary);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: white;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .navbar-nav {
    gap: 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
}

/* ===== CATEGORY-SPECIFIC STYLES ===== */

/* Professional Theme Enhancements */
.card {
  border-left: 4px solid var(--theme-accent);
}
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
