/* 
 * BUTTON STYLES
 */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    /* For Ripple */
    overflow: hidden;
    /* For Ripple */
}

/* Primary Gradient Button */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

/* Secondary Button */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* CTA - Attention Grabber */
.btn-cta {
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* YouTube Button */
.btn-youtube {
    background: #FF0000;
    color: white;
}

.btn-youtube:hover {
    background: #cc0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(250, 204, 21, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}