/* Custom styles for Branded by CW */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background-color: #1cc174;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f2fdf9;
}
::-webkit-scrollbar-thumb {
    background: #bdf0d8;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7ee8b5;
}

/* Subtle pattern overlay for hero */
#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(28, 193, 116, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(61, 110, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Button ripple effect on click */
.btn-primary:active {
    transform: translateY(0px) scale(0.98);
}

/* Focus visible for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 3px solid #1cc174;
    outline-offset: 2px;
    border-radius: 4px;
}
