.elementor-111 .elementor-element.elementor-element-882ad46{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-111 .elementor-element.elementor-element-bc2aa68{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}.elementor-111 .elementor-element.elementor-element-7223249 > .elementor-widget-container{margin:-3px -3px -3px -3px;}.elementor-111 .elementor-element.elementor-element-26bc59e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;overflow:visible;}.elementor-111 .elementor-element.elementor-element-eee70b7 > .elementor-widget-container{margin:-3px -3px -3px -3px;}.elementor-111 .elementor-element.elementor-element-18757ea{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-111 .elementor-element.elementor-element-f51bb95 > .elementor-widget-container{margin:-3px -3px -3px -3px;}@media(min-width:768px){.elementor-111 .elementor-element.elementor-element-882ad46{--content-width:100%;}.elementor-111 .elementor-element.elementor-element-bc2aa68{--content-width:100%;}.elementor-111 .elementor-element.elementor-element-26bc59e{--content-width:100%;}.elementor-111 .elementor-element.elementor-element-18757ea{--content-width:100%;}}/* Start custom CSS *//* ------------------------------------------
   GLOBAL
------------------------------------------- */

:root {
  --cc-orange: #FE914D;
  --cc-yellow: #FFD05A;
  --cc-teal: #47BB8E;
  --cc-light-blue: #04A1E8;
  --cc-blue: #0058E6;
  --cc-muted: #4f5864;
  --cc-coral-1: #FF7B6D;
  --cc-coral-2: #F65A49;
}

/* Kill random underlines */
.cc-hero-split a,
.cc-resource-showcase a,
.cc-sunday-section a {
  text-decoration: none;
}
/* Force one global font for the entire site */
body, 
h1, h2, h3, h4, h5, h6,
p, a, button,
.cc-figure-it-out *,
.cc-innerworld *,
.cc-showcase *,
.cc-circle-page * {
  font-family: 'Inter', sans-serif !important;
}

/* ------------------------------------------
   HERO SECTION
------------------------------------------- */

.cc-hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 6% 10%;
  min-height: 84vh;
  font-family: 'Inter', sans-serif;
  color: #1e1e1e;
}

/* LEFT SIDE */
.cc-hero-left {
  flex: 1.4;
  max-width: 600px;
}

.cc-hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #111;
}

/* SLIDE-UP WORD + ANIMATED GRADIENT */
.cc-slide-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
    font-size: clamp(2.0rem, 4.2vw, 3.0rem);

  /* animated gradient */
  background: linear-gradient(
    90deg,
    #47BB8E,
    #04A1E8,
    #FE914D,
    #FFD05A
  );
  background-size: 300% 300%;
  animation: ccGradientShift 6s ease infinite;

  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}

/* slide-in state */
.cc-slide-word.visible {
  opacity: 1;
  transform: translateY(0);
}


/* gradient animation */
@keyframes ccGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* SUBLINE */
.cc-hero-subline {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 18px;
  color: #333;
}

.animated-gradient {
  background: linear-gradient(90deg, #47BB8E, #04A1E8);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveGrad 14s ease infinite;
}

@keyframes moveGrad {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cc-hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #222;
  margin-bottom: 28px;
}

/* BUTTONS */
.cc-hero-buttons {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.cc-btn-primary {
  background: linear-gradient(90deg, var(--cc-orange), var(--cc-yellow));
  color: #000;
  padding: 14px 32px;
  border-radius: 36px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cc-btn-primary:hover {
  background: linear-gradient(90deg, var(--cc-teal), var(--cc-light-blue));
  color: #fff;
  transform: translateY(-2px);
}


  /* SUBTEXT */
.cc-hero-subtext {
  margin-top: 5px;
  text-align: center;
}

.cc-hero-subtext a {
  font-weight: 500;
  font-size: 0.95rem;
  background: linear-gradient(90deg, var(--cc-teal), var(--cc-light-blue), var(--cc-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* RIGHT SIDE */
.cc-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cc-video-poster {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0,0,0,0.22);
  transition: transform 0.3s ease;
}

.cc-video-poster:hover {
  transform: scale(1.03);
}

.cc-video-thumb {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
}

/* PLAY BUTTON */
.cc-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  border: 3px solid transparent;
  background-image:
    linear-gradient(#ffffff, #ffffff),
    linear-gradient(90deg, #47BB8E, #04A1E8, #FE914D);
  background-origin: border-box;
  background-clip: content-box, border-box;

  box-shadow: 0 0 24px rgba(0,0,0,0.25);
  animation: pulse-soft 3.2s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cc-play-icon:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 34px rgba(0,0,0,0.32);
}

.cc-play-triangle {
  width: 0;
  height: 0;
  border-left: 22px solid #000;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 3px;
}

@keyframes pulse-soft {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.07); }
}

/* HERO MOBILE */
@media (max-width: 768px) {
  .cc-hero-split {
    padding: 55px 6% 30px;
    gap: 34px;
    flex-direction: column-reverse;
    text-align: center;
  }

  .cc-hero-title {
    font-size: 1.9rem;
    line-height: 1.22;
    margin-bottom: 10px;
  }

  .cc-hero-subline {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }

  .cc-hero-desc {
    font-size: 0.95rem;
    margin-bottom: 22px;
    line-height: 1.55;
  }

  .cc-hero-buttons {
    justify-content: center;
  }

  .cc-video-thumb {
    max-width: 280px;
    border-radius: 14px;
  }

  .cc-play-icon {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 16px rgba(0,0,0,0.20);
  }

  .cc-play-triangle {
    border-left: 15px solid #000;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }
}

/* SECTION WRAPPER */
.cc-hard-moments {
  padding: 10px 10% 140px;
}

.cc-hard-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 50px;
  align-items: center;
}


/* RIGHT SIDE — BIG HERO TEXT */
.cc-hard-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #0f1623;
  line-height: 1.1;
  margin-bottom: 10px;
}

.cc-hard-subline {
  font-size: 1.3rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 16px;
}

.cc-hard-igotthis {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: #47BB8E;
  margin-bottom: 28px;
}

.cc-hard-desc {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #4b5563;
  max-width: 520px;
}

/* ---------------------------
   Inline Link: Cue Club
   Yellow→Orange default
   Soft coral hover
---------------------------- */
.cc-inline-cc {
  font-weight: 600;
  background: linear-gradient(90deg, var(--cc-yellow), var(--cc-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.25s ease;
}

.cc-inline-cc:hover {
  background: linear-gradient(90deg, var(--cc-coral-1), var(--cc-coral-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* ---------------------------
   Inline Link: Resource Center
   Teal→Blue default
   Slightly brighter on hover
---------------------------- */
.cc-inline-rc {
  font-weight: 600;
  background: linear-gradient(90deg, var(--cc-teal), var(--cc-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.25s ease;
}

.cc-inline-rc:hover {
  background: linear-gradient(90deg, var(--cc-blue), var(--cc-light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* LEFT SIDE — QUESTIONS CARD */
.cc-hard-card {
  background: radial-gradient(circle at top left, #EFF4FC 0%, #E4F5EE 40%, #FBF8E6 100%);
  border-radius: 26px;
  padding: 40px 38px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.cc-bubble-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
  margin-left: 10px;
}

/* QUESTION BUBBLES */
.cc-bubble-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cc-bubble {
  display: block;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.22s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.cc-bubble:hover {
  transform: translateY(-6px);
  background: #f7fefb;
  border-color: #47BB8E;
  box-shadow: 0 10px 22px rgba(15,23,42,0.12);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .cc-hard-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cc-hard-card {
    padding: 32px 26px;
  }
}


/* ------------------------------------------
   SUNDAY PRACTICE SECTION
------------------------------------------- */

.cc-sunday-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.cc-sunday-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cc-sunday-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0,0,0,0.52),
      rgba(0,0,0,0.92)
  );
  z-index: 1;
}

.cc-sunday-container {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-sunday-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.cc-sunday-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}

.cc-sunday-highlight {
  background: linear-gradient(90deg, #47BB8E, #04A1E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cc-sunday-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto 42px;
  opacity: 0.95;
}

/* CARD */
.cc-sunday-card {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 32px 38px 40px;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.cc-sunday-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.cc-sunday-times {
  font-size: 0.98rem;
  margin: 10px 0 18px;
}

.cc-sunday-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFD05A, #FE914D);
  color: #1b1b1b;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

.cc-sunday-btn:hover {
  background: linear-gradient(90deg, var(--cc-teal), var(--cc-light-blue));
  color: #fff;
  transform: translateY(-2px);
}
/* ================================
   RESOURCE SHOWCASE 
   ================================ */

/* SECTION WRAPPER */
.cc-showcase {
  padding: 90px 20px 120px;
  background: linear-gradient(180deg, #EFF4FC 0%, #E0F4EB 40%, #F7F8E8 100%);
  font-family: 'Inter', sans-serif;
  text-align: center;
  color: #111;
}

/* INNER CONTAINER */
.cc-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADING */
.cc-showcase-title {
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 900px;
}

.cc-grad {
  background: linear-gradient(90deg, #47BB8E, #04A1E8, #FE914D, #FFD05A);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ccGradMove 12s ease infinite;
}

@keyframes ccGradMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cc-title-sub {
  display: inline-block;
  font-size: 1.4rem;
  line-height:1.5;
  font-weight: 500;
  color: #000;
  margin-top: 30px;
  margin-bottom: 40px;
}

/* INTRO TEXT */
.cc-showcase-intro {
  max-width: 840px;
  margin: 18px auto 60px;
  font-size: 1.1rem;
  line-height: 1.75;
  color: #333;
}

.cc-showcase-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 1rem;
  font-weight: 600;
  color: #4f5864;
  margin-bottom: 18px;
  text-align: center;
  opacity: 0.8;
}

/* ================================
   GRID / CARDS
   ================================ */

.cc-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Each card (direct child of grid) */
.cc-showcase-grid > .cc-card {
  max-width: 290px;
  display: flex;
}

/* CARD BASE */
.cc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cc-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER */
.cc-card-imgwrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f5f5f5;
}

.cc-card-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BADGE */
.cc-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: #47BB8E;
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  box-shadow: 0 0 10px rgba(71,187,142,0.4);
}

.cc-card-badge img {
  width: 20px;
  height: 20px;
  display: block;
}

/* OVERLAY (TEXT AREA) */

.cc-card:hover .cc-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.cc-card-overlay p {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 12px;
  padding-left: 20px;
  padding-right:20px;
  color: #444;
}

/* BUTTON INSIDE CARD */
.cc-card-btn {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #47BB8E, #04A1E8);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  transition: 0.25s ease;
margin-bottom:80px;
margin-top: 10px;
}

.cc-card-btn:hover {
  background: linear-gradient(90deg, #0058E6, #04A1E8);
  transform: translateY(-1px);
}

/* ================================
   CTA AT BOTTOM
   ================================ */

.cc-showcase-cta {
  margin-top: 60px;
  padding: 40px 20px 55px;
  border-radius: 26px;
  background: linear-gradient(
    135deg,
    rgba(255,208,90,0.25),
    rgba(4,161,232,0.16),
    rgba(71,187,142,0.18)
  );
  text-align: center;
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}

.cc-showcase-mainbtn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff;
  background: linear-gradient(90deg, #47BB8E, #04A1E8);
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: 0.3s ease;
}

.cc-showcase-mainbtn:hover {
  background: linear-gradient(90deg, #0058E6, #04A1E8);
  transform: translateY(-3px);
}

.cc-showcase-subcta {
  margin-top: 12px;
  font-size: 1rem;
  color: #111;
}

.cc-showcase-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(90deg, #47BB8E, #04A1E8, #FE914D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* ================================
   MOBILE
   ================================ */

@media (max-width: 768px) {

  .cc-showcase {
    padding: 65px 20px 80px;
  }

  .cc-showcase-intro {
    margin-bottom: 40px;
    font-size: 1rem;
  }

  .cc-showcase-grid {
    gap: 20px;
  }

  .cc-showcase-grid > .cc-card {
    max-width: 100%;
  }


  /* On mobile, keep overlay always visible (hover is useless) */
  .cc-card-overlay {
    opacity: 1 !important;
    transform: translateY() !important;
  }
}/* ======================================================
   ELEMENTOR FIXES — FORCE CC-CARD TO BE THE REAL CONTAINER
   ====================================================== */

/* Kill ALL Elementor-added padding, margin & flex-gaps */
.cc-showcase .elementor-widget,
.cc-showcase .elementor-widget-container,
.cc-showcase .elementor-column,
.cc-showcase .elementor-widget-wrap {
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    background: none !important;
    border: none !important;
}


/* IMAGE should be at the top and fixed height */
.cc-card-imgwrap {
    height: 390px !important;
    overflow: hidden;
}
/* ------------------------------------------------------
   HOVER OVERLAY — ensure it slides over ONLY the image
   ------------------------------------------------------ */

.cc-card {
    display: flex;
    flex-direction: column;
}

.cc-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 180px 20px 2px;
    background: rgba(255,255,255,0.96);
    text-align: center;
    border-radius: 0 0 14px 14px;
    opacity: 0;
    transform: translateY(0%);
    transition: transform .35s ease, opacity .35s ease;
}

/* Fix vertical center on hover */
.cc-card:hover .cc-card-overlay {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* ------------------------------------------------------
   BUTTON HOVER FIX (white text on hover)
   ------------------------------------------------------ */
.cc-card-btn:hover {
    color: #fff !important;
    background: linear-gradient(90deg, #0058E6, #04A1E8) !important;
}

/* ------------------------------------------------------
    Mobile fixes for cards in resource section
   ------------------------------------------------------ */
@media (max-width: 600px) {

  /* tighten overlay padding if needed */
  .cc-card-overlay {
    padding: 24px 6px;
  }

  .cc-card-overlay h3 {
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .cc-card-overlay p {
    font-size: 0.88rem;
    line-height: 1.35;
    margin-bottom: 10px;
  }

  /* fix the button spacing + prevent it from overflowing */
  .cc-card-btn {
    font-size: 0.8rem;
    padding: 8px 18px;
    margin-bottom: 0px; /* smaller but still breathable */
    display: inline-block;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
  }
}/* End custom CSS */