/**
 * Enhanced styling for the Send Secure Message button
 */

/* Enhance the Send Secure Message button */
.contact-method .btn-secondary {
    display: inline-block;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(26, 32, 40, 0.8) 0%, rgba(18, 24, 32, 0.9) 100%);
    color: var(--color-accent-1);
    border: 1px solid var(--color-accent-1);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-top: 10px;
}

/* Add a subtle shimmer effect on hover */
.contact-method .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 169, 104, 0.2), transparent);
    transition: all 0.6s ease;
}

/* Enhanced hover state */
.contact-method .btn-secondary:hover {
    background: rgba(26, 32, 40, 0.95);
    color: var(--color-accent-1-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--color-accent-1);
    text-decoration: none;
}

/* Trigger the shimmer animation on hover */
.contact-method .btn-secondary:hover::before {
    left: 100%;
}

/* Active state for better feedback */
.contact-method .btn-secondary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--color-accent-1);
}

/* Add a lock icon before the text */
.contact-method .btn-secondary::after {
    content: '\f023';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 0.8rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Enhance the lock icon on hover */
.contact-method .btn-secondary:hover::after {
    opacity: 1;
    transform: translateX(2px);
}
