/* Button Styles for PROBONO 2025 */

/* Primary Button Styles */
.bg-primary {
    background-color: #1E40AF !important;
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(30, 64, 175, 0.3);
}

.bg-primary:hover, .hover\:bg-primary-dark:hover {
    background-color: #1e3a8a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(30, 64, 175, 0.4);
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #F59E0B, #EA580C);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
    min-width: 160px;
    text-align: center;
    gap: 8px;
}

.cta-button:hover {
    background: linear-gradient(to right, #EA580C, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Header Button - Smaller Size */
.header-button {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    min-width: 120px;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Registration Button Styles */
.register-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #F59E0B, #EA580C);
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.3);
    min-width: 180px;
    text-align: center;
    gap: 8px;
}

.register-button:hover {
    background: linear-gradient(to right, #EA580C, #F59E0B);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.register-button i {
    transition: transform 0.3s ease;
}

.register-button:hover i {
    transform: translateX(4px);
}

/* Rounded Button */
.rounded-full {
    border-radius: 9999px;
}

/* Mobile Responsive Styles */
@media (max-width: 640px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
        min-width: 160px;
        padding: 0.75rem 1.25rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .cta-button, .register-button {
        padding: 0.75rem 1.25rem;
    }
}

/* Button Transitions */
.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
