:root {
  --primary: #713a50;
  --primary-dark: #2e1720;
  --accent: #E84588;
  --accent-hover: #d13075;
  --bg-light: #F5F5F5;
  --bg-white: #FEFEFE;
  --text-main: #333333;
  --text-inverse: #FFFFFF;
  --font-family-base: 'Roboto', 'Open Sans', sans-serif;
  --font-family-title: 'Montserrat', 'Roboto', sans-serif;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-title);
    margin-bottom: 0.5em;
}

/* Navbar */
.navbar-custom {
  background-color: var(--primary);
  padding: 15px 0;
  box-shadow: 0 0 15px rgba(0,0,0,.2);
}

.logo-container {
    background-color: transparent;
    margin-right: 30px;
}

.logo-container img {
    height: 70px;
    width: auto;
    border: 2px solid #ffffff;
    border-radius: 2px;
    background-color: #e84588;
    padding: 5px 15px;
}

.nav-link {
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 15px;
  padding: 15px 20px !important;
  text-align: center;
}

.nav-link:hover {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.btn-accent {
  background-color: var(--accent);
  color: #ffffff !important;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 500;
  box-shadow: rgba(0,0,0,.2) 0 2px 1px;
}

.btn-accent:hover {
  background-color: var(--accent-hover);
}

.btn-primary-theme {
    background-color: var(--primary);
    color: #ffffff !important;
    border-radius: 30px;
    padding: 12px 40px;
    font-family: var(--font-family-title);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    text-transform: uppercase;
    display: inline-block;
}

.btn-primary-theme:hover {
    background-color: #5c2f42;
}

/* Sections */
.section-full {
    padding: 60px 0;
}

.bg-gray {
    background-color: var(--bg-light);
}

.bg-primary-theme {
    background-color: var(--primary);
    color: #ffffff;
}

/* Pricing Tiles */
.pricing-table-container {
    background-color: var(--primary); /* Actually `#c82566` in phoenix wait let me check: `.secondary-c-bg {background:#c82566!important}` */
    background: #c82566;
    color: #ffffff;
    text-align: center;
    box-shadow: 1px 1px 1px 0 hsla(0,0%,64%,.57);
    margin-bottom: 30px;
}

.pricing-table-container .pricing-title {
    padding: 30px 20px 20px;
}

.pricing-table-container .pricing-number {
    font-size: 1.6em;
    font-weight: 600;
}

.pricing-table-container img {
    max-height: 180px;
    margin: 10px 0;
}

.pricing-table-bottom {
    background: #aa1f57; /* secondary-c-bg-dark1 */
    padding: 20px;
}

.pricing-table-bottom .price-big {
    font-size: 1.4em;
    font-weight: 600;
}

.pricing-table-container .btn-pricing {
    background-color: var(--primary);
    color: #ffffff !important;
    border-radius: 30px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-top: -25px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    width: 85%;
}

.pricing-table-container .btn-pricing:hover {
    background-color: #5c2f42;
}

.pricing-table-container .btn-pricing small {
    display: block;
    text-transform: none;
    font-weight: 400;
    font-size: 12px;
    margin-top: 3px;
}

/* Step Boxes */
.step-box {
    display: flex;
    align-items: flex-start;
    padding: 30px 0;
    border-bottom: 1px solid #ebebeb;
}

.step-box img {
    max-height: 250px;
    margin-right: 30px;
}

.step-box-content h2 {
    font-weight: 800;
    color: var(--primary);
}

/* Footer Element */
.footer-wrapper {
    background-color: var(--primary);
    color: #ffffff;
    font-family: 'Quicksand', sans-serif;
}

.footer-top {
    padding: 50px 0;
}

.footer-wrapper a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.footer-wrapper a:hover {
    text-decoration: underline;
}

.footer-wrapper .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-wrapper ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.searchform {
    display: flex;
    align-items: center;
}

.searchform input {
    background-color: transparent;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 20px;
    width: 100%;
}

.searchform input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.searchform input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.searchform button {
    background-color: transparent;
    border: none;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 18px;
    margin-left: 5px;
    cursor: pointer;
}

.searchform button:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* DataTables customization for light theme */
table.dataTable.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: var(--text-main);
}
table.dataTable > tbody > tr > * {
    color: var(--text-main);
}

/* Hair Sparkles Animation */
@keyframes mumblSparkleAnim {
  0%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.sparkle {
  position: absolute;
  width: 25px;
  height: 25px;
  background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0.8) 20%, rgba(255,255,255,0) 60%);
  clip-path: polygon(50% 0%, 55% 45%, 100% 50%, 55% 55%, 50% 100%, 45% 55%, 0% 50%, 45% 45%);
  animation: mumblSparkleAnim 2s infinite ease-in-out;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.sparkle-2 {
  width: 15px;
  height: 15px;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
}

.sparkle-3 {
  width: 20px;
  height: 20px;
  animation-duration: 2.5s;
  animation-delay: 1.2s;
}