/* Premium Golden Learn More Button */
/* Inspired by Uiverse.io, enhanced for luxury feel */

.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    width: 12rem;
    height: auto;
}

.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 200% 200%;
    border-radius: 1.625rem;
    animation: gold-shimmer 3s ease infinite;
}

@keyframes gold-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #282936;
}

.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #282936;
    border-right: 0.125rem solid #282936;
    transform: rotate(45deg);
}

.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: #D4AF37;
    font-weight: 800;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover States */
.learn-more:hover .circle {
    width: 100%;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.learn-more:hover .button-text {
    transform: translate(-1.7rem, 0);
    color: #282936;
}

.learn-more:hover .circle .icon.arrow {
    background: #282936;
    transform: translate(8.7rem, 0);
}

/* Active State */
.learn-more:active .circle {
    transform: scale(0.95);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    transition: all 0.2s;
}

.learn-more:active .button-text {
    color: rgba(40, 41, 54, 0.7);
}

/* Adjustments for dark background containers */
.primary-bg .learn-more .button-text {
    color: #FCF6BA;
}

.primary-bg .learn-more:hover .button-text {
    color: #282936;
}