/*
Theme Name: Salesforce Consulting
Description: Modern WordPress theme for Salesforce consulting company
Version: 1.0.0
Author: Your Company
*/

:root {
  --primary-blue: #0176D3;
  --primary-blue-dark: #014A8C;
  --secondary-blue: #1B96FF;
  --accent-orange: #FF6B35;
  --white: #FFFFFF;
  --light-gray: #F7F9FB;
  --medium-gray: #E5E5E5;
  --dark-gray: #747474;
  --text-dark: #181818;
  --text-light: #68737D;
  
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Block Editor Full Width Support */
.wp-block {
  max-width: 100%;
}

/* Default container for regular blocks */
.wp-block:not(.wp-block-bring-corp-hero):not(.wp-block-bring-corp-cta):not(.wp-block-bring-corp-services):not(.wp-block-bring-corp-testimonials):not(.alignwide):not(.alignfull) {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Wide alignment */
.alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Full alignment */
.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 60px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.bg-light {
  background-color: var(--light-gray);
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

@media (max-width: 768px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-sm {
    padding: 40px 0;
  }
}