* Clean White Design with Michigan Color Accents
 * 
 * HOW TO APPLY:
 * 1. Log into WordPress Admin
 * 2. Go to Appearance → Customize
 * 3. Click "Additional CSS"
 * 4. Copy and paste this entire CSS code
 * 5. Click "Publish"
 */

/* ============================================
   COLOR VARIABLES - Your Brand Colors
   ============================================ */
:root {
  /* Primary: Clean White Base */
  --color-white: #FFFFFF;
  --color-off-white: #FAFAFA;
  
  /* Michigan Lake Blue - Primary Accent */
  --color-lake-blue: #2B6CB0;
  --color-lake-blue-light: #4299E1;
  --color-lake-blue-dark: #1A4D7A;
  
  /* Warm Coral - Secondary Accent */
  --color-coral: #ED8936;
  --color-coral-light: #F6AD55;
  
  /* Terracotta - Tertiary Accent */
  --color-terracotta: #C05621;
  
  /* Neutrals */
  --color-text-dark: #2D3748;
  --color-text-medium: #4A5568;
  --color-text-light: #718096;
  --color-border: #E2E8F0;
  --color-shadow: rgba(0, 0, 0, 0.08);
}

/* ============================================
   GLOBAL STYLES - Clean White Foundation
   ============================================ */
body {
  background-color: var(--color-white) !important;
  color: var(--color-text-dark) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
}

/* Clean container spacing */
.ast-container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ============================================
   HEADER - Minimal & Professional
   ============================================ */
.site-header {
  background-color: var(--color-white) !important;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* Logo styling */
.site-branding img {
  max-height: 60px;
  transition: transform 0.3s ease;
}

.site-branding img:hover {
  transform: scale(1.05);
}

/* Navigation menu */
.main-header-menu {
  background-color: transparent !important;
}

.main-header-menu a {
  color: var(--color-text-dark) !important;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  padding: 10px 16px !important;
}

.main-header-menu a:hover {
  color: var(--color-lake-blue) !important;
}

.main-header-menu .current-menu-item > a {
  color: var(--color-lake-blue) !important;
  font-weight: 600;
}

/* Mobile menu */
.main-header-menu-toggle {
  color: var(--color-lake-blue) !important;
}

/* ============================================
   HERO SECTION - Clean with Overlay
   ============================================ */
.hero-section,
.wp-block-cover,
.elementor-section.hero {
  position: relative;
  min-height: 500px;
  background-color: var(--color-off-white);
}

/* Hero text overlay - ensure readability */
.hero-section .entry-title,
.wp-block-cover h1,
.wp-block-cover h2 {
  color: var(--color-text-dark) !important;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-section p,
.wp-block-cover p {
  color: var(--color-text-medium) !important;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* ============================================
   BUTTONS - Accent Colors with Clean Hover
   ============================================ */
.wp-block-button__link,
.ast-button,
.button,
input[type="submit"],
.elementor-button {
  background-color: var(--color-lake-blue) !important;
  color: var(--color-white) !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  letter-spacing: 0.3px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.2);
}

.wp-block-button__link:hover,
.ast-button:hover,
.button:hover,
input[type="submit"]:hover,
.elementor-button:hover {
  background-color: var(--color-lake-blue-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 108, 176, 0.3);
}

/* Secondary button style - Coral accent */
.wp-block-button.is-style-outline .wp-block-button__link,
.button-secondary {
  background-color: var(--color-coral) !important;
  box-shadow: 0 4px 12px rgba(237, 137, 54, 0.2);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.button-secondary:hover {
  background-color: var(--color-terracotta) !important;
  box-shadow: 0 6px 16px rgba(192, 86, 33, 0.3);
}

/* ============================================
   TYPOGRAPHY - Clean Hierarchy
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-dark) !important;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 3px solid var(--color-lake-blue);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-lake-blue) !important;
}

p {
  color: var(--color-text-medium);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Links */
a {
  color: var(--color-lake-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-lake-blue-dark);
  text-decoration: underline;
}

/* ============================================
   CONTENT SECTIONS - Clean Cards
   ============================================ */
.entry-content section,
.wp-block-group,
.elementor-section {
  background-color: var(--color-white);
  padding: 60px 0;
}

/* Alternating section backgrounds */
.entry-content section:nth-child(even),
.wp-block-group:nth-child(even) {
  background-color: var(--color-off-white);
}

/* Card styling */
.wp-block-column,
.ast-col,
.elementor-column {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 16px var(--color-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-column:hover,
.ast-col:hover,
.elementor-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ============================================
   IMAGES - Clean Presentation
   ============================================ */
img {
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--color-shadow);
  max-width: 100%;
  height: auto;
}

.wp-block-image img {
  transition: transform 0.3s ease;
}

.wp-block-image img:hover {
  transform: scale(1.02);
}

/* ============================================
   FOOTER - Minimal & Clean
   ============================================ */
.site-footer {
  background-color: var(--color-text-dark) !important;
  color: var(--color-white) !important;
  padding: 60px 0 30px;
  border-top: 4px solid var(--color-lake-blue);
}

.site-footer a {
  color: var(--color-white) !important;
  opacity: 0.9;
}

.site-footer a:hover {
  color: var(--color-coral-light) !important;
  opacity: 1;
}

.site-footer h2,
.site-footer h3,
.site-footer h4 {
  color: var(--color-white) !important;
  border-bottom: 2px solid var(--color-lake-blue);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* ============================================
   FORMS - Clean Input Styling
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  background-color: var(--color-white) !important;
  border: 2px solid var(--color-border) !important;
  border-radius: 6px !important;
  padding: 12px 16px !important;
  font-size: 16px !important;
  color: var(--color-text-dark) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: var(--color-lake-blue) !important;
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1) !important;
  outline: none !important;
}

/* ============================================
   ACCENT ELEMENTS - Michigan Colors
   ============================================ */
/* Accent borders and dividers */
.accent-border-top {
  border-top: 4px solid var(--color-lake-blue);
}

.accent-border-left {
  border-left: 4px solid var(--color-coral);
  padding-left: 20px;
}

/* Highlight boxes */
.highlight-box {
  background-color: var(--color-off-white);
  border-left: 6px solid var(--color-lake-blue);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

/* Call-to-action sections */
.cta-section {
  background: linear-gradient(135deg, var(--color-lake-blue) 0%, var(--color-lake-blue-dark) 100%);
  color: var(--color-white) !important;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(43, 108, 176, 0.3);
}

.cta-section h2,
.cta-section h3,
.cta-section p {
  color: var(--color-white) !important;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 768px) {
  .ast-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .hero-section {
    min-height: 400px;
  }
  
  .wp-block-column,
  .ast-col,
  .elementor-column {
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .site-footer {
    padding: 40px 0 20px;
  }
}

/* ============================================
   UTILITY CLASSES - Quick Styling
   ============================================ */
.text-center {
  text-align: center;
}

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

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

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

.bg-off-white {
  background-color: var(--color-off-white) !important;
}

.shadow-clean {
  box-shadow: 0 4px 16px var(--color-shadow);
}

.rounded-clean {
  border-radius: 12px;
}

.spacing-clean {
  padding: 40px 0;
}