@charset "UTF-8";

/* CONTACT COPY */
.copy {
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

/* COPY HOVER AND ANIMATION */
.copy:hover {
    color: var(--accent-hover);
    box-shadow: 0 0 0 2px var(--accent-hover);
}

/* COPIED MESSAGE */
#toast {
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--accent-primary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* CV BUTTON */
.fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--bg-soft);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: 0.3s;
    z-index: 999;
}

.fab:hover {
    transform: scale(1.1);
    background: var(--shadow-primary);
}

.fab svg {
    width: 24px;
    height: 24px;
}
