/**
 * Centered CTA Component Styles
 */
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Theme Color Variables
Description: Centralized theme color system for component portability
**************************************************/
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**
 * Centered CTA Component Styles
 */
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
/*********************
Enhanced CTA Button with Ripple Effect
Usage: @include enhanced-cta-button($bg-color, $text-color, $border-color, $hover-bg, $hover-text);
Example: @include enhanced-cta-button($brand-primary, $brand-white, $brand-primary, transparent, $brand-primary);
*********************/
.centered-cta-component {
  width: 100%;
}
.centered-cta-component.centered-cta-bg-white {
  background-color: #FFFFFF;
}
.centered-cta-component.centered-cta-bg-white .centered-cta-heading {
  color: #252526;
}
.centered-cta-component.centered-cta-bg-white .centered-cta-description {
  color: #252526;
}
.centered-cta-component.centered-cta-bg-gray {
  background-color: #f5f5f5;
}
.centered-cta-component.centered-cta-bg-gray .centered-cta-heading {
  color: #252526;
}
.centered-cta-component.centered-cta-bg-gray .centered-cta-description {
  color: #252526;
}
.centered-cta-component.centered-cta-bg-red {
  background-color: #A32135;
}
.centered-cta-component.centered-cta-bg-red .centered-cta-heading {
  color: #FFFFFF;
}
.centered-cta-component.centered-cta-bg-red .centered-cta-description {
  color: #FFFFFF;
}
.centered-cta-component.centered-cta-padding-small {
  padding: 200px 0 10px 0;
}
.centered-cta-component.centered-cta-padding-medium {
  padding: 240px 0 15px 0;
}
.centered-cta-component.centered-cta-padding-large {
  padding: 280px 0 20px 0;
}
.centered-cta-component .centered-cta-container {
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.centered-cta-component .centered-cta-content {
  max-width: 690px;
  margin: 0 auto;
  text-align: center;
}
.centered-cta-component .centered-cta-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0 0 32px 0;
}
.centered-cta-component .centered-cta-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 45px;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}
.centered-cta-component .centered-cta-button {
  display: inline-block;
  background-color: #A32135;
  color: #FFFFFF;
  border: 2px solid #A32135;
  border-radius: 3px;
  padding: 12px 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 19.56px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  transition: none;
}
.centered-cta-component .centered-cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.centered-cta-component .centered-cta-button span, .centered-cta-component .centered-cta-button {
  position: relative;
  z-index: 2;
}
.centered-cta-component .centered-cta-button:hover {
  background-color: transparent;
  color: #A32135;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(163, 33, 53, 0.25);
  letter-spacing: 1.5px;
}
.centered-cta-component .centered-cta-button:hover::before {
  width: 300px;
  height: 300px;
}
.centered-cta-component .centered-cta-button:active {
  transform: translateY(-1px);
  transition-duration: 0.1s;
}
.centered-cta-component .centered-cta-button:active::before {
  background-color: rgba(255, 255, 255, 0.4);
}
.centered-cta-component .centered-cta-button:focus {
  outline: 2px solid #A32135;
  outline-offset: 2px;
}
.centered-cta-component .centered-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 33, 53, 0.3);
}
.centered-cta-component .centered-cta-button::before {
  transition: none;
}
.centered-cta-component .centered-cta-button:hover {
  transform: none;
  box-shadow: none;
  letter-spacing: 1px;
}
.centered-cta-component .centered-cta-button:hover::before {
  width: 0;
  height: 0;
}
.centered-cta-component .centered-cta-button:active {
  transform: none;
  transition-duration: 0s;
}
.centered-cta-component .centered-cta-button:active::before {
  background-color: rgba(255, 255, 255, 0.2);
}
.centered-cta-component .centered-cta-button:focus-visible {
  transform: none;
  box-shadow: none;
}

@media (max-width: 720px) {
  .centered-cta-component.centered-cta-padding-small {
    padding: 160px 0 8px 0;
  }
  .centered-cta-component.centered-cta-padding-medium {
    padding: 190px 0 12px 0;
  }
  .centered-cta-component.centered-cta-padding-large {
    padding: 220px 0 15px 0;
  }
  .centered-cta-component .centered-cta-container {
    padding: 0 15px;
  }
  .centered-cta-component .centered-cta-content {
    max-width: 100%;
  }
  .centered-cta-component .centered-cta-heading {
    font-size: 36px;
    line-height: 39px;
  }
  .centered-cta-component .centered-cta-description {
    font-size: 15px;
    line-height: 22px;
  }
  .centered-cta-component .centered-cta-button {
    font-size: 18px;
    padding: 10px 20px;
    min-width: 140px;
  }
}
@media (max-width: 768px) {
  .centered-cta-component.centered-cta-padding-small {
    padding: 120px 0 8px 0;
  }
  .centered-cta-component.centered-cta-padding-medium {
    padding: 150px 0 10px 0;
  }
  .centered-cta-component.centered-cta-padding-large {
    padding: 180px 0 12px 0;
  }
  .centered-cta-component .centered-cta-container {
    padding: 0 15px;
  }
  .centered-cta-component .centered-cta-heading {
    font-size: 32px;
    line-height: 35px;
    margin-bottom: 20px;
  }
  .centered-cta-component .centered-cta-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 28px;
  }
  .centered-cta-component .centered-cta-button {
    font-size: 16px;
    padding: 8px 18px;
    min-width: 120px;
  }
}
@media (max-width: 480px) {
  .centered-cta-component.centered-cta-padding-small {
    padding: 100px 0 5px 0;
  }
  .centered-cta-component.centered-cta-padding-medium {
    padding: 120px 0 8px 0;
  }
  .centered-cta-component.centered-cta-padding-large {
    padding: 140px 0 10px 0;
  }
  .centered-cta-component .centered-cta-container {
    padding: 0 10px;
  }
  .centered-cta-component .centered-cta-heading {
    font-size: 28px;
    line-height: 31px;
  }
  .centered-cta-component .centered-cta-description {
    font-size: 13px;
    line-height: 18px;
  }
  .centered-cta-component .centered-cta-button {
    font-size: 15px;
    padding: 6px 16px;
    min-width: 110px;
  }
}
