/* Define root variables for the glow effect */
:root {
    --x: 50%;
    --y: 50%;
    --button-gradient: radial-gradient(
        circle at center, 
        rgba(255, 140, 0, 0.8) 0%, 
        rgba(255, 165, 0, 0.6) 30%,
        rgba(255, 255, 255, 0) 70%
    );
}

/* CTA button below features with orange glow */
.hero-cta-bottom {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 15px;
    width: 100%;
}

.glow-button {
    position: relative;
    background-color: #fff;
    color: #5A250A;
    border-radius: 100px;
    padding: 15px 30px;
    font-weight: 700;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Glow effect container */
.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use the custom property defined by JS */
    background: var(--button-gradient);
    background-position: var(--x) var(--y);
    z-index: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    transform: scale(1.5);
}

/* Text and arrow styling */
.glow-button span, 
.glow-button svg {
    position: relative;
    z-index: 2;
    color: #5A250A;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.glow-button svg {
    margin-left: 8px;
}

/* Add subtle reflection effect at the top */
.glow-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 3;
}

/* Hover state - enhance the glow */
.glow-button:hover::before {
    opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-cta-bottom {
        margin-top: 20px;
    }
    
    .glow-button {
        padding: 12px 24px;
    }
} 