/* Contact Actions */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-actions {
        grid-template-columns: 1fr;
    }
}

/* Terminal Component */
.terminal-command {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 1rem 1.5rem;
    font-family: monospace;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    min-width: 300px;
}

.terminal-command:hover {
    border-color: var(--accent-tech);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.1);
}

.prompt {
    color: var(--accent-tech);
    font-weight: bold;
}

.cmd {
    color: #fff;
    margin-right: auto;
}

.output {
    color: var(--text-secondary);
    font-size: 0.9em;
}

/* Network Card */
.network-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 1rem 1.5rem;
    /* Match terminal padding */
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    /* Match terminal width */
}

.network-card:hover {
    border-color: var(--accent-tech);
    box-shadow: 0 0 15px rgba(0, 255, 200, 0.1);
    transform: translateY(-2px);
}

.network-icon {
    background: #0077b5;
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 4px;
}

.linkedin-icon {
    background: #0077b5;
}

.github-icon {
    background: #333;
}

.twitter-icon {
    background: #1DA1F2;
}

body.light-mode .github-icon {
    background: #24292e;
}

.network-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.network-label {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.network-status {
    font-size: 0.75rem;
    color: var(--accent-tech);
    position: relative;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.network-status::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-tech);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* Light Mode Component Styles */
body.light-mode .prompt {
    color: #0891b2;
}

body.light-mode .cmd {
    color: #0f172a;
}

body.light-mode .network-status {
    color: #0891b2;
}

body.light-mode .network-status::before {
    background: #0891b2;
}

body.light-mode .network-icon {
    background: #0077b5;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

body.light-mode .terminal-command:hover {
    border-color: #0891b2;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15);
}

body.light-mode .network-card:hover {
    border-color: #0891b2;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15);
}