/* Custom styling for Apex Advocacia */

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0B1325;
}
::-webkit-scrollbar-thumb {
    background: #C5A880;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B3966E;
}

/* Custom Selection Color */
::selection {
    background-color: #C5A880;
    color: #0B1325;
}

/* Smooth Scroll Padding for Anchors */
html {
    scroll-padding-top: 80px;
}

/* Subtle animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Float Animation for Practice Area Cards */
.practice-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-6px);
}
