/* Velora Labs Custom Button Styles */

.velora-btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none !important;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #2e7ffe 0%, #504cf5 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(46, 127, 254, 0.25);
    transform: translateY(0);
}

.velora-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #504cf5 0%, #f356c9 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 36px;
}

.velora-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 127, 254, 0.4);
}

.velora-btn:hover::before {
    opacity: 1;
}

.velora-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(46, 127, 254, 0.25);
}

.velora-btn:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(46, 127, 254, 0.25), 0 0 0 3px rgba(46, 127, 254, 0.2);
}

/* Secondary/Low-key Button Styles */
.velora-btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none !important;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #504cf5 0%, #f356c9 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(80, 76, 245, 0.25);
    transform: translateY(0);
}

.velora-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2e7ffe 0%, #504cf5 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 36px;
}

.velora-btn-secondary:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(80, 76, 245, 0.4);
}

.velora-btn-secondary:hover::before {
    opacity: 1;
}

.velora-btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(80, 76, 245, 0.25);
}

.velora-btn-secondary:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(80, 76, 245, 0.25), 0 0 0 3px rgba(80, 76, 245, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .velora-btn,
    .velora-btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .velora-btn,
    .velora-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}

/* Purple Button Styles */
.velora-btn-purple {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none !important;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 36px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
    transform: translateY(0);
}

.velora-btn-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 36px;
}

.velora-btn-purple:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.velora-btn-purple:hover::before {
    opacity: 1;
}

.velora-btn-purple:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.velora-btn-purple:focus {
    outline: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25), 0 0 0 3px rgba(102, 126, 234, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .velora-btn,
    .velora-btn-secondary,
    .velora-btn-purple {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .velora-btn,
    .velora-btn-secondary,
    .velora-btn-purple {
        padding: 12px 24px;
        font-size: 14px;
        letter-spacing: 0.3px;
    }
}
