/* Custom hero button styling - Crimson "Read My Thoughts" button */

#hero a.btn:not(.social-icon) {
    background-color: var(--primary-color) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

#hero a.btn:not(.social-icon):hover {
    background-color: var(--crimson-dark) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
    opacity: 1;
}

#hero a.btn:not(.social-icon):active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(220, 20, 60, 0.2);
}

