:root {
    --heading-big: 65px;
    --heading-medium: 55px;
    --heading-small: 35px;
    --heading-tiny: 21px;
    --text-huge: 24px;
    --text-big: 21px;
    --text-medium: 18px;
    --text-small: 16px;
    --text-tiny: 13px;
}

.heading-big {
    font-size: var(--heading-big) !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.heading-medium {
    font-size: var(--heading-medium) !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.heading-small {
    font-size: var(--heading-small) !important;
    line-height: 1.3 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.heading-tiny {
    font-size: var(--heading-tiny) !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}


.text-huge {
    font-size: var(--text-huge) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-big {
    font-size: var(--text-big) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-medium {
    font-size: var(--text-medium) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-small {
    font-size: var(--text-small) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.text-tiny {
    font-size: var(--text-tiny) !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    font-family: 'FS Albert', sans-serif !important;
}

.white-text,
.white-heading {
    color: #ffffff !important;
}

.purple-text,
.purple-heading {
    color: var(--chestertons-purple, #6B207D) !important;
}

.btn-outline a {
    display: inline-block;
    font-family: 'FS Albert', sans-serif !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.4s ease !important;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box !important;
}

/* Button Variants with Min-Width */
.btn-big a {
    padding: 14px 15px !important;
    /* Minimal horizontal padding */
    font-size: 18px !important;
    min-width: 240px !important;
    text-decoration: none !important;
}

.btn-small a {
    padding: 12px 15px !important;
    font-size: 18px !important;
    min-width: 150px !important;
    text-decoration: none !important;

}

.btn-tiny a {
    padding: 10px 15px !important;
    font-size: 16px !important;
    min-width: 120px !important;
    text-decoration: none !important;

}

.btn-white-outline a {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    text-decoration: none !important;

}


.btn-white-outline:hover a {
    background: #ffffff !important;
    color: var(--chestertons-purple, #6B207D) !important;
}

.btn-purple-outline a {
    background: transparent !important;
    color: var(--chestertons-purple, #6B207D) !important;
    border-color: var(--chestertons-purple, #6B207D) !important;
    text-decoration: none !important;

}

.btn-purple-outline:hover a {
    background: var(--chestertons-purple, #6B207D) !important;
    color: #ffffff !important;
    
}

.btn-purple-filled a {
    background: var(--chestertons-purple, #6B207D) !important;
    color: #ffffff !important;
    border: 2px solid var(--chestertons-purple, #6B207D) !important;
    text-decoration: none !important;


}

.btn-purple-filled:hover a {
    background: #ffffff !important;
    color: var(--chestertons-purple, #6B207D) !important;
    border-color: var(--chestertons-purple) !important;
}

.btn-white-filled a {
    background: #ffffff !important;
    color: var(--chestertons-purple, #6B207D) !important;
    border: 2px solid #ffffff !important;
}

.btn-white-filled:hover a {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn-arrow a {
    position: relative !important;
    padding-right: 45px !important;
}

/* Arrow stem */
.btn-arrow a::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 18px;
    height: 2px;
    background: currentColor;
    transform: translateY(-50%);
    transition: right 0.4s ease, width 0.4s ease;
}

/* Arrowhead */
.btn-arrow a::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: translateY(-50%) rotate(46deg);
    transition: right 0.4s ease;
}

.btn-arrow:hover a::before {
    right: 10px;
}

.btn-arrow:hover a::after {
    right: 10px;
}

@media (max-width: 1024px) {
    .heading-big {
        font-size: 50px !important;
    }

    .heading-medium {
        font-size: 42px !important;
    }

    .text-huge {
        font-size: 21px !important;
    }

    .text-big {
        font-size: 19px !important;
    }

    .btn-big a {
        min-width: 200px !important;
        font-size: 16px !important;
    }

    .btn-small a {
        min-width: 160px !important;
        font-size: 14px !important;
    }

    .btn-tiny a {
        font-size: 13px !important;
        min-width: 90px !important;
    }

    .btn-arrow a::before {
        width: 16px;
    }

    .btn-arrow a::after {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 768px) {
    .heading-big {
        font-size: 38px !important;
    }

    .heading-medium {
        font-size: 32px !important;
    }

    .heading-small {
        font-size: 26px !important;
    }

    .text-huge {
        font-size: 21px !important;
    }

    .text-big {
        font-size: 18px !important;
    }

    .text-medium {
        font-size: 16px !important;
    }

    /* On small mobile, allow buttons to grow to fit screen but not exceed it */
    .btn-big a,
    .btn-small a,
    .btn-tiny a {
        min-width: 100% !important;
        width: 100% !important;
        font-size: 15px !important;
    }

    .btn-arrow a::before {
        width: 13px;
    }

    .btn-arrow a::after {
        width: 9px;
        height: 9px;
    }
}