@import url('hero.css');
@import url('lead-with-story.css');
@import url('why-matters.css');
@import url('empathy-edge.css');
@import url('experience-section.css');
@import url('workshop-details.css');
@import url('about-you.css');
@import url('final-cta.css');

/* ===========================
   GLOBAL VARIABLES & RESETS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600&display=swap');

:root {
  --color-bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --color-primary: #ff6b35;
  --color-white: #fff;
  --color-offwhite: #f1f5fa;
  --color-dark: #2d3748;
  --color-eyebrow-bg: rgba(44,44,44,0.85);
  --color-eyebrow-text: #fff;
  --radius: 8px;
  --transition: all 0.3s ease;
  --font-display: 'Oswald', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  line-height: 1.6;
  color: #333;
  background-color: var(--color-white);
}

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

/* Add any global utility classes below as needed */

.sticky-cta-button-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.3s;
  opacity: 0;
}
.sticky-cta-button-wrap.show {
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta-button {
  background: #ff6b35;
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 999px;
  padding: 16px 36px;
  margin: 16px 0 24px 0;
  box-shadow: 0 6px 32px 0 rgba(255,107,53,0.22), 0 1.5px 0 #fff inset;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 8px #ffb09e55);
  min-width: 180px;
  text-align: center;
  pointer-events: auto;
}
.sticky-cta-button:focus {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.sticky-cta-button:hover, .sticky-cta-button:active {
  background: #ff7a4d;
  transform: scale(1.045);
  box-shadow: 0 10px 40px 0 rgba(255,107,53,0.32), 0 1.5px 0 #fff inset;
}
@media (max-width: 600px) {
  .sticky-cta-button {
    width: 96vw;
    min-width: 0;
    font-size: 1.08rem;
    padding: 15px 0;
    margin: 10px 0 18px 0;
  }
}
